sec-keys/openpgp-keys-openldap: new package, add 20201216

Signed-off-by: Z. Liu <zhixu.liu@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Z. Liu
2024-12-29 17:40:54 +08:00
committed by Sam James
parent ff458e121b
commit b0048b5a7a
3 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST openldap-20201216.asc 3485 BLAKE2B 4b3140b02a581b11cc26a5696147078c9f37bcf506fc276c75f96d39af1fb71a85f1369393928ff588f2ea48e5eb99d6f596875b6f8be667837f573f7c510734 SHA512 526c080e5c13b8d3ad1bb571a57d7fe8028eb5ce32f1f4cbedb3f13d0bf4945597928d992a7f1e6bb4c73e49fa309868b0916b0336751bba762c05724880238b

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" proxied="yes">
<email>zhixu.liu@gmail.com</email>
<name>Z. Liu</name>
</maintainer>
<maintainer type="project" proxied="proxy">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
<stabilize-allarches/>
</pkgmetadata>

View File

@@ -0,0 +1,20 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="OpenPGP keys used by OpenLDAP Project"
HOMEPAGE="https://openldap.org/software/download/OpenLDAP/gpg-pubkey.txt"
SRC_URI="https://openldap.org/software/download/OpenLDAP/gpg-pubkey.txt -> openldap-${PV}.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 - openldap.asc < <(cat "${files[@]/#/${DISTDIR}/}" || die)
}