diff --git a/dev-python/django-rq/Manifest b/dev-python/django-rq/Manifest index e90d1b1..39860bc 100644 --- a/dev-python/django-rq/Manifest +++ b/dev-python/django-rq/Manifest @@ -1 +1,2 @@ DIST django-rq-2.5.1.tar.gz 119721 BLAKE2B a3b62cb6be051ddeb4f97aceee47a7637a3be77f139380c33e1ba2a04585a420c150234317cdeef577f9b0cccefe37aa4f7d9c5ffb141dff00bb13a1580541a1 SHA512 c050752f078b6bad535b58a50594536e55c0d62a88539b58d474532083841e9acd1883a260a1329850e124d380d2b19ef342d929c9a24349321d6f78836b40b4 +DIST django-rq-2.6.0.tar.gz 120064 BLAKE2B 7309a712d178129f0cedd5a677f62d3e3a583ec4f39c19f0bc18386645396a74c1e7bc037defa71a38f8a3c9ed363d7bb1e070ff98db8549fdeb33e22adc0132 SHA512 9d596590ca8a690575fdb3c5b5f3a927e477fc87654e0b971575e88c83ca5d9f9150517194db81eb4caac862debf33d7c6a9694feda27af8cbd25cda296191f9 diff --git a/dev-python/django-rq/django-rq-2.6.0.ebuild b/dev-python/django-rq/django-rq-2.6.0.ebuild new file mode 100644 index 0000000..6fee04f --- /dev/null +++ b/dev-python/django-rq/django-rq-2.6.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-2.0[${PYTHON_USEDEP}] + >=dev-python/rq-1.2[${PYTHON_USEDEP}] + >=dev-python/redis-3[${PYTHON_USEDEP}] +" +RDEPEND="${DEPEND}"