Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/anyqt/
Date: Sun, 02 Aug 2020 20:49:10
Message-Id: 1596401338.9be5e8f3ac444f149df46aa472a4d883f848e60f.bman@gentoo
1 commit: 9be5e8f3ac444f149df46aa472a4d883f848e60f
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 2 20:47:35 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 2 20:48:58 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9be5e8f3
7
8 dev-python/anyqt: port to py3_{7,8}
9
10 Closes: https://bugs.gentoo.org/718864
11 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
12
13 dev-python/anyqt/anyqt-0.0.8-r1.ebuild | 11 ++++-------
14 1 file changed, 4 insertions(+), 7 deletions(-)
15
16 diff --git a/dev-python/anyqt/anyqt-0.0.8-r1.ebuild b/dev-python/anyqt/anyqt-0.0.8-r1.ebuild
17 index 109bb075285..21ff1bcf320 100644
18 --- a/dev-python/anyqt/anyqt-0.0.8-r1.ebuild
19 +++ b/dev-python/anyqt/anyqt-0.0.8-r1.ebuild
20 @@ -1,9 +1,11 @@
21 # Copyright 1999-2020 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI="6"
25 +EAPI=7
26
27 -PYTHON_COMPAT=( python3_6 )
28 +PYTHON_COMPAT=( python3_{7,8} )
29 +
30 +DISTUTILS_USE_SETUPTOOLS=rdepend
31
32 inherit distutils-r1
33
34 @@ -15,8 +17,3 @@ LICENSE="GPL-3"
35 SLOT="0"
36 KEYWORDS="~amd64 ~x86"
37 IUSE=""
38 -
39 -RDEPEND=""
40 -
41 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
42 - ${RDEPEND}"