From f344a6e912c6506f232819545d6e1aec9eb42f8c Mon Sep 17 00:00:00 2001 From: Alarig Le Lay Date: Tue, 7 Jan 2025 21:55:11 +0100 Subject: [PATCH] dev-python/django-rq: add 3.0 Signed-off-by: Alarig Le Lay --- dev-python/django-rq/Manifest | 1 + dev-python/django-rq/django-rq-3.0.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 dev-python/django-rq/django-rq-3.0.ebuild diff --git a/dev-python/django-rq/Manifest b/dev-python/django-rq/Manifest index 1f638bd..23a4556 100644 --- a/dev-python/django-rq/Manifest +++ b/dev-python/django-rq/Manifest @@ -1,2 +1,3 @@ DIST django-rq-2.10.1.tar.gz 125201 BLAKE2B 23881beb481fa4ad1f2789ef5141fc241703ae258f4effd72c4af873d068872f6facc625bc62d58df9d333bac0c2e9995b4a6506bd6f7425475cb6289a614366 SHA512 20aa43182b16040702c0b262b15c55e168fc839f738e91088da960615c244fe77f9d664a70ac495acff83aa5b0425015da72bef25a8558cccbb005bdddc60a95 DIST django-rq-2.10.2.tar.gz 125388 BLAKE2B 2473b7a652b21e967088858579ab0e817ad4a9aa730bdb5f19dc776b81dc5adb2a54ee29d59de5ef1173cde97e2da8d4a2ef3f191b53572ec6bc598d0315989c SHA512 bc6d02db9c144b09cffd375322b9ff3adcb6970609968442066e1bc7755a5a33c6788d8573269749559af2d47c0829d798896951166e4385d6852520b4e28b94 +DIST django-rq-3.0.tar.gz 128446 BLAKE2B e05c45a35d7043bf257613f7eae51068956e84bdf288adc42e3b560418d9086975a9e2ec44904c3c472aac52631fa7088be13230d3b52efb90b73e5e041b63bf SHA512 09c9a420edfa21f52c87151d83ad5047f5ba61b1a8b4d686a9ac93bbdd1a3e0e7c8114d92218802e34043f92b6f4e3157edd8a1beba92ff33099c44c5d294bf3 diff --git a/dev-python/django-rq/django-rq-3.0.ebuild b/dev-python/django-rq/django-rq-3.0.ebuild new file mode 100644 index 0000000..769655f --- /dev/null +++ b/dev-python/django-rq/django-rq-3.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{11..12} ) +inherit distutils-r1 + +DESCRIPTION="A simple app that provides django integration for RQ (Redis Queue)" +HOMEPAGE="https://github.com/rq/django-rq/" +SRC_URI="https://github.com/rq/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=" + >=dev-python/django-3.2[${PYTHON_USEDEP}] + >=dev-python/rq-2[${PYTHON_USEDEP}] + >=dev-python/redis-3.5[${PYTHON_USEDEP}] +" +RDEPEND="${DEPEND}"