sec-keys/openpgp-keys-apache-poi: new package, add 20230921

Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Closes: d4d7e7473d
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
This commit is contained in:
Volkmar W. Pogatzki
2023-10-24 20:30:03 +02:00
committed by Miroslav Šulc
parent dc1d0ba5d6
commit ab95447f46
3 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST openpgp-keys-apache-poi-20230921-KEYS.asc 167947 BLAKE2B faecd737de9c8659a41d08e30df1d5534cc3588e0e5b120b47d344a4cd80d14e6c1537352cafcea569ad03b75e2ec28e17fe60b97487343f4b57717aa91dce82 SHA512 92f0100b155f64a23f430ecb09cec48f94000615723f43c01dca275948e8ac5164e9f4b5da3dae119f7516da8b53012b8d6681497890638deba7b764645767db

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,19 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="OpenPGP keys used by poi.apache.org"
HOMEPAGE="https://poi.apache.org/download.html"
SRC_URI="https://downloads.apache.org/poi/KEYS -> ${P}-KEYS.asc"
S="${WORKDIR}"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 ~arm arm64 ppc64 x86"
src_install() {
local files=( ${A} )
insinto /usr/share/openpgp-keys
newins - poi.apache.org.asc < <(cat "${files[@]/#/${DISTDIR}/}" || die)
}