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 358391581C1 for ; Fri, 12 Jul 2024 19:26:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2D5BB2BC15F; Fri, 12 Jul 2024 19:26:39 +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 0590F2BC15D for ; Fri, 12 Jul 2024 19:26:39 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4BB0D340B57 for ; Fri, 12 Jul 2024 19:26:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B2C111E1E 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: <1720812379.983b44ff57d50ad5762a91779fc2a19e783563fa.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/certbot-dns-dnsimple/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/certbot-dns-dnsimple/certbot-dns-dnsimple-2.10.0.ebuild X-VCS-Directories: app-crypt/certbot-dns-dnsimple/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 983b44ff57d50ad5762a91779fc2a19e783563fa 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: feda0d2d-d093-446c-9748-76b913319bac X-Archives-Hash: 3c8c3bc52ce25e6d604fc8001b252ed5 commit: 983b44ff57d50ad5762a91779fc2a19e783563fa Author: Michał Górny gentoo org> AuthorDate: Fri Jul 12 19:15:33 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jul 12 19:26:19 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=983b44ff app-crypt/certbot-dns-dnsimple: Enable py3.13 Signed-off-by: Michał Górny gentoo.org> .../certbot-dns-dnsimple-2.10.0.ebuild | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/app-crypt/certbot-dns-dnsimple/certbot-dns-dnsimple-2.10.0.ebuild b/app-crypt/certbot-dns-dnsimple/certbot-dns-dnsimple-2.10.0.ebuild index 49462ea339f0..3ccc8046224d 100644 --- a/app-crypt/certbot-dns-dnsimple/certbot-dns-dnsimple-2.10.0.ebuild +++ b/app-crypt/certbot-dns-dnsimple/certbot-dns-dnsimple-2.10.0.ebuild @@ -4,16 +4,22 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( python3_{10..13} ) inherit distutils-r1 +MY_P=certbot-${PV} DESCRIPTION="DNSimple Authenticator plugin for Certbot (Let's Encrypt Client)" -HOMEPAGE="https://github.com/certbot/certbot https://certbot-dns-dnsimple.readthedocs.io/en/stable/" +HOMEPAGE=" + https://github.com/certbot/certbot/ + https://certbot-dns-dnsimple.readthedocs.io/en/stable/ +" # Use common certbot tarball -SRC_URI="https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> certbot-${PV}.gh.tar.gz" - -S="${WORKDIR}/certbot-${PV}/${PN}" +SRC_URI=" + https://github.com/certbot/certbot/archive/v${PV}.tar.gz + -> ${MY_P}.gh.tar.gz +" +S=${WORKDIR}/${MY_P}/${PN} LICENSE="Apache-2.0" SLOT="0" @@ -25,5 +31,6 @@ RDEPEND=" >=dev-python/dns-lexicon-3.2.1[${PYTHON_USEDEP}] " -distutils_enable_sphinx docs dev-python/sphinx-rtd-theme +distutils_enable_sphinx docs \ + dev-python/sphinx-rtd-theme distutils_enable_tests pytest