diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-08-07 06:42:17 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-08-07 06:55:53 +0200 |
commit | 5947af1a1bb355fa654fd4834ba5622eed7f181e (patch) | |
tree | ee1aa5e915f48b4753040f7a054777e51db4d684 /sec-keys | |
parent | dev-python/Faker: Bump to 26.2.0 (diff) | |
download | gentoo-5947af1a1bb355fa654fd4834ba5622eed7f181e.tar.gz gentoo-5947af1a1bb355fa654fd4834ba5622eed7f181e.tar.bz2 gentoo-5947af1a1bb355fa654fd4834ba5622eed7f181e.zip |
sec-keys/openpgp-keys-django: Add 20240807 (for 5.0.8/4.2.15)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'sec-keys')
-rw-r--r-- | sec-keys/openpgp-keys-django/Manifest | 1 | ||||
-rw-r--r-- | sec-keys/openpgp-keys-django/openpgp-keys-django-20240807.ebuild | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/sec-keys/openpgp-keys-django/Manifest b/sec-keys/openpgp-keys-django/Manifest index 4ba8e9d4d79b..724c6e912721 100644 --- a/sec-keys/openpgp-keys-django/Manifest +++ b/sec-keys/openpgp-keys-django/Manifest @@ -1,3 +1,4 @@ DIST 5B5B1BA10D85AC7C5C76E38F2EE82A8D9470983E.asc 5644 BLAKE2B a776ca3ed4c3751c40b1714eb9ebd4f802c5d0323343acd92dae8a96fd226d4ce00958964cb3d2e490b5bda2820e304827d16898220d294d0ed224e126cc4ca5 SHA512 41c3ebcacfbe3368a62927b2111aee710985609e28dddf259c32fbc73b1097009550bc4279c0b197d72005e22084d6b526bcb3e20ef47e03b4c6caa6eef8a506 DIST ABB2C2A8CD01F1613618B70D2EF56372BA48CD1B.asc 6888 BLAKE2B 2782b48f59abbc1caed8f91ea0ba5ad85edf921628bc8b3a56b3b71020e88693657ada02dddf1d667a2005b59751c4dcd27bd1950edf90dd50760822b8857923 SHA512 7c814596f1818a83ab5dd5ae781a2323b4a3fe3f1c21c6b8152d76c29366d0a1be50e0d4584307ba52cf0252245385ad138a01a6c99d8c071482c9c3f1dd461b +DIST EB1B380D8AC52D002BACD3323955B19851EA96EF.asc 2500 BLAKE2B 77f7c83b4eb2a34906264fe4f5e3ecb983f639f8d9480024bd24580d42b1cc1526bff30b5f3a65450ce7fd082b0e76e2748a940ecdedffd2ed38cb33936f1504 SHA512 71c36401eaca87c73f016f7d33b926b90a1830846ee2d2e91499e49c17ee79835878bc1836cab2a4a459d9d45dd972346a01d1a1a6f5b73147f0ded037cdfed3 DIST FE5FB63876A1D718A8C67556E17DF5C82B4F9D00.r1.asc 9134 BLAKE2B b4bab5d4533a1d6b4ea83961b37582e3276559a36ff72934663baa13a1979dfbccd80a6d162d5e9035ce8432a19b4b9cf49be37a73d343ddc3cb6425d56de1a2 SHA512 4d934ebc3b8721de3c7be2da7ab251e1b441d19c1f2981072c2de0ad37a58eb0591d5f2ed0f39ee60be18879ff41236d39d7559fc9ad9eff0372483bcc0dbdf6 diff --git a/sec-keys/openpgp-keys-django/openpgp-keys-django-20240807.ebuild b/sec-keys/openpgp-keys-django/openpgp-keys-django-20240807.ebuild new file mode 100644 index 000000000000..c206b57f1238 --- /dev/null +++ b/sec-keys/openpgp-keys-django/openpgp-keys-django-20240807.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="OpenPGP keys used to sign Django releases" +HOMEPAGE="https://www.djangoproject.com/download/" +SRC_URI=" + https://keys.openpgp.org/vks/v1/by-fingerprint/FE5FB63876A1D718A8C67556E17DF5C82B4F9D00 + -> FE5FB63876A1D718A8C67556E17DF5C82B4F9D00.r1.asc + https://keybase.io/felixx/pgp_keys.asc?fingerprint=abb2c2a8cd01f1613618b70d2ef56372ba48cd1b + -> ABB2C2A8CD01F1613618B70D2EF56372BA48CD1B.asc + https://github.com/nessita.gpg + -> 5B5B1BA10D85AC7C5C76E38F2EE82A8D9470983E.asc + https://github.com/sarahboyce.gpg + -> EB1B380D8AC52D002BACD3323955B19851EA96EF.asc +" +S=${WORKDIR} + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +src_install() { + insinto /usr/share/openpgp-keys + newins - django.asc < <( + for x in ${A}; do + cat "${DISTDIR}/${x}" + # GitHub outputs keys without trailing newline, so we cannot + # just concatenate them + echo + done + ) +} |