sec-keys/openpgp-keys-lighttpd: add 20250325

See discussion at https://github.com/gentoo/gentoo/pull/41230#issuecomment-2746030992.

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2025-03-23 07:55:34 +00:00
parent f0138d169c
commit bd691766e9
2 changed files with 23 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST openpgp-keys-lighttpd-20231008.asc 5397 BLAKE2B 6a234c7ea217fe5819ab06a1c87544752c097bfa8cb765a2742ffd82086887aa43962059d823a5262710983f54c28928051aea709534a3d556d6a479caf0da6c SHA512 000a10351998f0d058a0e127040127e8baeca33f9bf5c76c0df33dd85c863f6838d0dc60b6d964f1b6d760328ed1e0dfb91663795fa5b1ce112e26f228298abf
DIST openpgp-keys-lighttpd-20250325.asc 5397 BLAKE2B 8d6f8f98919294d1d5f37d34f46e70ff750eead2607c66cb09ebf968ab748d928bc1d34b49380ba1b0a7d8ca150d3acbfb4da6d9c469ffca33b885fd6bb9dd67 SHA512 d84787763a80f0b72080b706c6601859b07ecc9e02348de301c60722ff90f90094beb1d9f0cc861a38eada4450f558df71fee07416d9092f18faf87300806154

View File

@@ -0,0 +1,22 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
# XXX: When this expires next after 20250325, there should be a static
# key location for us to pull from (see https://github.com/gentoo/gentoo/pull/41230).
DESCRIPTION="OpenPGP keys used to sign lighttpd"
HOMEPAGE="https://www.lighttpd.net/"
SRC_URI="https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}.asc"
S="${WORKDIR}"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
src_install() {
local files=( ${A} )
insinto /usr/share/openpgp-keys
newins - lighttpd.asc < <(cat "${files[@]/#/${DISTDIR}/}" || die)
}