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 86EBA158287 for ; Sat, 17 May 2025 13:12:26 +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 6BE2E343078 for ; Sat, 17 May 2025 13:12:26 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 8A6D4110105; Sat, 17 May 2025 13:12:24 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 7F420110105 for ; Sat, 17 May 2025 13:12:24 +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 29305342FDF for ; Sat, 17 May 2025 13:12:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8B19417F6 for ; Sat, 17 May 2025 13:12:22 +0000 (UTC) From: "Matthew Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Thode" Message-ID: <1747487529.c0b16a1ad4702072e9fefa283669ff18f8d079db.prometheanfire@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-r2.ebuild app-crypt/certbot/certbot-9999.ebuild X-VCS-Directories: app-crypt/certbot/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matthew Thode X-VCS-Revision: c0b16a1ad4702072e9fefa283669ff18f8d079db X-VCS-Branch: master Date: Sat, 17 May 2025 13:12:22 +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: 1b691d21-a621-4572-9471-96f3d4ae019d X-Archives-Hash: 366491bbe339de5af2329498cd2e1083 commit: c0b16a1ad4702072e9fefa283669ff18f8d079db Author: Thibaud CANALE thican net> AuthorDate: Sat May 17 11:43:25 2025 +0000 Commit: Matthew Thode gentoo org> CommitDate: Sat May 17 13:12:09 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0b16a1a app-crypt/certbot: ignore test for unsupported 64-bit time_t systems Closes: https://bugs.gentoo.org/955713 Signed-off-by: Thibaud CANALE thican.net> Part-of: https://github.com/gentoo/gentoo/pull/42130 Closes: https://github.com/gentoo/gentoo/pull/42130 Signed-off-by: Matthew Thode gentoo.org> app-crypt/certbot/certbot-4.0.0-r2.ebuild | 7 ++++++- app-crypt/certbot/certbot-9999.ebuild | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/app-crypt/certbot/certbot-4.0.0-r2.ebuild b/app-crypt/certbot/certbot-4.0.0-r2.ebuild index 525841a56c94..4630be7298c9 100644 --- a/app-crypt/certbot/certbot-4.0.0-r2.ebuild +++ b/app-crypt/certbot/certbot-4.0.0-r2.ebuild @@ -6,7 +6,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{10..13} ) -inherit distutils-r1 +inherit distutils-r1 toolchain-funcs if [[ "${PV}" == *9999 ]]; then inherit git-r3 @@ -220,6 +220,11 @@ python_compile_all() { python_test() { local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + + tc-has-64bit-time_t || EPYTEST_DESELECT+=( + 'certbot/_internal/tests/storage_test.py::RenewableCertTests::test_time_interval_judgments' + ) + # 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 ec56e3cf949b..06a59d8718f1 100644 --- a/app-crypt/certbot/certbot-9999.ebuild +++ b/app-crypt/certbot/certbot-9999.ebuild @@ -6,7 +6,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{10..13} ) -inherit distutils-r1 +inherit distutils-r1 toolchain-funcs if [[ "${PV}" == *9999 ]]; then inherit git-r3 @@ -220,6 +220,11 @@ python_compile_all() { python_test() { local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + + tc-has-64bit-time_t || EPYTEST_DESELECT+=( + 'certbot/_internal/tests/storage_test.py::RenewableCertTests::test_time_interval_judgments' + ) + # Change for pytest rootdir is required. cd "${BUILD_DIR}/install$(python_get_sitedir)" || die epytest