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/rq/
Date: Tue, 29 Dec 2020 04:07:41
Message-Id: 1609214854.dc6f5a74875700d1a41ff5ecfd3f3a2ed08dab4a.sam@gentoo
1 commit: dc6f5a74875700d1a41ff5ecfd3f3a2ed08dab4a
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 29 04:07:26 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 29 04:07:34 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc6f5a74
7
8 dev-python/rq: cleanup old
9
10 Package-Manager: Portage-3.0.12-prefix, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 dev-python/rq/Manifest | 1 -
14 dev-python/rq/rq-1.6.1.ebuild | 63 -------------------------------------------
15 2 files changed, 64 deletions(-)
16
17 diff --git a/dev-python/rq/Manifest b/dev-python/rq/Manifest
18 index c6250e6d280..b7de45f4d77 100644
19 --- a/dev-python/rq/Manifest
20 +++ b/dev-python/rq/Manifest
21 @@ -1,2 +1 @@
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.6.1.ebuild b/dev-python/rq/rq-1.6.1.ebuild
26 deleted file mode 100644
27 index f318a1bee1e..00000000000
28 --- a/dev-python/rq/rq-1.6.1.ebuild
29 +++ /dev/null
30 @@ -1,63 +0,0 @@
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 -}