sec-keys/openpgp-keys-andrewtridgell: new package, add 20250329

Key is from https://rsync.samba.org/download.html then fetched from
keyservers. The one on https://www.samba.org/~tridge/ didn't work for me.

Bug: https://bugs.gentoo.org/948106
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2025-03-29 16:47:48 +00:00
parent 3204cc7ab8
commit 76dc17188d
3 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST openpgp-keys-andrewtridgell-20250329.asc 3139 BLAKE2B 76c68684814462fc280498633816c6c4b0bde9c7220f149b130031023b5889e4113d1b328d7aa5833e6330e18a61f99e0e9041d57fc5c2909afcec8560999e93 SHA512 79eb94958312080d043bf682dbba4cb67c2f6c77cf25ce0b59c596ff6e476b8bfaca2f6c85ef3e4e723b010531059628615137c0111138a08518948a8fb8a57e

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>
</maintainer>
<stabilize-allarches/>
</pkgmetadata>

View File

@@ -0,0 +1,21 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="OpenPGP keys used by Andrew Tridgell"
HOMEPAGE="https://www.samba.org/~tridge/"
SRC_URI="
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}.asc
"
S=${WORKDIR}
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
src_install() {
local files=( ${A} )
insinto /usr/share/openpgp-keys
newins - andrewtridgell.asc < <(cat "${files[@]/#/${DISTDIR}/}" || die)
}