From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 846611581B9 for ; Sun, 21 Sep 2025 19:02:00 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 294B43415D2 for ; Sun, 21 Sep 2025 19:01:13 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 0DEDB110573; Sun, 21 Sep 2025 19:01:12 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 031D6110573 for ; Sun, 21 Sep 2025 19:01:11 +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 AF5AF3415D2 for ; Sun, 21 Sep 2025 19:01:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EFB1F3392 for ; Sun, 21 Sep 2025 19:01:09 +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: <1758481266.9502fffd58f2bde7f3645c80bfee142f60f6f280.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cheroot/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/cheroot/cheroot-11.0.0.ebuild X-VCS-Directories: dev-python/cheroot/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9502fffd58f2bde7f3645c80bfee142f60f6f280 X-VCS-Branch: master Date: Sun, 21 Sep 2025 19:01:09 +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: 66435228-a013-401b-97b2-e3348384405c X-Archives-Hash: 59a2b11f38c1f32b4907a125d52a6376 commit: 9502fffd58f2bde7f3645c80bfee142f60f6f280 Author: Joe Kappus wt gd> AuthorDate: Sun Sep 21 17:52:20 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Sep 21 19:01:06 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9502fffd dev-python/cheroot: fix 11.0.0 bump Remove obsolete patch and fix tests. Signed-off-by: Joe Kappus wt.gd> Part-of: https://github.com/gentoo/gentoo/pull/43890 Closes: https://github.com/gentoo/gentoo/pull/43890 Signed-off-by: Michał Górny gentoo.org> dev-python/cheroot/cheroot-11.0.0.ebuild | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/dev-python/cheroot/cheroot-11.0.0.ebuild b/dev-python/cheroot/cheroot-11.0.0.ebuild index 60a05fd24c1c..6eea9ce1fdfa 100644 --- a/dev-python/cheroot/cheroot-11.0.0.ebuild +++ b/dev-python/cheroot/cheroot-11.0.0.ebuild @@ -40,17 +40,12 @@ BDEPEND=" ) " -PATCHES=( - # https://github.com/cherrypy/cheroot/pull/703 - "${FILESDIR}/${PN}-10.0.1-no-pytest-forked.patch" -) - -EPYTEST_PLUGINS=( pytest-mock ) +EPYTEST_PLUGINS=( pytest-{mock,rerunfailures} ) EPYTEST_XDIST=1 distutils_enable_tests pytest python_prepare_all() { - sed -e '/--cov/d' \ + sed -e '/cov/d' \ -e '/--testmon/d' \ -e '/--numproc/d' \ -i pytest.ini || die