# 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 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-29* app-crypt/gnupg" src_install() { insinto /usr/share/openpgp-keys latest_emacs_29="$(find /usr/share/emacs/ -name '29.*' | sort -ru | head -n1)" if [[ -z "${latest_emacs_29}" ]] ; then die "Can't find emacs 29.* 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_29}/etc/package-keyring.gpg" || die) }