Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/django-rq/
Date: Sun, 08 May 2022 08:47:39
Message-Id: 1651999636.255dc2a41e01e65c8e10dc31b1a7c775d686345a.mgorny@gentoo
1 commit: 255dc2a41e01e65c8e10dc31b1a7c775d686345a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 8 08:42:51 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun May 8 08:47:16 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=255dc2a4
7
8 dev-python/django-rq: Remove py3.8 due to rq losing it
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/django-rq/django-rq-2.4.1-r1.ebuild | 21 +++++++++++++++++++++
13 1 file changed, 21 insertions(+)
14
15 diff --git a/dev-python/django-rq/django-rq-2.4.1-r1.ebuild b/dev-python/django-rq/django-rq-2.4.1-r1.ebuild
16 new file mode 100644
17 index 000000000000..23ef26f48a02
18 --- /dev/null
19 +++ b/dev-python/django-rq/django-rq-2.4.1-r1.ebuild
20 @@ -0,0 +1,21 @@
21 +# Copyright 1999-2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=7
25 +
26 +PYTHON_COMPAT=( python3_9 )
27 +inherit distutils-r1
28 +
29 +DESCRIPTION="An app that provides django integration for RQ (Redis Queue)"
30 +HOMEPAGE="https://github.com/rq/django-rq/"
31 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
32 +
33 +LICENSE="MIT"
34 +SLOT="0"
35 +KEYWORDS="~amd64"
36 +
37 +RDEPEND="
38 + >=dev-python/django-2.0[${PYTHON_USEDEP}]
39 + >=dev-python/rq-1.4.0[${PYTHON_USEDEP}]
40 + >=dev-python/redis-py-3.0.0[${PYTHON_USEDEP}]
41 +"