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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 35D11158086 for ; Tue, 30 Nov 2021 10:01:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F1652BC053; Tue, 30 Nov 2021 10:01:40 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1688C2BC053 for ; Tue, 30 Nov 2021 10:01:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7364F342F98 for ; Tue, 30 Nov 2021 10:01:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CB022233 for ; Tue, 30 Nov 2021 10:01:34 +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: <1638266488.dbc73b98f8ae481346020eaec2129bcec64dc7d6.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-envs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jaraco-envs/jaraco-envs-2.2.0-r1.ebuild dev-python/jaraco-envs/jaraco-envs-2.2.0.ebuild X-VCS-Directories: dev-python/jaraco-envs/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: dbc73b98f8ae481346020eaec2129bcec64dc7d6 X-VCS-Branch: master Date: Tue, 30 Nov 2021 10:01:34 +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: 95890bb0-7b17-4711-b326-ad401984b63c X-Archives-Hash: 50042166d2d2dfdc31c84b40c69a0786 commit: dbc73b98f8ae481346020eaec2129bcec64dc7d6 Author: Michał Górny gentoo org> AuthorDate: Tue Nov 30 09:57:17 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Nov 30 10:01:28 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbc73b98 dev-python/jaraco-envs: Strip optional runtime dep on tox Signed-off-by: Michał Górny gentoo.org> .../{jaraco-envs-2.2.0.ebuild => jaraco-envs-2.2.0-r1.ebuild} | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dev-python/jaraco-envs/jaraco-envs-2.2.0.ebuild b/dev-python/jaraco-envs/jaraco-envs-2.2.0-r1.ebuild similarity index 84% rename from dev-python/jaraco-envs/jaraco-envs-2.2.0.ebuild rename to dev-python/jaraco-envs/jaraco-envs-2.2.0-r1.ebuild index b601de93161c..11b21bae8bc6 100644 --- a/dev-python/jaraco-envs/jaraco-envs-2.2.0.ebuild +++ b/dev-python/jaraco-envs/jaraco-envs-2.2.0-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 PYTHON_COMPAT=( python3_{8..10} pypy3 ) inherit distutils-r1 @@ -25,3 +25,9 @@ BDEPEND=" # there are no actual tests, just flake8 etc RESTRICT="test" + +src_prepare() { + # optional runtime dep, not used by anything in ::gentoo + sed -i -e '/tox/d' setup.cfg || die + distutils-r1_src_prepare +}