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 8BD24139894 for ; Mon, 24 Aug 2015 10:12:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 39C7A141A8; Mon, 24 Aug 2015 10:12:25 +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 67A05141A5 for ; Mon, 24 Aug 2015 10:12:24 +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 AFF4F3406F2 for ; Mon, 24 Aug 2015 10:12:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E2F12176 for ; Mon, 24 Aug 2015 10:12:20 +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: <1440411127.f81eb59cb2f0ccbfeaee653d2559a75f68f5fe7e.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/lockfile/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/lockfile/lockfile-0.10.2.ebuild X-VCS-Directories: dev-python/lockfile/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: f81eb59cb2f0ccbfeaee653d2559a75f68f5fe7e X-VCS-Branch: master Date: Mon, 24 Aug 2015 10:12:20 +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: fa02bd76-814b-495b-8e86-38f46658aa38 X-Archives-Hash: 54ef7247168c4be88565e00bdf6e6a22 commit: f81eb59cb2f0ccbfeaee653d2559a75f68f5fe7e Author: Justin Lecher gentoo org> AuthorDate: Mon Aug 24 06:02:58 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Mon Aug 24 10:12:07 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f81eb59c dev-python/lockfile: Add pypy3 support Package-Manager: portage-2.2.20.1 Signed-off-by: Justin Lecher gentoo.org> dev-python/lockfile/lockfile-0.10.2.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-python/lockfile/lockfile-0.10.2.ebuild b/dev-python/lockfile/lockfile-0.10.2.ebuild index 5e13652..12c0bc0 100644 --- a/dev-python/lockfile/lockfile-0.10.2.ebuild +++ b/dev-python/lockfile/lockfile-0.10.2.ebuild @@ -3,7 +3,8 @@ # $Id$ EAPI=5 -PYTHON_COMPAT=( python{2_7,3_3,3_4} ) + +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 ) inherit distutils-r1 @@ -16,7 +17,8 @@ SLOT="0" KEYWORDS="~amd64 ~arm ~ppc ~x86" IUSE="doc test" -DEPEND="dev-python/pbr[${PYTHON_USEDEP}] +DEPEND=" + dev-python/pbr[${PYTHON_USEDEP}] doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) test? ( dev-python/nose[${PYTHON_USEDEP}] )" RDEPEND=""