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 C3E9E15807A for ; Mon, 7 Oct 2024 12:20:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0A325E29AF; Mon, 7 Oct 2024 12:20:11 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E15A6E29AE for ; Mon, 7 Oct 2024 12:20:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E4367343111 for ; Mon, 7 Oct 2024 12:20:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4A46C16EF for ; Mon, 7 Oct 2024 12:20:08 +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: <1728303602.466d5c71a47c47b1b944f49c51a4d05036a47091.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/termcolor/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/termcolor/termcolor-2.5.0.ebuild X-VCS-Directories: dev-python/termcolor/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 466d5c71a47c47b1b944f49c51a4d05036a47091 X-VCS-Branch: master Date: Mon, 7 Oct 2024 12:20:08 +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: 65acde42-494d-49cd-bb05-2ee5c97f0c51 X-Archives-Hash: 2eb5138489af2a91e6ae9e80d212d5f4 commit: 466d5c71a47c47b1b944f49c51a4d05036a47091 Author: Michał Górny gentoo org> AuthorDate: Mon Oct 7 11:38:33 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Oct 7 12:20:02 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=466d5c71 dev-python/termcolor: Strip implicit dep on coverage Closes: https://bugs.gentoo.org/941112 Signed-off-by: Michał Górny gentoo.org> dev-python/termcolor/termcolor-2.5.0.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dev-python/termcolor/termcolor-2.5.0.ebuild b/dev-python/termcolor/termcolor-2.5.0.ebuild index f1e102666cdb..35c3f3f90c4e 100644 --- a/dev-python/termcolor/termcolor-2.5.0.ebuild +++ b/dev-python/termcolor/termcolor-2.5.0.ebuild @@ -25,3 +25,10 @@ BDEPEND=" " distutils_enable_tests pytest + +src_prepare() { + distutils-r1_src_prepare + + # avoid dep on coverage (to ignore warnings from coverage) + sed -i -e '/coverage/d' pyproject.toml || die +}