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 42FC21395E3 for ; Fri, 25 Nov 2016 16:18:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BD81221C095; Fri, 25 Nov 2016 16:18:11 +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 A5E4721C095 for ; Fri, 25 Nov 2016 16:18:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C5EBB341117 for ; Fri, 25 Nov 2016 16:18:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 961A7249B for ; Fri, 25 Nov 2016 16:18:07 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1480090682.d99382f704173b4b5f29b0c115b4d0e5c3e5d59d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: virtual/python-pathlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: virtual/python-pathlib/python-pathlib-1.0.ebuild X-VCS-Directories: virtual/python-pathlib/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d99382f704173b4b5f29b0c115b4d0e5c3e5d59d X-VCS-Branch: master Date: Fri, 25 Nov 2016 16:18:07 +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: 06842ab7-5c49-4bfa-99c1-d4415b917812 X-Archives-Hash: ea789a3985298d0ae216b831d29edca2 commit: d99382f704173b4b5f29b0c115b4d0e5c3e5d59d Author: Michał Górny gentoo org> AuthorDate: Fri Nov 25 16:12:43 2016 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Nov 25 16:18:02 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d99382f7 virtual/python-pathlib: Enable pypy3 virtual/python-pathlib/python-pathlib-1.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/virtual/python-pathlib/python-pathlib-1.0.ebuild b/virtual/python-pathlib/python-pathlib-1.0.ebuild index 7b80fb8..aab5cfb 100644 --- a/virtual/python-pathlib/python-pathlib-1.0.ebuild +++ b/virtual/python-pathlib/python-pathlib-1.0.ebuild @@ -4,7 +4,7 @@ EAPI=5 -PYTHON_COMPAT=( python2_7 python3_{4,5} pypy ) +PYTHON_COMPAT=( python2_7 python3_{4,5} pypy pypy3 ) inherit python-r1 @@ -21,4 +21,4 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}" RDEPEND="${PYTHON_DEPS} $(python_gen_cond_dep 'dev-python/pathlib[${PYTHON_USEDEP}]' \ - python{2_7,3_3} pypy)" + python{2_7,3_3} pypy pypy3)"