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 6496F1581C1 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 CB05E2BC159; 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 B4CCB2BC159 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 EE3A5340B57 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 36AA51DF7 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: <1720812374.4b369e0d3fcdb8b79cd9adcda41a26786f40ca6d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/acme/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/acme/acme-2.10.0.ebuild app-crypt/acme/acme-9999.ebuild X-VCS-Directories: app-crypt/acme/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4b369e0d3fcdb8b79cd9adcda41a26786f40ca6d 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: d30a1e5f-32fb-4377-a2be-cb4498399235 X-Archives-Hash: dd68b71ac1baf1e3950861a0497f4bab commit: 4b369e0d3fcdb8b79cd9adcda41a26786f40ca6d Author: Michał Górny gentoo org> AuthorDate: Fri Jul 12 19:03:31 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jul 12 19:26:14 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b369e0d app-crypt/acme: Enable py3.13 Signed-off-by: Michał Górny gentoo.org> app-crypt/acme/acme-2.10.0.ebuild | 12 ++++++++---- app-crypt/acme/acme-9999.ebuild | 12 ++++++++---- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/app-crypt/acme/acme-2.10.0.ebuild b/app-crypt/acme/acme-2.10.0.ebuild index c4eb5dcd71c8..8c850f30473b 100644 --- a/app-crypt/acme/acme-2.10.0.ebuild +++ b/app-crypt/acme/acme-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 @@ -37,8 +37,6 @@ SLOT="0" BDEPEND=" test? ( - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/pytest-xdist[${PYTHON_USEDEP}] dev-python/typing-extensions[${PYTHON_USEDEP}] ) " @@ -55,5 +53,11 @@ RDEPEND=" >=dev-python/requests-toolbelt-0.3.0[${PYTHON_USEDEP}] " -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/acme/acme-9999.ebuild b/app-crypt/acme/acme-9999.ebuild index 1bdc2aa52244..6df08330928b 100644 --- a/app-crypt/acme/acme-9999.ebuild +++ b/app-crypt/acme/acme-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 @@ -37,8 +37,6 @@ SLOT="0" BDEPEND=" test? ( - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/pytest-xdist[${PYTHON_USEDEP}] dev-python/typing-extensions[${PYTHON_USEDEP}] ) " @@ -55,5 +53,11 @@ RDEPEND=" >=dev-python/requests-toolbelt-0.3.0[${PYTHON_USEDEP}] " -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 +}