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 8A5FF15808B for ; Thu, 7 Apr 2022 03:58:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6315FE0AB4; Thu, 7 Apr 2022 03:58:03 +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 12C52E09E6 for ; Thu, 7 Apr 2022 03:58:03 +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 5CF443414FC for ; Thu, 7 Apr 2022 03:58:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8AA8639F for ; Thu, 7 Apr 2022 03:57:57 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1649303847.7ccde8c7f7393974463ab7f82e956920d6f57d68.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/patch/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/patch/Manifest sys-devel/patch/patch-2.7.6-r4.ebuild X-VCS-Directories: sys-devel/patch/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7ccde8c7f7393974463ab7f82e956920d6f57d68 X-VCS-Branch: master Date: Thu, 7 Apr 2022 03:57:57 +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: 212ba96c-c2b7-4cb6-993e-18e07728993b X-Archives-Hash: 23cd71bd6cc39c6eacab158c3d25d692 commit: 7ccde8c7f7393974463ab7f82e956920d6f57d68 Author: Sam James gentoo org> AuthorDate: Thu Apr 7 03:53:10 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Apr 7 03:57:27 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ccde8c7 sys-devel/patch: add verify-sig Signed-off-by: Sam James gentoo.org> sys-devel/patch/Manifest | 1 + sys-devel/patch/patch-2.7.6-r4.ebuild | 9 ++++++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/sys-devel/patch/Manifest b/sys-devel/patch/Manifest index 15f0b1675c72..612a9aae3b54 100644 --- a/sys-devel/patch/Manifest +++ b/sys-devel/patch/Manifest @@ -1 +1,2 @@ DIST patch-2.7.6.tar.xz 783756 BLAKE2B e3dd2d155a94c39cb60eafc26677e84de14c3a6d5814dff69de091ded52f21862490970254297795f2c42a0c3203f7e88a8f65bb66968f8dfd6e066bf53f2dfb SHA512 fcca87bdb67a88685a8a25597f9e015f5e60197b9a269fa350ae35a7991ed8da553939b4bbc7f7d3cfd863c67142af403b04165633acbce4339056a905e87fbd +DIST patch-2.7.6.tar.xz.sig 801 BLAKE2B 8f2decb10402ecf0208d05ea7cce3bae565d31ee2bb2a118367c117d25b158d8bd525cae654ec0c0e2c036cc8f47a331edc1bb10b100683ade64dfa3b651988b SHA512 1302a1110dcda4f3d83b5263415d72be55c46dae0efb1c123e9c346154e09def5657004bbe7249e2d014555349410e7a5217140dd8852331235f75bcc757351b diff --git a/sys-devel/patch/patch-2.7.6-r4.ebuild b/sys-devel/patch/patch-2.7.6-r4.ebuild index 30d831025c06..c753368a27ea 100644 --- a/sys-devel/patch/patch-2.7.6-r4.ebuild +++ b/sys-devel/patch/patch-2.7.6-r4.ebuild @@ -3,11 +3,13 @@ EAPI="7" -inherit flag-o-matic +VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/patch.asc +inherit flag-o-matic verify-sig DESCRIPTION="Utility to apply diffs to files" HOMEPAGE="https://www.gnu.org/software/patch/patch.html" SRC_URI="mirror://gnu/patch/${P}.tar.xz" +SRC_URI+=" verify-sig? ( mirror://gnu/patch/${P}.tar.xz.sig )" LICENSE="GPL-3+" SLOT="0" @@ -16,8 +18,9 @@ IUSE="static test xattr" RESTRICT="!test? ( test )" RDEPEND="xattr? ( sys-apps/attr )" -DEPEND="${RDEPEND} - test? ( sys-apps/ed )" +DEPEND="${RDEPEND}" +BDEPEND="test? ( sys-apps/ed ) + verify-sig? ( sec-keys/openpgp-keys-patch )" PATCHES=( "${FILESDIR}"/${P}-fix-test-suite.patch