commit: 9949587eac9cff0ed42876c3e48c1513f43fa5bf
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon May 25 12:44:14 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon May 25 12:44:33 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9949587e
dev-python/nose: Port to py3.9
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/nose/nose-1.3.7-r5.ebuild | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/dev-python/nose/nose-1.3.7-r5.ebuild
b/dev-python/nose/nose-1.3.7-r5.ebuild
index 8ce50a05b18..0b0eda13af0 100644
--- a/dev-python/nose/nose-1.3.7-r5.ebuild
+++ b/dev-python/nose/nose-1.3.7-r5.ebuild
@@ -4,7 +4,7 @@
EAPI=7
DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python2_7 python3_{6,7,8} pypy3 )
+PYTHON_COMPAT=( python2_7 python3_{6,7,8,9} pypy3 )
PYTHON_REQ_USE="threads(+)"
inherit distutils-r1
@@ -22,11 +22,15 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips
~ppc ~ppc64 ~s390 ~s
IUSE="coverage examples test"
RESTRICT="!test? ( test )"
+COV_DEP="
+ $(python_gen_cond_dep '
+ dev-python/coverage[${PYTHON_USEDEP}]
+ ' python2_7 python3_{6,7,8} pypy3)"
RDEPEND="
- coverage? ( dev-python/coverage[${PYTHON_USEDEP}] )"
+ coverage? ( ${COV_DEP} )"
DEPEND="${RDEPEND}
test? (
- dev-python/coverage[${PYTHON_USEDEP}]
+ ${COV_DEP}
$(python_gen_cond_dep '
dev-python/twisted[${PYTHON_USEDEP}]
' python2_7 python3_{6,7,8})