Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/gentoo-keys/
Date: Fri, 27 Oct 2017 23:08:28
Message-Id: 1509145690.7b2f7f5f9db42058b76e155ab3e87d36c86062ed.monsieurp@gentoo
1 commit: 7b2f7f5f9db42058b76e155ab3e87d36c86062ed
2 Author: charIes17 <charles17 <AT> arcor <DOT> de>
3 AuthorDate: Fri Aug 4 12:03:18 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 27 23:08:10 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b2f7f5f
7
8 app-crypt/gentoo-keys: bump to EAPI 6.
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11 Closes: https://bugs.gentoo.org/566782
12 Closes: https://github.com/gentoo/gentoo/pull/5294
13
14 .../gentoo-keys/gentoo-keys-201607021514-r1.ebuild | 25 ++++++++++++++++++++++
15 1 file changed, 25 insertions(+)
16
17 diff --git a/app-crypt/gentoo-keys/gentoo-keys-201607021514-r1.ebuild b/app-crypt/gentoo-keys/gentoo-keys-201607021514-r1.ebuild
18 new file mode 100644
19 index 00000000000..111551ffeb5
20 --- /dev/null
21 +++ b/app-crypt/gentoo-keys/gentoo-keys-201607021514-r1.ebuild
22 @@ -0,0 +1,25 @@
23 +# Copyright 2014-2017 Gentoo Foundation
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI="6"
27 +
28 +DESCRIPTION="A Openpgp/gpg keyring of official Gentoo release media gpg keys"
29 +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Gentoo-keys"
30 +SRC_URI="https://dev.gentoo.org/~dolsen/releases/keyrings/${P}.tar.xz"
31 +
32 +LICENSE="GPL-2"
33 +SLOT="0"
34 +IUSE=""
35 +
36 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc64 ~ppc ~sparc ~x86 ~arm64 ~x86-fbsd ~amd64-fbsd ~m68k ~mips ~s390 ~sh"
37 +
38 +DEPEND=""
39 +RDEPEND=""
40 +
41 +S="${WORKDIR}"
42 +
43 +src_install(){
44 + insinto /var/lib/gentoo/gkeys/keyrings
45 + doins -r gentoo
46 + fperms -R 700 /var/lib/gentoo/gkeys/keyrings/gentoo/release/
47 +}