Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/make/
Date: Thu, 07 Apr 2022 03:58:07
Message-Id: 1649303843.7680e4a4a27eed792844a53761195e991473ecf7.sam@gentoo
1 commit: 7680e4a4a27eed792844a53761195e991473ecf7
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 7 03:51:59 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 7 03:57:23 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7680e4a4
7
8 sys-devel/make: add verify-sig
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 sys-devel/make/Manifest | 1 +
13 sys-devel/make/make-4.3.ebuild | 11 ++++++++---
14 2 files changed, 9 insertions(+), 3 deletions(-)
15
16 diff --git a/sys-devel/make/Manifest b/sys-devel/make/Manifest
17 index 34d9f6842b0f..f9cbb5a172f0 100644
18 --- a/sys-devel/make/Manifest
19 +++ b/sys-devel/make/Manifest
20 @@ -1 +1,2 @@
21 DIST make-4.3.tar.gz 2317073 BLAKE2B 5a82ce1f30eb034366ac3b87d2ec6698aae17d7b1a611941cf42136b2453b34236ab55382eab0a593c43cee8b036ba4a054f966c41ba766fdbd2862942be5dff SHA512 9a1185cc468368f4ec06478b1cfa343bf90b5cd7c92c0536567db0315b0ee909af53ecce3d44cfd93dd137dbca1ed13af5713e8663590c4fdd21ea635d78496b
22 +DIST make-4.3.tar.gz.sig 566 BLAKE2B 75bf71602e60f97ec8efa81676329047746d960257ef310b89a059144c00628b6a1ddf7a16a2ac2c3e935b8591475f5043a7c7546668ab39abbc4717c75a6528 SHA512 bf13e2943593b153457c8111179e8ae11cef2d9185a986106a1e70946a260bd930505a5e10002c5a60888e11affc07713c367b8680fd511ad87b2e124d303a99
23
24 diff --git a/sys-devel/make/make-4.3.ebuild b/sys-devel/make/make-4.3.ebuild
25 index bd0a3434e14e..e8c5f2009dca 100644
26 --- a/sys-devel/make/make-4.3.ebuild
27 +++ b/sys-devel/make/make-4.3.ebuild
28 @@ -1,24 +1,29 @@
29 -# Copyright 1999-2021 Gentoo Authors
30 +# Copyright 1999-2022 Gentoo Authors
31 # Distributed under the terms of the GNU General Public License v2
32
33 EAPI=7
34
35 -inherit flag-o-matic
36 +VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/make.asc
37 +inherit flag-o-matic verify-sig
38
39 DESCRIPTION="Standard tool to compile source trees"
40 HOMEPAGE="https://www.gnu.org/software/make/make.html"
41 if [[ "$(ver_cut 3)" -ge 90 ]] ; then
42 SRC_URI="https://alpha.gnu.org/gnu//make/${P}.tar.gz"
43 + SRC_URI+=" verify-sig? ( https://alpha.gnu.org/gnu//make/${P}.tar.gz.sig )"
44 else
45 SRC_URI="mirror://gnu//make/${P}.tar.gz"
46 + SRC_URI+=" verify-sig? ( mirror://gnu//make/${P}.tar.gz.sig )"
47 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
48 fi
49 +
50 LICENSE="GPL-3+"
51 SLOT="0"
52 IUSE="guile nls static"
53
54 DEPEND="guile? ( >=dev-scheme/guile-1.8:= )"
55 -BDEPEND="nls? ( sys-devel/gettext )"
56 +BDEPEND="nls? ( sys-devel/gettext )
57 + verify-sig? ( sec-keys/openpgp-keys-make )"
58 RDEPEND="${DEPEND}
59 nls? ( virtual/libintl )"