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 6FB5B138350 for ; Wed, 5 Feb 2020 19:53:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F055BE0874; Wed, 5 Feb 2020 19:53:40 +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 B7FCCE0874 for ; Wed, 5 Feb 2020 19:53:40 +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 6AA0034E7B2 for ; Wed, 5 Feb 2020 19:53:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 45E9F12D for ; Wed, 5 Feb 2020 19:53:36 +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: <1580932398.0e4eb3b3f7ca54d6be9e02f30b5d39fb6a1aa49b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyparted/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyparted/pyparted-3.10.7.ebuild dev-python/pyparted/pyparted-3.11.2.ebuild dev-python/pyparted/pyparted-3.11.3.ebuild dev-python/pyparted/pyparted-999999.ebuild X-VCS-Directories: dev-python/pyparted/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 0e4eb3b3f7ca54d6be9e02f30b5d39fb6a1aa49b X-VCS-Branch: master Date: Wed, 5 Feb 2020 19:53:36 +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: 4b1680de-f764-43ef-b635-3dbd504bb733 X-Archives-Hash: c51b5ddccf5de5f886ad4146a46e6d9d commit: 0e4eb3b3f7ca54d6be9e02f30b5d39fb6a1aa49b Author: Michał Górny gentoo org> AuthorDate: Wed Feb 5 19:41:33 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Feb 5 19:53:18 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e4eb3b3 dev-python/pyparted: Remove py2 Signed-off-by: Michał Górny gentoo.org> dev-python/pyparted/pyparted-3.10.7.ebuild | 7 ++----- dev-python/pyparted/pyparted-3.11.2.ebuild | 7 ++----- dev-python/pyparted/pyparted-3.11.3.ebuild | 2 +- dev-python/pyparted/pyparted-999999.ebuild | 2 +- 4 files changed, 6 insertions(+), 12 deletions(-) diff --git a/dev-python/pyparted/pyparted-3.10.7.ebuild b/dev-python/pyparted/pyparted-3.10.7.ebuild index 307aca112dc..9d7910371fc 100644 --- a/dev-python/pyparted/pyparted-3.10.7.ebuild +++ b/dev-python/pyparted/pyparted-3.10.7.ebuild @@ -3,7 +3,7 @@ EAPI=6 -PYTHON_COMPAT=( python{2_7,3_6} ) +PYTHON_COMPAT=( python3_6 ) inherit distutils-r1 DESCRIPTION="Python bindings for sys-block/parted" @@ -14,10 +14,7 @@ LICENSE="GPL-2+" SLOT="0" KEYWORDS="~alpha amd64 hppa ia64 ppc ppc64 sparc x86" IUSE="test" -RESTRICT="!test? ( test )" -REQUIRED_USE=" - test? ( python_targets_python2_7 ) -" +RESTRICT="test" RDEPEND=" >=sys-block/parted-3.1 diff --git a/dev-python/pyparted/pyparted-3.11.2.ebuild b/dev-python/pyparted/pyparted-3.11.2.ebuild index 5a9a66752a3..d3ac7bb90e1 100644 --- a/dev-python/pyparted/pyparted-3.11.2.ebuild +++ b/dev-python/pyparted/pyparted-3.11.2.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python{2_7,3_6} ) +PYTHON_COMPAT=( python3_6 ) inherit distutils-r1 DESCRIPTION="Python bindings for sys-block/parted" @@ -13,10 +13,7 @@ LICENSE="GPL-2+" SLOT="0" KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="test" -RESTRICT="!test? ( test )" -REQUIRED_USE=" - test? ( python_targets_python2_7 ) -" +RESTRICT="test" RDEPEND=" >=sys-block/parted-3.1 diff --git a/dev-python/pyparted/pyparted-3.11.3.ebuild b/dev-python/pyparted/pyparted-3.11.3.ebuild index a058461368a..9412f7f7545 100644 --- a/dev-python/pyparted/pyparted-3.11.3.ebuild +++ b/dev-python/pyparted/pyparted-3.11.3.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python{2_7,3_6} ) +PYTHON_COMPAT=( python3_6 ) inherit distutils-r1 flag-o-matic DESCRIPTION="Python bindings for sys-block/parted" diff --git a/dev-python/pyparted/pyparted-999999.ebuild b/dev-python/pyparted/pyparted-999999.ebuild index b34350ec163..9a99955ada2 100644 --- a/dev-python/pyparted/pyparted-999999.ebuild +++ b/dev-python/pyparted/pyparted-999999.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python{2_7,3_6} ) +PYTHON_COMPAT=( python3_6 ) inherit distutils-r1 flag-o-matic git-r3 DESCRIPTION="Python bindings for sys-block/parted"