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 1E62A1582EF for ; Tue, 04 Mar 2025 22:46:08 +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 09A7E34319A for ; Tue, 04 Mar 2025 22:46:08 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 528E41103AC; Tue, 04 Mar 2025 22:45:57 +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 46A5D1103AC for ; Tue, 04 Mar 2025 22:45:57 +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 F05A7342FE7 for ; Tue, 04 Mar 2025 22:45:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4B6162870 for ; Tue, 04 Mar 2025 22:45:54 +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: <1741128309.3901ed1b3b0d865f2c6b96fb224cab1f4bc0ed11.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/certbot-dns-nsone/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/certbot-dns-nsone/certbot-dns-nsone-3.2.0-r100.ebuild X-VCS-Directories: app-crypt/certbot-dns-nsone/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3901ed1b3b0d865f2c6b96fb224cab1f4bc0ed11 X-VCS-Branch: master Date: Tue, 04 Mar 2025 22:45:54 +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: 4799edae-e373-4a7d-81ec-d1575e646073 X-Archives-Hash: 462a359edf960073197e175cb315ec3d commit: 3901ed1b3b0d865f2c6b96fb224cab1f4bc0ed11 Author: Thibaud CANALE thican net> AuthorDate: Mon Mar 3 14:23:06 2025 +0000 Commit: Sam James gentoo org> CommitDate: Tue Mar 4 22:45:09 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3901ed1b app-crypt/certbot-dns-nsone: provide transition package The new merged app-crypt/certbot has blockers on all the old split modules like certbot-nginx, which leads to poor UX when users who have e.g. certbot-nginx in their world file now to try to upgrade. Add a dummy set of ebuilds for the old split modules to depend on the merged certbot with the right USE, which we can last-rite in a while. Signed-off-by: Thibaud CANALE thican.net> Signed-off-by: Sam James gentoo.org> .../certbot-dns-nsone-3.2.0-r100.ebuild | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/app-crypt/certbot-dns-nsone/certbot-dns-nsone-3.2.0-r100.ebuild b/app-crypt/certbot-dns-nsone/certbot-dns-nsone-3.2.0-r100.ebuild new file mode 100644 index 000000000000..c1d80c423c7d --- /dev/null +++ b/app-crypt/certbot-dns-nsone/certbot-dns-nsone-3.2.0-r100.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="NS1 DNS Authenticator plugin for Certbot (Let’s Encrypt Client)" +HOMEPAGE=" + https://github.com/certbot/certbot + https://pypi.org/project/certbot-dns-nsone/ + https://letsencrypt.org/ +" + +LICENSE="metapackage" +SLOT="0" + +KEYWORDS="~amd64 ~x86" + +# Meta package for transition +# No need to upgrade thanks to ">=" +RDEPEND=" + >=app-crypt/certbot-${PV}-r100[certbot-dns-nsone] +" + +pkg_postinst() { + elog "This is a meta-package to help in transition to single package " + elog "app-crypt/certbot." + elog "It is advice to simply deselect this package and to emerge " + elog "app-crypt/certbot[certbot-dns-nsone] for this module." +}