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 8E8661582EF for ; Tue, 11 Mar 2025 13:31:52 +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 7A27A343146 for ; Tue, 11 Mar 2025 13:31:52 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id C6D991103C7; Tue, 11 Mar 2025 13:31:48 +0000 (UTC) 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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id B88BF1103C7 for ; Tue, 11 Mar 2025 13:31:48 +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 4C27D343138 for ; Tue, 11 Mar 2025 13:31:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A2C8728D4 for ; Tue, 11 Mar 2025 13:31:46 +0000 (UTC) From: "Thibaud CANALE" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thibaud CANALE" Message-ID: <1741699840.06b267b5d8f28fc3ddc8275a8bd799773ed0864b.thican@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-crypt/certbot-dns-rfc2136/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-3.2.0-r100.ebuild X-VCS-Directories: app-crypt/certbot-dns-rfc2136/ X-VCS-Committer: thican X-VCS-Committer-Name: Thibaud CANALE X-VCS-Revision: 06b267b5d8f28fc3ddc8275a8bd799773ed0864b X-VCS-Branch: dev Date: Tue, 11 Mar 2025 13:31:46 +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: 883117d8-6446-438b-b639-0a8b73e8e38b X-Archives-Hash: 9a500021f560917ac5219fdb567f0f3b commit: 06b267b5d8f28fc3ddc8275a8bd799773ed0864b Author: Thibaud CANALE thican net> AuthorDate: Tue Mar 11 13:26:35 2025 +0000 Commit: Thibaud CANALE thican net> CommitDate: Tue Mar 11 13:30:40 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=06b267b5 app-crypt/certbot-dns-rfc2136: 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> .../certbot-dns-rfc2136-3.2.0-r100.ebuild | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-3.2.0-r100.ebuild b/app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-3.2.0-r100.ebuild new file mode 100644 index 000000000..372aa0938 --- /dev/null +++ b/app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-3.2.0-r100.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="RFC 2136 DNS Authenticator plugin for Certbot (Let’s Encrypt Client)" +HOMEPAGE=" + https://github.com/certbot/certbot + https://pypi.org/project/certbot-dns-rfc2136/ + https://certbot-dns-rfc2136.readthedocs.io/en/stable/ + https://letsencrypt.org/ +" + +LICENSE="metapackage" +SLOT="0" + +KEYWORDS="~amd64 ~arm64 ~riscv" + +# Meta package for transition +# No need to upgrade thanks to ">=" +RDEPEND=" + >=app-crypt/certbot-${PV}-r100[certbot-dns-rfc2136] +" + +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-rfc2136] for this module." +}