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 A5DDE138334 for ; Sun, 31 Mar 2019 13:17:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BBDE2E0924; Sun, 31 Mar 2019 13:17:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9A4CAE0924 for ; Sun, 31 Mar 2019 13:17:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 48D10335D08 for ; Sun, 31 Mar 2019 13:17:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B9A7757D for ; Sun, 31 Mar 2019 13:17:40 +0000 (UTC) From: "Virgil Dupras" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Virgil Dupras" Message-ID: <1554038226.0134090a488121a50a6cf57a87a62de4e0efe1a3.vdupras@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: vdupras X-VCS-Committer-Name: Virgil Dupras X-VCS-Revision: 0134090a488121a50a6cf57a87a62de4e0efe1a3 X-VCS-Branch: master Date: Sun, 31 Mar 2019 13:17:40 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 83e3ab62-40a9-4389-ad1b-95a97d29bb1d X-Archives-Hash: 88f2fd6fa7306142d2dead6834fa7dcc commit: 0134090a488121a50a6cf57a87a62de4e0efe1a3 Author: Virgil Dupras gentoo org> AuthorDate: Sun Mar 31 13:17:06 2019 +0000 Commit: Virgil Dupras gentoo org> CommitDate: Sun Mar 31 13:17:06 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0134090a virtual/python-pathlib: remove pypy3 requirement Bug: https://bugs.gentoo.org/616596 Signed-off-by: Virgil Dupras gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 virtual/python-pathlib/python-pathlib-1.0.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/virtual/python-pathlib/python-pathlib-1.0.ebuild b/virtual/python-pathlib/python-pathlib-1.0.ebuild index 10122a0b286..5c3ea9070d5 100644 --- a/virtual/python-pathlib/python-pathlib-1.0.ebuild +++ b/virtual/python-pathlib/python-pathlib-1.0.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy pypy3 ) +PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 ) inherit python-r1 @@ -14,4 +14,4 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}" RDEPEND="${PYTHON_DEPS} $(python_gen_cond_dep 'dev-python/pathlib[${PYTHON_USEDEP}]' \ - python{2_7,3_3} pypy pypy3)" + python2_7 pypy)"