summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2025-10-23 16:30:48 +0200
committerMichał Górny <mgorny@gentoo.org>2025-10-28 06:50:44 +0100
commit2e0b100ae772b9d0e58641d24f2be636cf751bcb (patch)
treee740891bdec8436f331feca73f4097dc81083637 /eclass
parent1458feed8dd7425b5896331bb15ace18ebb63951 (diff)
downloadgentoo-2e0b100ae772b9d0e58641d24f2be636cf751bcb.tar.gz
gentoo-2e0b100ae772b9d0e58641d24f2be636cf751bcb.tar.bz2
gentoo-2e0b100ae772b9d0e58641d24f2be636cf751bcb.zip
verify-sig.eclass: Use app-alternatives/gpg
Signed-off-by: Michał Górny <mgorny@gentoo.org> Part-of: https://github.com/gentoo/gentoo/pull/44224 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r--eclass/verify-sig.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/verify-sig.eclass b/eclass/verify-sig.eclass
index 4e38d327b838..27f3b350e2cd 100644
--- a/eclass/verify-sig.eclass
+++ b/eclass/verify-sig.eclass
@@ -58,7 +58,7 @@ IUSE="verify-sig"
# Signature verification method to use. The allowed value are:
#
# - minisig -- verify signatures with (base64) Ed25519 public key using app-crypt/minisign
-# - openpgp -- verify PGP signatures using app-crypt/gnupg (the default)
+# - openpgp -- verify PGP signatures using app-alternatives/gpg (the default)
# - sigstore -- verify signatures using dev-python/sigstore
# - signify -- verify signatures with Ed25519 public key using app-crypt/signify
: "${VERIFY_SIG_METHOD:=openpgp}"
@@ -70,7 +70,7 @@ case ${VERIFY_SIG_METHOD} in
openpgp)
BDEPEND="
verify-sig? (
- app-crypt/gnupg
+ app-alternatives/gpg
>=app-portage/gemato-20
)
"