Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/django-rq/
Date: Thu, 06 Aug 2020 22:27:37
Message-Id: 1596752167.d3ceeadbd8db5a192690e73c925dd46067ff4bd3.sam@gentoo
1 commit: d3ceeadbd8db5a192690e73c925dd46067ff4bd3
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 6 22:15:53 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 6 22:16:07 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3ceeadb
7
8 dev-python/django-rq: bump to 2.32
9
10 Previous versions were incompatible with >=dev-python/rq-1.40.
11
12 Closes: https://bugs.gentoo.org/736044
13 Package-Manager: Portage-3.0.1, Repoman-2.3.23
14 Signed-off-by: Sam James <sam <AT> gentoo.org>
15
16 dev-python/django-rq/Manifest | 1 +
17 dev-python/django-rq/django-rq-2.3.2.ebuild | 21 +++++++++++++++++++++
18 2 files changed, 22 insertions(+)
19
20 diff --git a/dev-python/django-rq/Manifest b/dev-python/django-rq/Manifest
21 index 47869a5a5e2..acc8c5669eb 100644
22 --- a/dev-python/django-rq/Manifest
23 +++ b/dev-python/django-rq/Manifest
24 @@ -1 +1,2 @@
25 DIST django-rq-2.3.0.tar.gz 40916 BLAKE2B cdaae3b3d1289a539306f0d8d41d034384366877bd226a5d2226fa017e7807ca2c3304fe6100d45f6cc929e591970bf707acebb1f0571d2827e22acff0468fee SHA512 2b0e0531d40ea866680aa52ac941bf0ea09d4295608c3c8b99c9b3a1c9f1efbb05527327e22ad6da3b013667a16251f190a064806c7c0e1edaf1625b5bc3a2e5
26 +DIST django-rq-2.3.2.tar.gz 41038 BLAKE2B 837a8f819e9a91763b2d4ec961257d429e6d686fbaaa181d7fbe41efd9e08d958c5c340e4e1a4c8f0ef4063e985d3df82d8ea2c6a7cdea872b330dd545660e31 SHA512 8cf59aae163034240bfecda5f332dcc590813445cb2fc14bee15459ec8d4c50a36ab56865b3ce9360968451695e7a6d5eca5da26ef63c29dbc9dd58af8f16b98
27
28 diff --git a/dev-python/django-rq/django-rq-2.3.2.ebuild b/dev-python/django-rq/django-rq-2.3.2.ebuild
29 new file mode 100644
30 index 00000000000..96a7c90ccc7
31 --- /dev/null
32 +++ b/dev-python/django-rq/django-rq-2.3.2.ebuild
33 @@ -0,0 +1,21 @@
34 +# Copyright 1999-2020 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +PYTHON_COMPAT=( python3_{7,8,9} )
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="An app that provides django integration for RQ (Redis Queue)"
43 +HOMEPAGE="https://github.com/rq/django-rq"
44 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 +
46 +LICENSE="MIT"
47 +SLOT="0"
48 +KEYWORDS="~amd64"
49 +
50 +RDEPEND="
51 + >=dev-python/django-2.0[${PYTHON_USEDEP}]
52 + >=dev-python/rq-1.4.0[${PYTHON_USEDEP}]
53 + >=dev-python/redis-py-3.0.0[${PYTHON_USEDEP}]
54 +"