sec-keys/openpgp-keys-file: new package, add 20220611

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2022-06-11 02:47:44 +01:00
parent 7c8299d0ab
commit 45eaf5407d
3 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST openpgp-keys-file-20220611-BE04995BA8F90ED0C0C176C471112AB16CB33B3A.asc 2590 BLAKE2B 61296a3f1c626d4e579c74256bcdfd5b0a72f9c39770c97a37757b9633044a5253e7f4740cb1ed0f033730393758f5838f643f38dccdaae368235901ad0dba89 SHA512 cf5ef2be4d26fccb2b59d21aea57eb0f329661e6ed18d52b12b84ceba71994586db03292ff3cfbc70151d962db69cd5c8a62b0ff9485fc64745ff24ea7f315e9

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>base-system@gentoo.org</email>
<name>Gentoo Base System</name>
</maintainer>
</pkgmetadata>

View File

@@ -0,0 +1,20 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="OpenPGP keys used by Christos Zoulas (to sign file releases)"
# See e.g. https://github.com/file/file#gpg-for-dummies
HOMEPAGE="https://www.darwinsys.com/file/"
SRC_URI="https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-BE04995BA8F90ED0C0C176C471112AB16CB33B3A.asc"
S="${WORKDIR}"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
src_install() {
local files=( ${A} )
insinto /usr/share/openpgp-keys
newins - file.asc < <(cat "${files[@]/#/${DISTDIR}/}" || die)
}