mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08: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>
53 lines
1.6 KiB
Bash
53 lines
1.6 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="OpenPGP keys used to sign GNU libmicrohttpd releases"
|
|
HOMEPAGE="https://savannah.gnu.org/projects/libmicrohttpd/"
|
|
if [[ ${PV} == 9999* ]] ; then
|
|
PROPERTIES="live"
|
|
|
|
BDEPEND="|| ( net-misc/wget[gnutls] net-misc/wget[ssl] )"
|
|
else
|
|
KARLSON2K_ID='EA812DBEFA5A7EF17DA8F2C1460A317C3326D2AE'
|
|
CHRISTIAN_ID='D8423BCB326C7907033929C7939E6BE1E29FC3CC'
|
|
# Technically public keys are not stable.
|
|
# While the fingerprint is stable, the contents of the key can be
|
|
# changed at any time by an additional user ID (email address),
|
|
# an additional signature or updated date of expiration.
|
|
SRC_URI="https://keys.openpgp.org/vks/v1/by-fingerprint/${CHRISTIAN_ID} -> christiangrothoff-${CHRISTIAN_ID}.asc
|
|
https://keys.openpgp.org/vks/v1/by-fingerprint/${KARLSON2K_ID} -> karlson2k-${KARLSON2K_ID}.asc"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
|
|
fi
|
|
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE="public-domain"
|
|
SLOT="${PV}"
|
|
|
|
src_unpack() {
|
|
if [[ ${PV} == 9999* ]] ; then
|
|
# The release keyring can be changed at any moment and should always match the latest release
|
|
wget 'https://savannah.gnu.org/project/release-gpgkeys.php?group=libmicrohttpd&download=1' -O libmicrohttpd-keyring.gpg || die
|
|
else
|
|
default
|
|
fi
|
|
}
|
|
|
|
src_install() {
|
|
local files
|
|
local key_file
|
|
|
|
if [[ ${PV} == 9999* ]] ; then
|
|
files=( "${WORKDIR}/libmicrohttpd-keyring.gpg" )
|
|
else
|
|
for key_file in ${A} ; do
|
|
files+=( "${DISTDIR}/${key_file}" )
|
|
done
|
|
fi
|
|
|
|
insinto /usr/share/openpgp-keys
|
|
newins - libmicrohttpd-${PV}.asc < <(cat "${files[@]}" || die)
|
|
}
|