sec-keys/openpgp-keys-danielkiper: new package, add 20230215

Used for GNU GRUB releases.

Signed-off-by: Oskari Pirhonen <xxc3ncoredxx@gmail.com>
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
This commit is contained in:
Oskari Pirhonen
2023-07-29 17:41:42 -05:00
committed by Mike Gilbert
parent 5fe9b7a2fc
commit 0aba6c65f2
3 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST openpgp-keys-danielkiper-20230215.gpg 5259 BLAKE2B 8cbfb4a2141e37c23d556c52c15628bd7785c3ae863becf1f8f5fca2f15ae02134564fd047542adcb9e5d757e4d0b7362640f16c97e0082c226002d6536d0db4 SHA512 d5538c67f3bba883d3070e201243e4fd327800e20ca90b37ada6c416e83b6ff2f2a461de4205818ffb09d9f8e19c85379da21b0f28a30e085f3be39066144741

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>floppym@gentoo.org</email>
<name>Mike Gilbert</name>
</maintainer>
<maintainer type="project">
<email>base-system@gentoo.org</email>
<name>Gentoo Base System</name>
</maintainer>
<stabilize-allarches/>
</pkgmetadata>

View File

@@ -0,0 +1,26 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="OpenPGP keys used by Daniel Kiper"
# I can't find a home page for him, so I'm just gonna put GRUB's since that's
# currently his baby.
# - xxc3nsoredxx
HOMEPAGE="https://www.gnu.org/software/grub/"
SRC_URI="
https://openpgpkey.net-space.pl/.well-known/openpgpkey/net-space.pl/hu/9b7hhehhfsjjw6h7bfzdesyjrhqhwgaq?l=dkiper
-> ${P}.gpg
"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
S=${WORKDIR}
src_install() {
local files=( ${A} )
insinto /usr/share/openpgp-keys
newins - dkiper.gpg < <(cat "${files[@]/#/${DISTDIR}/}")
}