diff options
author | Sam James <sam@gentoo.org> | 2022-04-28 01:30:56 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-04-28 01:46:36 +0100 |
commit | 4edf9686e9577a61b523514ed77286f50871597e (patch) | |
tree | 0aeae6862639e2d088a49bd9e4af43a11d4a2621 /sec-keys/openpgp-keys-thomasdickey | |
parent | dev-python/jc: add 1.18.8 (diff) | |
download | gentoo-4edf9686e9577a61b523514ed77286f50871597e.tar.gz gentoo-4edf9686e9577a61b523514ed77286f50871597e.tar.bz2 gentoo-4edf9686e9577a61b523514ed77286f50871597e.zip |
sec-keys/openpgp-keys-thomasdickey: new package, add 20220428
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sec-keys/openpgp-keys-thomasdickey')
3 files changed, 28 insertions, 0 deletions
diff --git a/sec-keys/openpgp-keys-thomasdickey/Manifest b/sec-keys/openpgp-keys-thomasdickey/Manifest new file mode 100644 index 000000000000..d5c051e18dac --- /dev/null +++ b/sec-keys/openpgp-keys-thomasdickey/Manifest @@ -0,0 +1 @@ +DIST openpgp-keys-thomasdickey-20220428-dickey@invisible-island.net-rsa3072.asc 2505 BLAKE2B 1798b3fac119911e2eb714b6a90c12b0579344378355fa79965713749057bc83a50820d06019fa735b8aae05982ea3f3c259d72eae3c734ea470514b6d8bd1d1 SHA512 19e19d3844b82d956ed01fc553bfbfcbd80f41a0ed2d51a2d0a6b9d2d5eede9482c9dba792f540c5cc386b8bf5d4a4a8da831edc42a2e50465fa42a3224b55af diff --git a/sec-keys/openpgp-keys-thomasdickey/metadata.xml b/sec-keys/openpgp-keys-thomasdickey/metadata.xml new file mode 100644 index 000000000000..b0d83aa2e489 --- /dev/null +++ b/sec-keys/openpgp-keys-thomasdickey/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>base-system@gentoo.org</email> + <name>Gentoo Base System</name> + </maintainer> +</pkgmetadata> diff --git a/sec-keys/openpgp-keys-thomasdickey/openpgp-keys-thomasdickey-20220428.ebuild b/sec-keys/openpgp-keys-thomasdickey/openpgp-keys-thomasdickey-20220428.ebuild new file mode 100644 index 000000000000..40cd6b37f327 --- /dev/null +++ b/sec-keys/openpgp-keys-thomasdickey/openpgp-keys-thomasdickey-20220428.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="OpenPGP keys used by Thomas Dickey" +HOMEPAGE="https://invisible-island.net/public/public.html" +SRC_URI="https://invisible-island.net/public/dickey@invisible-island.net-rsa3072.asc -> ${P}-dickey@invisible-island.net-rsa3072.asc" +S="${WORKDIR}" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" + +src_install() { + local files=( ${A} ) + insinto /usr/share/openpgp-keys + newins - thomasdickey.asc < <(cat "${files[@]/#/${DISTDIR}/}" || die) +} |