dev-python/unittest2: Add pypy3 support

Package-Manager: portage-2.2.20.1
Signed-off-by: Justin Lecher <jlec@gentoo.org>
This commit is contained in:
Justin Lecher
2015-08-23 19:48:08 +02:00
parent fd10c9cf78
commit 2a1ed025c3

View File

@@ -3,7 +3,8 @@
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 python3_3 python3_4 pypy )
PYTHON_COMPAT=( python2_7 python3_{3,4} pypy pypy3 )
inherit distutils-r1
@@ -25,13 +26,7 @@ CDEPEND="
DEPEND="${CDEPEND}"
RDEPEND="${CDEPEND}"
python_prepare_all() {
local PATCHES=(
"${FILESDIR}"/remove-argparse-dependence.patch
)
distutils-r1_python_prepare_all
}
PATCHES=( "${FILESDIR}"/remove-argparse-dependence.patch )
python_test() {
"${PYTHON}" -m unittest2 discover || die "tests failed under ${EPYTHON}"