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

Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
This commit is contained in:
Takuya Wakazono
2024-12-03 21:42:18 +09:00
parent 6c3e637039
commit 508c031470
2 changed files with 27 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST distribution-gpg-keys-1.105-1.tar.gz 67292024 BLAKE2B 2ff487b651222aa7470b143e9b8a90f5dba8488e2475b0ffaf1b90dc1c6fd1de95759d286aa4c47bf2a0cee6d3ebb010299163ad8f629443cd466fc94ff87e23 SHA512 5ac631cd4e60919f7d164c53ecb930b548090239ebdd8c431a7350cf1448b27ddadd4449f023a40ce81b21b058330806bc8dd2a4b31d340b90779f44c83b0d4c
DIST distribution-gpg-keys-1.106-1.tar.gz 75279538 BLAKE2B e963ce5ce7be62448bc7905172e2f81bedae3d8e3b9bc2256f81da02c28e3416e9bb21cad62391a693d6e823f3428b35caac87793d82dd8aa05f99d21227c1be SHA512 c883e3ecbc8c023808490b3eedba164eaa10a4bf4fa0dcdb1cfb6fb3e0c295b771258923f20a6d2bb078448e696d62328e87fabcd84840aeb1b41119ebe798f5

View File

@@ -0,0 +1,26 @@
# Copyright 2023-2024 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 -rf keys/copr || die
}
src_install() {
insinto "/usr/share/${PN}"
doins -r keys/*
}