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 B64AC158088 for ; Tue, 28 Oct 2025 05:51:41 +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) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id A194C3415EA for ; Tue, 28 Oct 2025 05:51:41 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id CB520110576; Tue, 28 Oct 2025 05:51:29 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id C5541110576 for ; Tue, 28 Oct 2025 05:51:29 +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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7F4AD3410D9 for ; Tue, 28 Oct 2025 05:51:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B36343AFC for ; Tue, 28 Oct 2025 05:51:26 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1761630644.2e0b100ae772b9d0e58641d24f2be636cf751bcb.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/verify-sig.eclass X-VCS-Directories: eclass/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2e0b100ae772b9d0e58641d24f2be636cf751bcb X-VCS-Branch: master Date: Tue, 28 Oct 2025 05:51:26 +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: 7c8e5916-2bd5-4e6c-8ae8-68b0bf7f4687 X-Archives-Hash: 3a13a34bc83e302e230c2c722f0fd9a7 commit: 2e0b100ae772b9d0e58641d24f2be636cf751bcb Author: Michał Górny gentoo org> AuthorDate: Thu Oct 23 14:30:48 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Oct 28 05:50:44 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e0b100a verify-sig.eclass: Use app-alternatives/gpg Signed-off-by: Michał Górny gentoo.org> Part-of: https://github.com/gentoo/gentoo/pull/44224 Signed-off-by: Michał Górny gentoo.org> eclass/verify-sig.eclass | 4 ++-- 1 file 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 ) "