sec-keys/openpgp-keys-freenet: new package, add 20230419

Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Volkmar W. Pogatzki 2023-04-19 11:49:01 +02:00 committed by Sam James
parent b72511e723
commit 39579985ee
No known key found for this signature in database
GPG Key ID: 738409F520DF9190
3 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1 @@
DIST openpgp-keys-freenet-20230419-keyring.gpg 148560 BLAKE2B 9d2255021c5a3549198d0ed67578f520b2caea8089a4e065300505bbc9d7d825b18b710e3fe6b7995c1e0ee3e6a8c4ba7338ef0b560f2aaeb2e5b4e25e37d958 SHA512 5ca38be9780e799b7e5995e148bd67f4ca821242854492bb60e6c616d20dd2b61d4de597327d2de1570fc0663dec94caa8769ce9a8df1bb82c5cb859c91457f2

View File

@ -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>java@gentoo.org</email>
<name>Java</name>
</maintainer>
</pkgmetadata>

View File

@ -0,0 +1,20 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="OpenPGP keys used by freenetproject.org"
HOMEPAGE="https://freenetproject.org/pages/download.html"
SRC_URI="https://freenetproject.org/assets/keyring.gpg -> ${P}-keyring.gpg"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 ~x86"
S="${WORKDIR}"
src_install() {
local files=( ${A} )
insinto /usr/share/openpgp-keys
newins - freenetproject.org.asc < <(cat "${files[@]/#/${DISTDIR}/}" || die)
}