Gentoo Archives: gentoo-commits

From: Louis Sautier <sbraz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/chump/
Date: Thu, 23 Apr 2020 18:19:15
Message-Id: 1587665946.742ab7c142a65aeadb8514e8dfdeabfa162a9014.sbraz@gentoo
1 commit: 742ab7c142a65aeadb8514e8dfdeabfa162a9014
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 23 18:16:29 2020 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 23 18:19:06 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=742ab7c1
7
8 dev-python/chump: add Python 3.8 support
9
10 Package-Manager: Portage-2.3.96, Repoman-2.3.22
11 Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
12
13 dev-python/chump/chump-1.6.0.ebuild | 7 +++----
14 1 file changed, 3 insertions(+), 4 deletions(-)
15
16 diff --git a/dev-python/chump/chump-1.6.0.ebuild b/dev-python/chump/chump-1.6.0.ebuild
17 index 4eca65a6758..6ee3f01c296 100644
18 --- a/dev-python/chump/chump-1.6.0.ebuild
19 +++ b/dev-python/chump/chump-1.6.0.ebuild
20 @@ -3,9 +3,7 @@
21
22 EAPI=7
23
24 -# PyPy is not properly supported:
25 -# https://github.com/karanlyons/chump/issues/17
26 -PYTHON_COMPAT=( pypy3 python3_{6,7} )
27 +PYTHON_COMPAT=( pypy3 python3_{6,7,8} )
28
29 inherit distutils-r1
30
31 @@ -19,10 +17,11 @@ KEYWORDS="~amd64 ~x86"
32 IUSE="doc"
33
34 DEPEND="
35 - dev-python/setuptools[${PYTHON_USEDEP}]
36 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
37 "
38
39 +# The package has no test suite
40 +
41 python_prepare_all() {
42 sed -i "/'sphinx.ext.intersphinx'/d" docs/conf.py || die
43 distutils-r1_python_prepare_all