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 983561581C1 for ; Fri, 12 Jul 2024 19:26:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D45212BC15A; Fri, 12 Jul 2024 19:26:37 +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 BD5272BC15A for ; Fri, 12 Jul 2024 19:26:37 +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 ED3BC340A12 for ; Fri, 12 Jul 2024 19:26:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4BEDE1E14 for ; Fri, 12 Jul 2024 19:26:35 +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: <1720812375.2965c15400d008dc4445f7b9de3ae99cc5c12c41.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/certbot/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/certbot/certbot-2.10.0.ebuild app-crypt/certbot/certbot-9999.ebuild X-VCS-Directories: app-crypt/certbot/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2965c15400d008dc4445f7b9de3ae99cc5c12c41 X-VCS-Branch: master Date: Fri, 12 Jul 2024 19:26:35 +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: 97723749-f77d-46c9-92f9-c30ce1e74ab5 X-Archives-Hash: 0e0cf18b48437abf338de8d0e0192b39 commit: 2965c15400d008dc4445f7b9de3ae99cc5c12c41 Author: Michał Górny gentoo org> AuthorDate: Fri Jul 12 19:05:39 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jul 12 19:26:15 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2965c154 app-crypt/certbot: Enable py3.13 Signed-off-by: Michał Górny gentoo.org> app-crypt/certbot/certbot-2.10.0.ebuild | 13 ++++++++----- app-crypt/certbot/certbot-9999.ebuild | 13 ++++++++----- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/app-crypt/certbot/certbot-2.10.0.ebuild b/app-crypt/certbot/certbot-2.10.0.ebuild index 021ba0724501..9d6b94a1db1f 100644 --- a/app-crypt/certbot/certbot-2.10.0.ebuild +++ b/app-crypt/certbot/certbot-2.10.0.ebuild @@ -3,8 +3,8 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..12} ) DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..13} ) inherit distutils-r1 @@ -36,9 +36,6 @@ IUSE="selinux" BDEPEND=" test? ( - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/pytest-cov[${PYTHON_USEDEP}] - dev-python/pytest-xdist[${PYTHON_USEDEP}] dev-python/typing-extensions[${PYTHON_USEDEP}] ) " @@ -57,5 +54,11 @@ RDEPEND=" selinux? ( sec-policy/selinux-certbot ) " -distutils_enable_sphinx docs dev-python/sphinx-rtd-theme +distutils_enable_sphinx docs \ + dev-python/sphinx-rtd-theme distutils_enable_tests pytest + +python_test() { + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + epytest +} diff --git a/app-crypt/certbot/certbot-9999.ebuild b/app-crypt/certbot/certbot-9999.ebuild index 3f039135a22d..09fbd7e66ef7 100644 --- a/app-crypt/certbot/certbot-9999.ebuild +++ b/app-crypt/certbot/certbot-9999.ebuild @@ -3,8 +3,8 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..12} ) DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..13} ) inherit distutils-r1 @@ -36,9 +36,6 @@ IUSE="selinux" BDEPEND=" test? ( - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/pytest-cov[${PYTHON_USEDEP}] - dev-python/pytest-xdist[${PYTHON_USEDEP}] dev-python/typing-extensions[${PYTHON_USEDEP}] ) " @@ -57,5 +54,11 @@ RDEPEND=" selinux? ( sec-policy/selinux-certbot ) " -distutils_enable_sphinx docs dev-python/sphinx-rtd-theme +distutils_enable_sphinx docs \ + dev-python/sphinx-rtd-theme distutils_enable_tests pytest + +python_test() { + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + epytest +}