dev-util/distribution-gpg-keys: add 1.116

Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
This commit is contained in:
Takuya Wakazono
2026-01-29 21:33:36 +09:00
parent a2b496f6c5
commit e66e301085
2 changed files with 27 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST distribution-gpg-keys-1.115-1.tar.gz 100838030 BLAKE2B 1d12b6d086a3219a6ec3c339ef013c26755f3f4a286fcf98a7cabf298abda1ef0f666c73644f20d269c060c16cdb247e789823c02944fa83e9dd588156ea4add SHA512 f77f98548197fd10a57ddb7fc0af0281b5e0a98865279358b7849930f195e3757de90f06dad189b67de3a15c3cf2e47119ba8926beabf2b97aae96131a890156
DIST distribution-gpg-keys-1.116-1.tar.gz 100888045 BLAKE2B d65082bc9a52e753eb6b5aa51e4976aad76f257764f218e5b1438a37631d04e6f05382a6229c48f7ee1bb0cc6ea2c5ab13bd218344d3602a93f545f11dc9b56a SHA512 56b12cab85a5e8a6f7fc376392eb2c2891e88f969c06eab846cce686c0b0b821abdbddb8101f96f1ae3950d487716b819fca7c6862ef3bb024849f520952a9c9

View File

@@ -0,0 +1,26 @@
# Copyright 2023-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_P="${P}-1"
DESCRIPTION="Collection of GPG keys used in Linux Distributions"
HOMEPAGE="https://github.com/rpm-software-management/distribution-gpg-keys"
SRC_URI="https://github.com/rpm-software-management/distribution-gpg-keys/archive/${MY_P}.tar.gz"
S="${WORKDIR}/${PN}-${MY_P}"
LICENSE="CC0-1.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE="copr"
src_prepare() {
default
use copr || rm -r keys/copr || die
}
src_install() {
insinto "/usr/share/${PN}"
doins -r keys/*
}