mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-19 08:29:37 +00:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
28 lines
784 B
Bash
28 lines
784 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Gentoo Authority Keys (GLEP 79)"
|
|
HOMEPAGE="https://www.gentoo.org/downloads/signatures/"
|
|
SRC_URI="
|
|
https://dev.gentoo.org/~mgorny/dist/openpgp-keys/gentoo-auth.asc.${PV}.gz
|
|
"
|
|
S=${WORKDIR}
|
|
|
|
LICENSE="public-domain"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
|
|
|
|
# Keys included:
|
|
# ABD00913019D6354BA1D9A132839FE0D796198B1
|
|
# 18F703D702B1B9591373148C55D3238EC050396E
|
|
# 2C13823B8237310FA213034930D132FF0FF50EEB
|
|
|
|
src_install() {
|
|
insinto /usr/share/openpgp-keys
|
|
newins "gentoo-auth.asc.${PV}" gentoo-auth.asc
|
|
newins - gentoo-auth-ownertrust.txt <<-EOF
|
|
ABD00913019D6354BA1D9A132839FE0D796198B1:6:
|
|
EOF
|
|
}
|