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-portage/gverify/
Date: Wed, 30 Oct 2019 16:36:12
Message-Id: 1572453285.6b2f88fb03a37c48fc50d9fa008f2e3085831916.mgorny@gentoo
1 commit: 6b2f88fb03a37c48fc50d9fa008f2e3085831916
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 30 16:32:29 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 30 16:34:45 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b2f88fb
7
8 app-portage/gverify: Bump to v2
9
10 v2 switches to using Authority Keys and therefore stops failing due
11 to obsolete gkeys seeds.
12
13 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
14
15 app-portage/gverify/Manifest | 1 +
16 app-portage/gverify/gverify-2.ebuild | 32 ++++++++++++++++++++++++++++++++
17 2 files changed, 33 insertions(+)
18
19 diff --git a/app-portage/gverify/Manifest b/app-portage/gverify/Manifest
20 index 7534034172c..c2c1a1925d4 100644
21 --- a/app-portage/gverify/Manifest
22 +++ b/app-portage/gverify/Manifest
23 @@ -1 +1,2 @@
24 DIST gverify-1.tar.gz 4558 BLAKE2B 193fb63dd3816b4577314199e4f8606a20f60d883f22f36636f1dba4c3fe4a701e89fd352b33ee3ce5bfb10b39e351f971aa55c8cd6eef493fc492e2c4c5d17e SHA512 f666306973bf173683edd845499ea1b244ffc9254ed0d816660022f871e7cec480d452fd962db5417b23d3101496b80a49caece29cbddf3058e2a21ec945a268
25 +DIST gverify-2.tar.gz 4609 BLAKE2B 73f97ba232fe0269ec56649bc5682650d48c001e432f8076c820a58a94c3d1de079dc89873d589a76b91164153e5c5be78870ef34b3b69f3c39ca0c0e388b114 SHA512 1756671d22047edc6ed1121b65af8c163afba854364a50a9089cef733213ccd6c9dd1276e876b9118741bcfa92ad02cde572fe2b6cebb22339664552c67d2957
26
27 diff --git a/app-portage/gverify/gverify-2.ebuild b/app-portage/gverify/gverify-2.ebuild
28 new file mode 100644
29 index 00000000000..18068b633e4
30 --- /dev/null
31 +++ b/app-portage/gverify/gverify-2.ebuild
32 @@ -0,0 +1,32 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +PYTHON_COMPAT=( python{2_7,3_{5,6,7}} )
39 +inherit python-single-r1
40 +
41 +DESCRIPTION="gentoo.git signature verification tool"
42 +HOMEPAGE="https://github.com/mgorny/gverify"
43 +SRC_URI="https://github.com/mgorny/gverify/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="BSD-2"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE=""
49 +REQUIRED_USE=${PYTHON_REQUIRED_USE}
50 +
51 +RDEPEND="${PYTHON_DEPS}
52 + app-crypt/gnupg
53 + app-crypt/openpgp-keys-gentoo-auth
54 + dev-vcs/git"
55 +DEPEND="${PYTHON_DEPS}"
56 +
57 +src_compile() {
58 + emake PREFIX="${EPREFIX}"/usr
59 +}
60 +
61 +src_install() {
62 + emake install DESTDIR="${D}" PREFIX=/usr
63 + dodoc README
64 +}