Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sec-keys/openpgp-keys-wget/
Date: Thu, 07 Apr 2022 04:07:48
Message-Id: 1649304452.1d53d8583332d7881e24172edd90c5d98552ba15.sam@gentoo
1 commit: 1d53d8583332d7881e24172edd90c5d98552ba15
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 7 04:05:23 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 7 04:07:32 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d53d858
7
8 sec-keys/openpgp-keys-wget: new package, add 20220407
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 sec-keys/openpgp-keys-wget/Manifest | 1 +
13 sec-keys/openpgp-keys-wget/metadata.xml | 8 ++++++++
14 .../openpgp-keys-wget-20220407.ebuild | 19 +++++++++++++++++++
15 3 files changed, 28 insertions(+)
16
17 diff --git a/sec-keys/openpgp-keys-wget/Manifest b/sec-keys/openpgp-keys-wget/Manifest
18 new file mode 100644
19 index 000000000000..f1db1a14f0a2
20 --- /dev/null
21 +++ b/sec-keys/openpgp-keys-wget/Manifest
22 @@ -0,0 +1 @@
23 +DIST openpgp-keys-wget-20220407.asc 72073 BLAKE2B e35ed2340caa7a3221cb7abd71a827aeedba4422108dc18e027a14402bed11015e5ff0a54776d6ce5ca913c93279e9b109b7bc8db9c448ad2124552a5f13c4b2 SHA512 9bde0be2d57e9fbb8e3174063386a277d17439e49834bcb4379a572a9c86fcca9cf8a8dd40ef50197281473469f51289b610dc99228624e439373b65a93e0d2f
24
25 diff --git a/sec-keys/openpgp-keys-wget/metadata.xml b/sec-keys/openpgp-keys-wget/metadata.xml
26 new file mode 100644
27 index 000000000000..b0d83aa2e489
28 --- /dev/null
29 +++ b/sec-keys/openpgp-keys-wget/metadata.xml
30 @@ -0,0 +1,8 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="project">
35 + <email>base-system@g.o</email>
36 + <name>Gentoo Base System</name>
37 + </maintainer>
38 +</pkgmetadata>
39
40 diff --git a/sec-keys/openpgp-keys-wget/openpgp-keys-wget-20220407.ebuild b/sec-keys/openpgp-keys-wget/openpgp-keys-wget-20220407.ebuild
41 new file mode 100644
42 index 000000000000..a9389cc15a08
43 --- /dev/null
44 +++ b/sec-keys/openpgp-keys-wget/openpgp-keys-wget-20220407.ebuild
45 @@ -0,0 +1,19 @@
46 +# Copyright 1999-2022 Gentoo Authors
47 +# Distributed under the terms of the GNU General Public License v2
48 +
49 +EAPI=7
50 +
51 +DESCRIPTION="OpenPGP keys used by GNU wget"
52 +HOMEPAGE="https://savannah.gnu.org/projects/wget/"
53 +SRC_URI="https://savannah.gnu.org/project/memberlist-gpgkeys.php?group=wget&download=1 -> ${P}.asc"
54 +S="${WORKDIR}"
55 +
56 +LICENSE="public-domain"
57 +SLOT="0"
58 +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
59 +
60 +src_install() {
61 + local files=( ${A} )
62 + insinto /usr/share/openpgp-keys
63 + newins - wget.asc < <(cat "${files[@]/#/${DISTDIR}/}" || die)
64 +}