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/glep63-check/
Date: Sun, 29 Jul 2018 21:04:44
Message-Id: 1532898272.f90db42cf4bb5a024479324b3ae9c3373baba960.mgorny@gentoo
1 commit: f90db42cf4bb5a024479324b3ae9c3373baba960
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 29 21:00:14 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 29 21:04:32 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f90db42c
7
8 app-crypt/glep63-check: Bump to v3
9
10 app-crypt/glep63-check/Manifest | 1 +
11 app-crypt/glep63-check/glep63-check-3.ebuild | 29 ++++++++++++++++++++++++++++
12 2 files changed, 30 insertions(+)
13
14 diff --git a/app-crypt/glep63-check/Manifest b/app-crypt/glep63-check/Manifest
15 index fcddb1e3e08..f92a97682e8 100644
16 --- a/app-crypt/glep63-check/Manifest
17 +++ b/app-crypt/glep63-check/Manifest
18 @@ -1,2 +1,3 @@
19 DIST glep63-check-1.tar.gz 4632 BLAKE2B 3632199ca9ca8516a833aa6d93885f40a761c47ab5bc5685582c6c8e294af0d5a6e258656208c9a65c1c5d4852d5e32374a77b39a0dcf491605df4b733d2c162 SHA512 16e3031b9b04af09ba446c76e8776d802d197d2d1f934c9a409509a81fd299306b451ea3e52d1ac5b75c9d0c9a0d7f93b73e26732ecf51c5c3afe53f0c0868aa
20 DIST glep63-check-2.tar.gz 5818 BLAKE2B 4cb99945e5bf3067e579feb630c8c5e3a33abdbc66cbdc90f00104a926880b29b61b22a8e151d1a35765787b80a1567fc6823259e94df0ab72810e9d76ea61a3 SHA512 bc3029e3886ad881f134da0e0821ed5bc908f7583d8031f76000827640d60e85adc182555163e6ef4138c1d1c9abb3e314ae5548acf82e384d66eac6d1e1b8c7
21 +DIST glep63-check-3.tar.gz 5892 BLAKE2B d59983cb36e30503e94479644dac6ac061e9420391fee3a8170faa1f9b12ba9c248fde53f649309d2c17c62fa6de5e45f3a34cae83ddec01b388b6dee13e85e5 SHA512 778db42d8482d4cf206f291cfddadfcb8fb333fc686b90d96d586e4b2c58280933a248534309ba9999ba32f7cf8fb3ed45bb4a97578e508d710105290fc3c2e7
22
23 diff --git a/app-crypt/glep63-check/glep63-check-3.ebuild b/app-crypt/glep63-check/glep63-check-3.ebuild
24 new file mode 100644
25 index 00000000000..58a8418fc78
26 --- /dev/null
27 +++ b/app-crypt/glep63-check/glep63-check-3.ebuild
28 @@ -0,0 +1,29 @@
29 +# Copyright 1999-2018 Gentoo Foundation
30 +# Distributed under the terms of the GNU General Public License v2
31 +
32 +EAPI=6
33 +
34 +PYTHON_COMPAT=( python3_{4,5,6,7} )
35 +
36 +inherit python-single-r1
37 +
38 +DESCRIPTION="GLEP 63 compliance checker for OpenPGP keys"
39 +HOMEPAGE="https://github.com/mgorny/glep63-check/"
40 +SRC_URI="https://github.com/mgorny/glep63-check/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="BSD-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE=""
46 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
47 +
48 +RDEPEND="${PYTHON_DEPS}
49 + app-crypt/gnupg"
50 +
51 +src_compile() {
52 + python_fix_shebang glep63-check
53 +}
54 +
55 +src_install() {
56 + dobin glep63-check
57 +}