From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3C99F15800A for ; Mon, 7 Aug 2023 03:01:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 751312BC025; Mon, 7 Aug 2023 03:01:23 +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 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5BC002BC025 for ; Mon, 7 Aug 2023 03:01:23 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 90EF7340CD7 for ; Mon, 7 Aug 2023 03:01:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BF835F25 for ; Mon, 7 Aug 2023 03:01:19 +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: <1691377276.5abc2cc2f9838d89fd29c31a996ca92f60fdfdf2.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: 5abc2cc2f9838d89fd29c31a996ca92f60fdfdf2 X-VCS-Branch: master Date: Mon, 7 Aug 2023 03:01:19 +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: 7d904340-d07a-4d97-acfa-8e61cb42aaea X-Archives-Hash: 22a7a9c327efe5868c4a257ef760556f commit: 5abc2cc2f9838d89fd29c31a996ca92f60fdfdf2 Author: Oskari Pirhonen gmail com> AuthorDate: Sun Jul 30 20:35:59 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Aug 7 03:01:16 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5abc2cc2 verify-sig.eclass: replace app-crypt with sec-keys Update the description and example to use the new sec-keys/ category instead of the old app-crypt/ for openpgp-keys-* packages. Signed-off-by: Oskari Pirhonen gmail.com> Closes: https://github.com/gentoo/gentoo/pull/32111 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 6472e995e827..d99dc3461858 100644 --- a/eclass/verify-sig.eclass +++ b/eclass/verify-sig.eclass @@ -16,7 +16,7 @@ # the developer's work. # # To use the eclass, start by packaging the upstream's key -# as app-crypt/openpgp-keys-*. Then inherit the eclass, add detached +# as sec-keys/openpgp-keys-*. Then inherit the eclass, add detached # signatures to SRC_URI and set VERIFY_SIG_OPENPGP_KEY_PATH. The eclass # provides verify-sig USE flag to toggle the verification. # @@ -35,7 +35,7 @@ # SRC_URI="https://example.org/${P}.tar.gz # verify-sig? ( https://example.org/${P}.tar.gz.sig )" # BDEPEND=" -# verify-sig? ( app-crypt/openpgp-keys-example )" +# verify-sig? ( sec-keys/openpgp-keys-example )" # # VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/example.asc # @CODE