From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F0A71139694 for ; Wed, 3 May 2017 20:26:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 515DFE0C09; Wed, 3 May 2017 20:26:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 30EA3E0C09 for ; Wed, 3 May 2017 20:26:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5A9E43416A1 for ; Wed, 3 May 2017 20:26:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 261532494 for ; Wed, 3 May 2017 20:26:57 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1493843215.eb0d8c553ae4c9732596112a221c4d7348dfe9b2.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/rfc3987/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/rfc3987/rfc3987-1.3.7.ebuild X-VCS-Directories: dev-python/rfc3987/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: eb0d8c553ae4c9732596112a221c4d7348dfe9b2 X-VCS-Branch: master Date: Wed, 3 May 2017 20:26:57 +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: b9f962b7-6960-4d07-bc67-ea5a3517fc97 X-Archives-Hash: 0cbb7b429142a609b903e2f6ff12c26a commit: eb0d8c553ae4c9732596112a221c4d7348dfe9b2 Author: Zac Medico gentoo org> AuthorDate: Wed May 3 20:13:16 2017 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed May 3 20:26:55 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb0d8c55 dev-python/rfc3987: add python3.6 and pypy to PYTHON_COMPAT Since dev-python/regex does not compile with pypy3, and the regex module is not a hard dep, use python_gen_cond_dep to omit the dev-python/regex dependency for pypy3. Package-Manager: Portage-2.3.5, Repoman-2.3.2 dev-python/rfc3987/rfc3987-1.3.7.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-python/rfc3987/rfc3987-1.3.7.ebuild b/dev-python/rfc3987/rfc3987-1.3.7.ebuild index e21e5e9dbda..c55109efc5e 100644 --- a/dev-python/rfc3987/rfc3987-1.3.7.ebuild +++ b/dev-python/rfc3987/rfc3987-1.3.7.ebuild @@ -3,7 +3,7 @@ EAPI=5 -PYTHON_COMPAT=( python2_7 python3_{4,5} ) +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 ) inherit distutils-r1 @@ -16,7 +16,8 @@ SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" IUSE="" -RDEPEND="dev-python/regex[${PYTHON_USEDEP}]" +RDEPEND="$(python_gen_cond_dep \ + 'dev-python/regex[${PYTHON_USEDEP}]' python2_7 'python3*' pypy)" DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}] "