Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/
Date: Sat, 18 Sep 2021 05:38:40
Message-Id: 1631943195.b17eaa973464a30e349fd997d0e929d1f4e044f7.arthurzam@gentoo
1 commit: b17eaa973464a30e349fd997d0e929d1f4e044f7
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 18 05:33:15 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 18 05:33:15 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b17eaa97
7
8 dev-python/txrequests: enable tests, enable py3.10, EAPI=8
9
10 Closes: https://bugs.gentoo.org/798603
11 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
12
13 dev-python/txrequests/txrequests-0.9.6.ebuild | 13 +++++++++----
14 1 file changed, 9 insertions(+), 4 deletions(-)
15
16 diff --git a/dev-python/txrequests/txrequests-0.9.6.ebuild b/dev-python/txrequests/txrequests-0.9.6.ebuild
17 index 7f6e3418d14..729977c9a88 100644
18 --- a/dev-python/txrequests/txrequests-0.9.6.ebuild
19 +++ b/dev-python/txrequests/txrequests-0.9.6.ebuild
20 @@ -1,10 +1,9 @@
21 # Copyright 1999-2021 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=6
25 -PYTHON_COMPAT=( python3_{7,8,9})
26 +EAPI=8
27
28 -DISTUTILS_USE_SETUPTOOLS="bdepend"
29 +PYTHON_COMPAT=( python3_{8..10})
30
31 inherit distutils-r1
32
33 @@ -15,9 +14,15 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
34 LICENSE="Apache-2.0"
35 SLOT="0"
36 KEYWORDS="~amd64 ~arm64 ~x86"
37 +IUSE="test"
38 +RESTRICT="!test? ( test )"
39
40 RDEPEND="
41 >=dev-python/requests-1.2.0[${PYTHON_USEDEP}]
42 dev-python/twisted[${PYTHON_USEDEP}]
43 "
44 -DEPEND="${RDEPEND}"
45 +BDEPEND="test? ( ${RDEPEND} )"
46 +
47 +python_test() {
48 + "${EPYTHON}" -m twisted.trial txrequests || die "Tests failed with ${EPYTHON}"
49 +}