diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-09-16 10:31:50 +0200 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-09-16 10:53:44 +0200 |
commit | 602bbad4b033435136713a6bdd373929e4c013ed (patch) | |
tree | a48e676ae537132f900bb50090af46a4c3625cc0 | |
parent | 730cbb3bb01a29871554a7482e39a5a9f86321d6 (diff) | |
download | gentoo-602bbad4b033435136713a6bdd373929e4c013ed.tar.gz gentoo-602bbad4b033435136713a6bdd373929e4c013ed.tar.xz |
dev-python/wrapt: Add pypy support
Package-Manager: portage-2.2.20.1
Signed-off-by: Justin Lecher <jlec@gentoo.org>
-rw-r--r-- | dev-python/wrapt/wrapt-1.10.5.ebuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/dev-python/wrapt/wrapt-1.10.5.ebuild b/dev-python/wrapt/wrapt-1.10.5.ebuild index 828797d8e5a..cf144648638 100644 --- a/dev-python/wrapt/wrapt-1.10.5.ebuild +++ b/dev-python/wrapt/wrapt-1.10.5.ebuild @@ -3,13 +3,14 @@ # $Id$ EAPI=5 -PYTHON_COMPAT=( python2_7 python3_3 python3_4 ) + +PYTHON_COMPAT=( python2_7 python3_3 python3_4 pypy ) inherit distutils-r1 vcs-snapshot -DESCRIPTION="Module for decorators, wrappers and monkey patching." +DESCRIPTION="Module for decorators, wrappers and monkey patching" HOMEPAGE="https://github.com/GrahamDumpleton/wrapt" -SRC_URI="https://github.com/GrahamDumpleton/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" @@ -36,7 +37,7 @@ python_compile() { } python_test() { - py.test || die "tests failed under ${EPYTHON}" + py.test -vv || die "tests failed under ${EPYTHON}" } python_install_all() { |