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 9B6361382C5 for ; Sun, 31 May 2020 15:42:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4269E0978; Sun, 31 May 2020 15:42:37 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 D0B2BE0978 for ; Sun, 31 May 2020 15:42:37 +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 E06CE34ED83 for ; Sun, 31 May 2020 15:42:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8737B26D for ; Sun, 31 May 2020 15:42:35 +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: <1590939740.623d2d6dd5221b7cda92d0f6bc9de217690fe5f3.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/extras/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/extras/extras-1.0.0.ebuild X-VCS-Directories: dev-python/extras/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 623d2d6dd5221b7cda92d0f6bc9de217690fe5f3 X-VCS-Branch: master Date: Sun, 31 May 2020 15:42:35 +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: cf69b277-f051-4c43-8c0e-12f837809fc6 X-Archives-Hash: f54826ba7009c739203801c7759aabdb commit: 623d2d6dd5221b7cda92d0f6bc9de217690fe5f3 Author: Michał Górny gentoo org> AuthorDate: Sun May 31 14:25:58 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun May 31 15:42:20 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=623d2d6d dev-python/extras: Port to py39 Signed-off-by: Michał Górny gentoo.org> dev-python/extras/extras-1.0.0.ebuild | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/dev-python/extras/extras-1.0.0.ebuild b/dev-python/extras/extras-1.0.0.ebuild index b092e5c776e..933ec5200ba 100644 --- a/dev-python/extras/extras-1.0.0.ebuild +++ b/dev-python/extras/extras-1.0.0.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -PYTHON_COMPAT=( python2_7 python3_6 python3_7 python3_8 pypy3 ) +PYTHON_COMPAT=( python2_7 python3_{6..9} pypy3 ) inherit distutils-r1 @@ -17,11 +17,9 @@ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc x86 IUSE="test" RESTRICT="!test? ( test )" -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] +BDEPEND=" test? ( dev-python/testtools[${PYTHON_USEDEP}] )" -RDEPEND="" python_test() { - "${PYTHON}" ${PN}/tests/test_extras.py || die + "${EPYTHON}" ${PN}/tests/test_extras.py || die }