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 40513138359 for ; Sun, 2 Aug 2020 20:49:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70580E0999; Sun, 2 Aug 2020 20:49:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 3E7CFE0999 for ; Sun, 2 Aug 2020 20:49:09 +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 6662B34F233 for ; Sun, 2 Aug 2020 20:49:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1C7182CE for ; Sun, 2 Aug 2020 20:49:07 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1596401338.9be5e8f3ac444f149df46aa472a4d883f848e60f.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/anyqt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/anyqt/anyqt-0.0.8-r1.ebuild X-VCS-Directories: dev-python/anyqt/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 9be5e8f3ac444f149df46aa472a4d883f848e60f X-VCS-Branch: master Date: Sun, 2 Aug 2020 20:49: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 15e0bb00-caf6-4cc8-9f16-2d221ee90e21 X-Archives-Hash: 18f7f69cf9342dd3d9951bc28821f455 commit: 9be5e8f3ac444f149df46aa472a4d883f848e60f Author: Aaron Bauman gentoo org> AuthorDate: Sun Aug 2 20:47:35 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Sun Aug 2 20:48:58 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9be5e8f3 dev-python/anyqt: port to py3_{7,8} Closes: https://bugs.gentoo.org/718864 Signed-off-by: Aaron Bauman gentoo.org> dev-python/anyqt/anyqt-0.0.8-r1.ebuild | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/dev-python/anyqt/anyqt-0.0.8-r1.ebuild b/dev-python/anyqt/anyqt-0.0.8-r1.ebuild index 109bb075285..21ff1bcf320 100644 --- a/dev-python/anyqt/anyqt-0.0.8-r1.ebuild +++ b/dev-python/anyqt/anyqt-0.0.8-r1.ebuild @@ -1,9 +1,11 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="6" +EAPI=7 -PYTHON_COMPAT=( python3_6 ) +PYTHON_COMPAT=( python3_{7,8} ) + +DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 @@ -15,8 +17,3 @@ LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" - -RDEPEND="" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - ${RDEPEND}"