From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1207820-garchives=archives.gentoo.org@lists.gentoo.org>
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 88985138359
	for <garchives@archives.gentoo.org>; Sun, 20 Sep 2020 10:24:23 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 2E8F9E0898;
	Sun, 20 Sep 2020 10:24:21 +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 15B3CE0898
	for <gentoo-commits@lists.gentoo.org>; Sun, 20 Sep 2020 10:24:21 +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 0D642340F90
	for <gentoo-commits@lists.gentoo.org>; Sun, 20 Sep 2020 10:24:20 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 907F437F
	for <gentoo-commits@lists.gentoo.org>; Sun, 20 Sep 2020 10:24:16 +0000 (UTC)
From: "Michał Górny" <mgorny@gentoo.org>
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" <mgorny@gentoo.org>
Message-ID: <1600597452.1106fa28ab21bcb48c8476039eeeb99851d96c5c.mgorny@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/psutil/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-python/psutil/psutil-5.7.0-r1.ebuild dev-python/psutil/psutil-5.7.0.ebuild dev-python/psutil/psutil-5.7.2-r1.ebuild dev-python/psutil/psutil-5.7.2.ebuild
X-VCS-Directories: dev-python/psutil/
X-VCS-Committer: mgorny
X-VCS-Committer-Name: Michał Górny
X-VCS-Revision: 1106fa28ab21bcb48c8476039eeeb99851d96c5c
X-VCS-Branch: master
Date: Sun, 20 Sep 2020 10:24:16 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: b7e47061-8e61-43c8-b1c1-4d242984e783
X-Archives-Hash: dd27ec2f1081a4350acab62a27e1c11d

commit:     1106fa28ab21bcb48c8476039eeeb99851d96c5c
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 20 10:20:11 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Sep 20 10:24:12 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1106fa28

dev-python/psutil: Remove python2

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 .../psutil/{psutil-5.7.0.ebuild => psutil-5.7.0-r1.ebuild}   | 11 +----------
 .../psutil/{psutil-5.7.2.ebuild => psutil-5.7.2-r1.ebuild}   | 12 +-----------
 2 files changed, 2 insertions(+), 21 deletions(-)

diff --git a/dev-python/psutil/psutil-5.7.0.ebuild b/dev-python/psutil/psutil-5.7.0-r1.ebuild
similarity index 85%
rename from dev-python/psutil/psutil-5.7.0.ebuild
rename to dev-python/psutil/psutil-5.7.0-r1.ebuild
index 2160825ab22..912f00ba6ad 100644
--- a/dev-python/psutil/psutil-5.7.0.ebuild
+++ b/dev-python/psutil/psutil-5.7.0-r1.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,7,8,9}} pypy3 )
+PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 )
 
 inherit distutils-r1
 
@@ -16,15 +16,6 @@ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 s390 sparc x86 ~amd64-linu
 IUSE="test"
 RESTRICT="!test? ( test )"
 
-DEPEND="
-	test? (
-		$(python_gen_cond_dep '
-			dev-python/mock[${PYTHON_USEDEP}]
-			dev-python/ipaddress[${PYTHON_USEDEP}]
-		' -2)
-	)
-"
-
 PATCHES=(
 	"${FILESDIR}/psutil-5.7.0-tests.patch"
 )

diff --git a/dev-python/psutil/psutil-5.7.2.ebuild b/dev-python/psutil/psutil-5.7.2-r1.ebuild
similarity index 83%
rename from dev-python/psutil/psutil-5.7.2.ebuild
rename to dev-python/psutil/psutil-5.7.2-r1.ebuild
index df39e7ee6d5..9ed14dc9f09 100644
--- a/dev-python/psutil/psutil-5.7.2.ebuild
+++ b/dev-python/psutil/psutil-5.7.2-r1.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,7,8,9}} pypy3 )
+PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 )
 
 inherit distutils-r1
 
@@ -16,16 +16,6 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 sparc ~x
 IUSE="test"
 RESTRICT="!test? ( test )"
 
-DEPEND="
-	test? (
-		$(python_gen_cond_dep '
-			dev-python/mock[${PYTHON_USEDEP}]
-			dev-python/ipaddress[${PYTHON_USEDEP}]
-			dev-python/unittest2[${PYTHON_USEDEP}]
-		' -2)
-	)
-"
-
 PATCHES=(
 	"${FILESDIR}/psutil-5.7.2-tests.patch"
 )