blob: 3c44041c645bf6c24f3190d9279996bd6107ccb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Nginx plugin for Certbot (Let’s Encrypt client)"
HOMEPAGE="
https://github.com/certbot/certbot
https://pypi.org/project/certbot-nginx/
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-nginx]
"
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-nginx] for this module."
}
|