blob: a06c93a26f9a2ad1fff083036eaa91f8d0c8dc9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# Copyright 1999-2024 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 ~ia64 ~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)
}
|