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/rq/
Date: Sun, 29 Nov 2020 10:40:42
Message-Id: 1606646231.c88bc35cfdb7265fcfecf55554a121a806baefa8.mgorny@gentoo
1 commit: c88bc35cfdb7265fcfecf55554a121a806baefa8
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 29 10:37:11 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 29 10:37:11 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c88bc35c
7
8 dev-python/rq: Bump to 1.7.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/rq/Manifest | 1 +
13 dev-python/rq/rq-1.7.0.ebuild | 63 +++++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 64 insertions(+)
15
16 diff --git a/dev-python/rq/Manifest b/dev-python/rq/Manifest
17 index e718bfea350..4ddc9fdfd8c 100644
18 --- a/dev-python/rq/Manifest
19 +++ b/dev-python/rq/Manifest
20 @@ -1,2 +1,3 @@
21 DIST rq-1.5.2.tar.gz 570138 BLAKE2B de1f9b9b1d790d0ea3efcd93e916f79b2f28521571652ba048adc725bd53b657cab5a7b2bc65b320a1c2766f77dba399ae62e90fa0a2514fc59565b8949c0327 SHA512 2e2cfe97d427057281415cfb1593ad504485b0398b72f55a93cfa48c7bae8f800ed1b1ad2aa447fe3f6baabd7bb112af29181577d31b270aee58cf4558d15a5b
22 DIST rq-1.6.1.tar.gz 572668 BLAKE2B 4a1990492ed0c5e999fa918cdf49c03cf664e809b74f75c0aa941a72d9f3f45481e66c0d04780b88efa8e8ac2a8a94b11a0ad620d4c5f99e8abb3582db28e3d3 SHA512 8fc5f0cb87fb43fd6a0981dfb24a21d858e2d9fb2003c955d6d83b33a10b3cbaa713c11e422a91b4e020073d931fd3942530f3368fc8688dcff1a71fbe83fb15
23 +DIST rq-1.7.0.tar.gz 579373 BLAKE2B 835868a294478af07b9fa97fef14b0f2013abe125263efa15c4988eeaf564ee61ab2e8d68842c730a0f8b02a19a4d66f328828fb939a05b9d3b36996688192e0 SHA512 4027a8e1474cc350cf539ecf5734c2f851ef4e61bf0e106e44f359736f4f1ec4e690af97a119d12b1b7614b38ec4da286acff98b718ef604b5c367b3cc2af741
24
25 diff --git a/dev-python/rq/rq-1.7.0.ebuild b/dev-python/rq/rq-1.7.0.ebuild
26 new file mode 100644
27 index 00000000000..031701f5d58
28 --- /dev/null
29 +++ b/dev-python/rq/rq-1.7.0.ebuild
30 @@ -0,0 +1,63 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{6,7,8,9} )
37 +DISTUTILS_USE_SETUPTOOLS=rdepend
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="simple, lightweight library for creating and processing background jobs"
42 +HOMEPAGE="https://python-rq.org https://github.com/rq/rq"
43 +SRC_URI="https://github.com/rq/rq/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="BSD"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
48 +
49 +BDEPEND="
50 + test? (
51 + dev-db/redis
52 + dev-python/mock[${PYTHON_USEDEP}]
53 + dev-python/psutil[${PYTHON_USEDEP}]
54 + dev-python/sentry-sdk[${PYTHON_USEDEP}]
55 + )
56 +"
57 +DEPEND="
58 + >=dev-python/click-5.0[${PYTHON_USEDEP}]
59 + >=dev-python/redis-py-3.5.0[${PYTHON_USEDEP}]
60 +"
61 +RDEPEND="${DEPEND}"
62 +
63 +distutils_enable_tests pytest
64 +
65 +src_test() {
66 + local redis_pid="${T}"/redis.pid
67 + local redis_port=6379
68 + local redis_test_config="daemonize yes
69 + pidfile ${redis_pid}
70 + port ${redis_port}
71 + bind 127.0.0.1
72 + "
73 +
74 + # Spawn Redis itself for testing purposes
75 + # NOTE: On sam@'s machine, spawning Redis can hang in the sandbox.
76 + # I'm not restricting tests yet because this doesn't happen for anyone else AFAICT.
77 + elog "Spawning Redis"
78 + elog "NOTE: Port ${redis_port} must be free"
79 + /usr/sbin/redis-server - <<< "${redis_test_config}" || die
80 +
81 + # Run the actual tests
82 + distutils-r1_src_test
83 +
84 + # Clean up afterwards
85 + kill "$(<"${redis_pid}")" || die
86 +}
87 +
88 +python_test() {
89 + # Tests needing rqworker:
90 + # TestWorkerSubprocess::test_run_access_self, test_run_empty_queue, test_run_scheduled_access_self
91 + distutils_install_for_testing
92 + PATH="${BUILD_DIR}/test/scripts:${PATH}" pytest -vv || die "Testsuite failed under ${EPYTHON}"
93 +}