holgersson-overlay/app-crypt/archlinux-keyring/archlinux-keyring-20220118-r1.ebuild
Nils Freydank 9660001536
app-crypt/archlinux-keyring: Build the keyring from source, use sequoia-sq.
This is a fixup for a naive bump I did earlier in commit
8d0c242af5 - special thanks
to a fellow gentoo user wrote me an email about that!

As we need app-crypt/sequoia-sq now this revbump drops support
for the architecture x86.

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nils Freydank <holgersson@posteo.de>
2022-02-09 23:02:03 +01:00

27 lines
810 B
Bash

# Copyright 2020-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="GnuPG keyring of Archlinux developer keys"
HOMEPAGE="https://gitlab.archlinux.org/archlinux/archlinux-keyring"
SRC_URI="https://gitlab.archlinux.org/archlinux/archlinux-keyring/-/archive/${PV}/archlinux-keyring-${PV}.tar.gz"
LICENSE="GPL-2" # "GPL" for the Arch linux package
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
BDEPEND="app-crypt/sequoia-sq"
src_install() {
emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
}
pkg_postinst() {
einfo ""
einfo "This package only installs the keyring files while sys-apps/pacman"
einfo "initializes these keyrings to actually use it. This is a different"
einfo "behaviour from Archlinux, but is necessary to avoid circular deps."
einfo ""
}