Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/openpgp-keys-gentoo-auth/
Date: Wed, 30 Oct 2019 16:36:13
Message-Id: 1572453283.17ed702b3d2c72557fe6c5182254b8f26b8be976.mgorny@gentoo
1 commit: 17ed702b3d2c72557fe6c5182254b8f26b8be976
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 30 15:45:38 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 30 16:34:43 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17ed702b
7
8 app-crypt/openpgp-keys-gentoo-auth: Package the Authority Keys
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-crypt/openpgp-keys-gentoo-auth/Manifest | 1 +
13 app-crypt/openpgp-keys-gentoo-auth/metadata.xml | 8 ++++++++
14 .../openpgp-keys-gentoo-auth-20191030.ebuild | 22 ++++++++++++++++++++++
15 3 files changed, 31 insertions(+)
16
17 diff --git a/app-crypt/openpgp-keys-gentoo-auth/Manifest b/app-crypt/openpgp-keys-gentoo-auth/Manifest
18 new file mode 100644
19 index 00000000000..0f11222da88
20 --- /dev/null
21 +++ b/app-crypt/openpgp-keys-gentoo-auth/Manifest
22 @@ -0,0 +1 @@
23 +DIST gentoo-auth.asc.20191030.gz 6556 BLAKE2B 233df81a8c01ead6524fdded0c64aba7d930d0f9e6214c403e43aa97bc87502a4e1d68c6c415505db5f618d9309d5ba1279d1e9b9e068289002ad30896a500c9 SHA512 c752dc4b5d75937290e469e722ccd48a592413438a7d1c5bc5d4e07114077ae3dfb5fc3cbe6b96d672e4149737cd7db6dc8298e670e63745bdff7426e98fc03b
24
25 diff --git a/app-crypt/openpgp-keys-gentoo-auth/metadata.xml b/app-crypt/openpgp-keys-gentoo-auth/metadata.xml
26 new file mode 100644
27 index 00000000000..0319eec4c8b
28 --- /dev/null
29 +++ b/app-crypt/openpgp-keys-gentoo-auth/metadata.xml
30 @@ -0,0 +1,8 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="person">
35 + <email>mgorny@g.o</email>
36 + <name>Michał Górny</name>
37 + </maintainer>
38 +</pkgmetadata>
39
40 diff --git a/app-crypt/openpgp-keys-gentoo-auth/openpgp-keys-gentoo-auth-20191030.ebuild b/app-crypt/openpgp-keys-gentoo-auth/openpgp-keys-gentoo-auth-20191030.ebuild
41 new file mode 100644
42 index 00000000000..a6f1305ee95
43 --- /dev/null
44 +++ b/app-crypt/openpgp-keys-gentoo-auth/openpgp-keys-gentoo-auth-20191030.ebuild
45 @@ -0,0 +1,22 @@
46 +# Copyright 1999-2019 Gentoo Authors
47 +# Distributed under the terms of the GNU General Public License v2
48 +
49 +EAPI=7
50 +
51 +DESCRIPTION="Gentoo Authority Keys (GLEP 79)"
52 +HOMEPAGE="https://www.gentoo.org/downloads/signatures/"
53 +SRC_URI="https://dev.gentoo.org/~mgorny/dist/openpgp-keys/gentoo-auth.asc.${PV}.gz"
54 +
55 +LICENSE="public-domain"
56 +SLOT="0"
57 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh ~sparc ~x86"
58 +
59 +S=${WORKDIR}
60 +
61 +src_install() {
62 + insinto /usr/share/openpgp-keys
63 + newins "gentoo-auth.asc.${PV}" gentoo-auth.asc
64 + newins - gentoo-auth-ownertrust.txt <<-EOF
65 + ABD00913019D6354BA1D9A132839FE0D796198B1:6:
66 + EOF
67 +}