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 6F5B5138359 for ; Fri, 9 Oct 2020 10:52:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ABF54E0821; Fri, 9 Oct 2020 10:52:30 +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 929F4E0821 for ; Fri, 9 Oct 2020 10:52:30 +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 61238340F3A for ; Fri, 9 Oct 2020 10:52:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D7DF6332 for ; Fri, 9 Oct 2020 10:52:27 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1602240704.79d414a4f8c1854b28c4ef3567e51d4c4a633024.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tox/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/tox/tox-3.20.0-r1.ebuild dev-python/tox/tox-3.20.0.ebuild X-VCS-Directories: dev-python/tox/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 79d414a4f8c1854b28c4ef3567e51d4c4a633024 X-VCS-Branch: master Date: Fri, 9 Oct 2020 10:52:27 +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: c8394818-2235-41ad-a57d-e13885f934a4 X-Archives-Hash: acacbd0b72ec99dd6a4e339a0338064a commit: 79d414a4f8c1854b28c4ef3567e51d4c4a633024 Author: Louis Sautier gentoo org> AuthorDate: Fri Oct 9 10:25:06 2020 +0000 Commit: Louis Sautier gentoo org> CommitDate: Fri Oct 9 10:51:44 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79d414a4 dev-python/tox: remove importlib_metadata version constraints Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Louis Sautier gentoo.org> dev-python/tox/{tox-3.20.0.ebuild => tox-3.20.0-r1.ebuild} | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-python/tox/tox-3.20.0.ebuild b/dev-python/tox/tox-3.20.0-r1.ebuild similarity index 95% rename from dev-python/tox/tox-3.20.0.ebuild rename to dev-python/tox/tox-3.20.0-r1.ebuild index 499658c518d..e4896d972c0 100644 --- a/dev-python/tox/tox-3.20.0.ebuild +++ b/dev-python/tox/tox-3.20.0-r1.ebuild @@ -60,6 +60,8 @@ src_prepare() { sed -i -e 's:test_tox_get_python_executable:_&:' \ -e 's:test_find_alias_on_path:_&:' \ tests/unit/interpreters/test_interpreters.py || die + # ignore importlib_metadata version constraints + sed -i -e '/^[[:space:]]*importlib-metadata\b/d' setup.cfg || die export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} }