mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
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@thican.net> Signed-off-by: Sam James <sam@gentoo.org>
28 lines
694 B
Bash
28 lines
694 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
||
# Distributed under the terms of the GNU General Public License v2
|
||
|
||
EAPI=8
|
||
|
||
DESCRIPTION="Apache plugin for Certbot (Let’s Encrypt client)"
|
||
HOMEPAGE="
|
||
https://github.com/certbot/certbot
|
||
https://pypi.org/project/certbot-apache/
|
||
https://letsencrypt.org/
|
||
"
|
||
|
||
LICENSE="metapackage"
|
||
SLOT="0"
|
||
|
||
# Meta package for transition
|
||
# No need to upgrade thanks to ">="
|
||
RDEPEND="
|
||
>=app-crypt/certbot-9999[certbot-apache]
|
||
"
|
||
|
||
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-apache] for this module."
|
||
}
|