From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 16E2C1393F1 for ; Wed, 16 Sep 2015 08:53:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 10A4121C002; Wed, 16 Sep 2015 08:53:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1898621C006 for ; Wed, 16 Sep 2015 08:53:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4AA81340C83 for ; Wed, 16 Sep 2015 08:53:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EF18E204 for ; Wed, 16 Sep 2015 08:53:47 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1442393624.602bbad4b033435136713a6bdd373929e4c013ed.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/wrapt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/wrapt/wrapt-1.10.5.ebuild X-VCS-Directories: dev-python/wrapt/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 602bbad4b033435136713a6bdd373929e4c013ed X-VCS-Branch: master Date: Wed, 16 Sep 2015 08:53:47 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 773c3bb2-2724-4527-8bcf-5d52ae8dff6c X-Archives-Hash: 8a613d557949f330020ab05c1b01820a commit: 602bbad4b033435136713a6bdd373929e4c013ed Author: Justin Lecher gentoo org> AuthorDate: Wed Sep 16 08:31:50 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Sep 16 08:53:44 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=602bbad4 dev-python/wrapt: Add pypy support Package-Manager: portage-2.2.20.1 Signed-off-by: Justin Lecher gentoo.org> dev-python/wrapt/wrapt-1.10.5.ebuild | 9 +++++---- 1 file 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 828797d..cf14464 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() {