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 5BFC915800F for ; Wed, 1 Feb 2023 13:18:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3F07AE0BD3; Wed, 1 Feb 2023 13:18:33 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 29E8AE0BD3 for ; Wed, 1 Feb 2023 13:18:33 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 40AEC340A51 for ; Wed, 1 Feb 2023 13:18:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F037589F for ; Wed, 1 Feb 2023 13:18:27 +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: <1675257501.5a61024298f234e4054e40951cb6623f53f724d7.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/flaky/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/flaky/flaky-3.7.0-r3.ebuild dev-python/flaky/flaky-3.7.0-r4.ebuild X-VCS-Directories: dev-python/flaky/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5a61024298f234e4054e40951cb6623f53f724d7 X-VCS-Branch: master Date: Wed, 1 Feb 2023 13:18: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: 8563f69c-4ab0-4bb9-8fdd-01b7afad22c7 X-Archives-Hash: 96bf6a48e5abbd6fb31d8a5e4974e002 commit: 5a61024298f234e4054e40951cb6623f53f724d7 Author: Michał Górny gentoo org> AuthorDate: Wed Feb 1 12:25:49 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Feb 1 13:18:21 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a610242 dev-python/flaky: Strip nose plugin entry point as well Signed-off-by: Michał Górny gentoo.org> dev-python/flaky/{flaky-3.7.0-r3.ebuild => flaky-3.7.0-r4.ebuild} | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-python/flaky/flaky-3.7.0-r3.ebuild b/dev-python/flaky/flaky-3.7.0-r4.ebuild similarity index 95% rename from dev-python/flaky/flaky-3.7.0-r3.ebuild rename to dev-python/flaky/flaky-3.7.0-r4.ebuild index 26222c519f10..b80e2f72f774 100644 --- a/dev-python/flaky/flaky-3.7.0-r3.ebuild +++ b/dev-python/flaky/flaky-3.7.0-r4.ebuild @@ -31,6 +31,7 @@ DEPEND=" src_prepare() { rm flaky/flaky_nose_plugin.py || die + sed -i -e '/flaky_nose_plugin/d' setup.py || die distutils-r1_src_prepare }