sec-keys/openpgp-keys-canonical: new package, add 20190401

Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/32609
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
This commit is contained in:
Brahmajit Das
2023-09-07 11:28:04 +05:30
committed by Joonas Niilola
parent 86de2665af
commit 2253a7f3aa
3 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST 15754614.asc 4051 BLAKE2B 693a1386bc94cd037657b5c1e44a5b10665a2481aa71f9d657c5fe09cdfc8d367ebdbfe527c04e327ac0fee00d4bd8701c9c6d09efab2f6b0ccd4fc4df34a9e2 SHA512 15a40cc728701bf22c28dd4832a3cbc67addcf516a1875c900bbfad29b8cbff53d27cbb0acd5b15e5daac761821762521a6b582c952f87a00733821a1e348442

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>juippis@gentoo.org</email>
<name>Joonas Niilola</name>
</maintainer>
<maintainer type="project">
<email>virtualization@gentoo.org</email>
<name>Gentoo Virtualization Project</name>
</maintainer>
<maintainer type="person" proxied="yes">
<email>brahmajit.xyz@gmail.com</email>
<name>Brahmajit Das</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,19 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="OpenPGP keys used to sign LXD-related packages"
HOMEPAGE="https://ubuntu.com/lxd"
SRC_URI="https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xed1ca1e7a6f80e22e5cb2da84ace106615754614 -> 15754614.asc"
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 - canonical.asc < <(cat "${files[@]/#/${DISTDIR}/}" || die)
}