Install this version:
emerge -a =app-crypt/openpgp-keys-gnu-elpa-20260206
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 20260206 | 8 | ~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 | 0 |
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="OpenPGP keys used to sign GNU ELPA packages"
HOMEPAGE="https://www.gnu.org/software/emacs/"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
S="${WORKDIR}"
BDEPEND="=app-editors/emacs-30*
app-crypt/gnupg"
src_install() {
insinto /usr/share/openpgp-keys
latest_emacs_30="$(find /usr/share/emacs/ -name '30.*' | sort -ru | head -n1)"
if [[ -z "${latest_emacs_30}" ]] ; then
die "Can't find emacs 30.* directory"
fi
# I blindly copied the syntax from openpgp-keys-tor
newins - elpa.gnu.org.asc < <(gpg -o - -a --import --import-options import-export \
"${latest_emacs_30}/etc/package-keyring.gpg" || die)
}