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: Sat, 09 Jan 2021 03:45:00
Message-Id: 1610163890.b826f9b28318b866a51f64e4ad0c27937b8e4926.sam@gentoo
1 commit: b826f9b28318b866a51f64e4ad0c27937b8e4926
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 9 03:44:50 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 9 03:44:50 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b826f9b2
7
8 dev-python/django-rq: bump to 2.4.0
9
10 Closes: https://bugs.gentoo.org/760423
11 Package-Manager: Portage-3.0.12, Repoman-3.0.2
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 dev-python/django-rq/Manifest | 1 +
15 dev-python/django-rq/django-rq-2.4.0.ebuild | 21 +++++++++++++++++++++
16 2 files changed, 22 insertions(+)
17
18 diff --git a/dev-python/django-rq/Manifest b/dev-python/django-rq/Manifest
19 index 92060c487fe..e4fa75e6a66 100644
20 --- a/dev-python/django-rq/Manifest
21 +++ b/dev-python/django-rq/Manifest
22 @@ -1 +1,2 @@
23 DIST django-rq-2.3.2.tar.gz 41038 BLAKE2B 837a8f819e9a91763b2d4ec961257d429e6d686fbaaa181d7fbe41efd9e08d958c5c340e4e1a4c8f0ef4063e985d3df82d8ea2c6a7cdea872b330dd545660e31 SHA512 8cf59aae163034240bfecda5f332dcc590813445cb2fc14bee15459ec8d4c50a36ab56865b3ce9360968451695e7a6d5eca5da26ef63c29dbc9dd58af8f16b98
24 +DIST django-rq-2.4.0.tar.gz 42455 BLAKE2B b60268625e8d57f1975c47df1dff72599fcab9eba0b43020196329cfc3c5447ce1bf9082338143f3f1d31434a8407d7a0e00b4dca64f2797ec54983930200798 SHA512 b1eec3f7e906bb4e553501940b9913727c8b21509fa10dd98ab5ad9f5625aaadd3f9c749824ad130005ac2a2ad8d27e8c8834466334f9bc09c438fcbd1cff344
25
26 diff --git a/dev-python/django-rq/django-rq-2.4.0.ebuild b/dev-python/django-rq/django-rq-2.4.0.ebuild
27 new file mode 100644
28 index 00000000000..0f5a386b6fb
29 --- /dev/null
30 +++ b/dev-python/django-rq/django-rq-2.4.0.ebuild
31 @@ -0,0 +1,21 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python3_{7,8,9} )
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="An app that provides django integration for RQ (Redis Queue)"
41 +HOMEPAGE="https://github.com/rq/django-rq"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64"
47 +
48 +RDEPEND="
49 + >=dev-python/django-2.0[${PYTHON_USEDEP}]
50 + >=dev-python/rq-1.4.0[${PYTHON_USEDEP}]
51 + >=dev-python/redis-py-3.0.0[${PYTHON_USEDEP}]
52 +"