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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 408D71581EE for ; Thu, 10 Apr 2025 14:54:06 +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)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 2AA7A3432A8 for ; Thu, 10 Apr 2025 14:54:06 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 6188B1102B2; Thu, 10 Apr 2025 14:54:04 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 bobolink.gentoo.org (Postfix) with ESMTPS id 56B141102B2 for ; Thu, 10 Apr 2025 14:54:04 +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 07090343620 for ; Thu, 10 Apr 2025 14:54:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 336B1159F for ; Thu, 10 Apr 2025 14:54:02 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1744296812.57dc33daea08f8ec4d24c0e442620e24515599d1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/certbot/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/certbot/certbot-4.0.0-r1.ebuild app-crypt/certbot/certbot-4.0.0.ebuild app-crypt/certbot/certbot-9999.ebuild X-VCS-Directories: app-crypt/certbot/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 57dc33daea08f8ec4d24c0e442620e24515599d1 X-VCS-Branch: master Date: Thu, 10 Apr 2025 14:54:02 +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: 9b240367-d2e6-453c-8b07-bce34dd6986b X-Archives-Hash: d4de94116c7dc7f07ac11fb57db0e6ea commit: 57dc33daea08f8ec4d24c0e442620e24515599d1 Author: Thibaud CANALE thican net> AuthorDate: Thu Apr 10 14:10:28 2025 +0000 Commit: Sam James gentoo org> CommitDate: Thu Apr 10 14:53:32 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57dc33da app-crypt/certbot: fix test for 4.0.0 Bug: https://bugs.gentoo.org/953447 Signed-off-by: Thibaud CANALE thican.net> Closes: https://github.com/gentoo/gentoo/pull/41525 Signed-off-by: Sam James gentoo.org> app-crypt/certbot/{certbot-4.0.0.ebuild => certbot-4.0.0-r1.ebuild} | 5 +++-- app-crypt/certbot/certbot-9999.ebuild | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/app-crypt/certbot/certbot-4.0.0.ebuild b/app-crypt/certbot/certbot-4.0.0-r1.ebuild similarity index 97% rename from app-crypt/certbot/certbot-4.0.0.ebuild rename to app-crypt/certbot/certbot-4.0.0-r1.ebuild index 4cf65c67fa57..83fd24c753d4 100644 --- a/app-crypt/certbot/certbot-4.0.0.ebuild +++ b/app-crypt/certbot/certbot-4.0.0-r1.ebuild @@ -182,6 +182,7 @@ python_compile() { python_test() { local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 - # Argument required to change pytest rootdir. - epytest "${BUILD_DIR}" + # Change for pytest rootdir is required. + cd "${BUILD_DIR}/install$(python_get_sitedir)" || die + epytest } diff --git a/app-crypt/certbot/certbot-9999.ebuild b/app-crypt/certbot/certbot-9999.ebuild index 4cf65c67fa57..83fd24c753d4 100644 --- a/app-crypt/certbot/certbot-9999.ebuild +++ b/app-crypt/certbot/certbot-9999.ebuild @@ -182,6 +182,7 @@ python_compile() { python_test() { local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 - # Argument required to change pytest rootdir. - epytest "${BUILD_DIR}" + # Change for pytest rootdir is required. + cd "${BUILD_DIR}/install$(python_get_sitedir)" || die + epytest }