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/hypothesis/
Date: Fri, 28 Aug 2020 06:28:39
Message-Id: 1598594594.a02abaff664e11657314a0ac4b12b2fdb6d65e42.mgorny@gentoo
1 commit: a02abaff664e11657314a0ac4b12b2fdb6d65e42
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 28 05:59:25 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 28 06:03:14 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a02abaff
7
8 dev-python/hypothesis: black is now py3.9
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/hypothesis/hypothesis-5.29.3.ebuild | 6 +++---
13 1 file changed, 3 insertions(+), 3 deletions(-)
14
15 diff --git a/dev-python/hypothesis/hypothesis-5.29.3.ebuild b/dev-python/hypothesis/hypothesis-5.29.3.ebuild
16 index 89b2b4ea6b8..19018a948f1 100644
17 --- a/dev-python/hypothesis/hypothesis-5.29.3.ebuild
18 +++ b/dev-python/hypothesis/hypothesis-5.29.3.ebuild
19 @@ -16,7 +16,7 @@ S="${WORKDIR}/${PN}-${PN}-python-${PV}/${PN}-python"
20
21 LICENSE="MPL-2.0"
22 SLOT="0"
23 -KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc64 ~x86"
24 +KEYWORDS="~amd64 ~ia64 ~x86"
25 IUSE="cli test"
26 RESTRICT="!test? ( test )"
27
28 @@ -27,7 +27,7 @@ RDEPEND="
29 $(python_gen_cond_dep '
30 dev-python/black[${PYTHON_USEDEP}]
31 dev-python/click[${PYTHON_USEDEP}]
32 - ' python3_{6..8})
33 + ' python3_{6..9})
34 )
35 "
36 BDEPEND="
37 @@ -42,7 +42,7 @@ BDEPEND="
38 "
39
40 python_prepare() {
41 - if ! use cli || [[ ${EPYTHON} != python3.[678] ]]; then
42 + if ! use cli || [[ ${EPYTHON} != python* ]]; then
43 sed -i -e '/console_scripts/d' setup.py || die
44 fi
45 }