Gentoo Archives: gentoo-commits

From: Louis Sautier <sbraz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/torrentinfo/
Date: Thu, 23 Apr 2020 18:43:20
Message-Id: 1587667377.1550c1b68365047359a2e4b888205b2ff87c387f.sbraz@gentoo
1 commit: 1550c1b68365047359a2e4b888205b2ff87c387f
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 23 18:41:58 2020 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 23 18:42:57 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1550c1b6
7
8 net-p2p/torrentinfo: add Python 3.8 support, fix dependencies
9
10 Package-Manager: Portage-2.3.96, Repoman-2.3.22
11 Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
12
13 net-p2p/torrentinfo/torrentinfo-1.8.6-r2.ebuild | 5 +++--
14 1 file changed, 3 insertions(+), 2 deletions(-)
15
16 diff --git a/net-p2p/torrentinfo/torrentinfo-1.8.6-r2.ebuild b/net-p2p/torrentinfo/torrentinfo-1.8.6-r2.ebuild
17 index fb969611213..47fe1ceaf02 100644
18 --- a/net-p2p/torrentinfo/torrentinfo-1.8.6-r2.ebuild
19 +++ b/net-p2p/torrentinfo/torrentinfo-1.8.6-r2.ebuild
20 @@ -2,7 +2,9 @@
21 # Distributed under the terms of the GNU General Public License v2
22
23 EAPI=7
24 -PYTHON_COMPAT=( pypy3 python3_{6,7} )
25 +PYTHON_COMPAT=( pypy3 python3_{6,7,8} )
26 +# The package uses distutils
27 +DISTUTILS_USE_SETUPTOOLS=no
28
29 inherit distutils-r1
30
31 @@ -17,7 +19,6 @@ IUSE="test"
32 RESTRICT="!test? ( test )"
33
34 BDEPEND="
35 - dev-python/setuptools[${PYTHON_USEDEP}]
36 test? ( dev-python/nose[${PYTHON_USEDEP}] )
37 "