Diff openpgp-keys-crypto++-20210416 with a openpgp-keys-crypto++-20260703
| /usr/portage/sec-keys/openpgp-keys-crypto++/openpgp-keys-crypto++-20260703.ebuild 2026-07-11 20:03:06.460335857 +0300 | ||
|---|---|---|
| 1 |
# Copyright 1999-2025 Gentoo Authors |
|
| 1 |
# Copyright 2026 Gentoo Authors |
|
| 2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 | 3 | |
| 4 |
EAPI=7 |
|
| 4 |
EAPI=8 |
|
| 5 | ||
| 6 |
SEC_KEYS_VALIDPGPKEYS=( |
|
| 7 |
'B8CC19802062211A508B2F5CCE0586AF1F8E37BD:noloader:ubuntu' |
|
| 8 |
) |
|
| 9 | ||
| 10 |
inherit sec-keys |
|
| 5 | 11 | |
| 6 | 12 |
DESCRIPTION="OpenPGP keys used to sign crypto++ releases" |
| 7 | 13 |
HOMEPAGE="https://cryptopp.com/signing.html" |
| 8 |
S="${WORKDIR}"
|
|
| 9 | 14 | |
| 10 |
LICENSE="public-domain" |
|
| 11 |
SLOT="0" |
|
| 12 | 15 |
KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" |
| 13 | ||
| 14 |
src_install() {
|
|
| 15 |
# Note: Currently Jeffrey Walton (noloader) makes releases, but may need to add |
|
| 16 |
# others in future (listed on HOMEPAGE) |
|
| 17 |
# (only one other fingerprint is given though and they haven't made a release in ages, |
|
| 18 |
# so avoiding adding that for now.) |
|
| 19 |
local files=( |
|
| 20 |
"${FILESDIR}"/${PN}-noloader.asc
|
|
| 21 |
) |
|
| 22 | ||
| 23 |
insinto /usr/share/openpgp-keys |
|
| 24 |
newins - crypto++.asc < <(cat "${files[@]}" || die)
|
|
| 25 |
} |
|