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: Thu, 02 May 2019 05:52:44
Message-Id: 1556776198.da41a55c12294e10e186fb238ee7e9938f1ab13e.mgorny@gentoo
1 commit: da41a55c12294e10e186fb238ee7e9938f1ab13e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 2 05:49:58 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu May 2 05:49:58 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da41a55c
7
8 app-crypt/glep63-check: Bump to v7
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-crypt/glep63-check/Manifest | 1 +
13 app-crypt/glep63-check/glep63-check-7.ebuild | 30 ++++++++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/app-crypt/glep63-check/Manifest b/app-crypt/glep63-check/Manifest
17 index ffe6730e85e..29127241c13 100644
18 --- a/app-crypt/glep63-check/Manifest
19 +++ b/app-crypt/glep63-check/Manifest
20 @@ -1 +1,2 @@
21 DIST glep63-check-6.tar.gz 61318 BLAKE2B 9310a70556deabf90003c154c326480e7a5fb58992bf79201100c21fbbeb17ebfdb560d861586d1c206a8d4ed3e64500a8eca4d99dacd072dce121736cdb2d3e SHA512 f0729683095222f60243923bcb7d9c1b984eb10cb0d8a0da2ec756b40a11c3f4f3de466fa533a66d4f645a2de09137a12a47eda5e80d7d5d562b0926a30b1a72
22 +DIST glep63-check-7.tar.gz 66680 BLAKE2B 33c332b6f90a2b9bcecc174c2a0cdd4e99f3e03d6b5c663b3477b486a96e03116612e8d63ead29d7036c115e0a21dfcf952d1085d23b1bce966fd784f1c12f23 SHA512 7990f2c926f23a92164b9aaa8da549cfe8194b7fe864f8787daf0e24d4dd7812cc917f0d5beea0355c14c0cf737a9ea2351a570da39a19a0dfc7bcd42e0cac05
23
24 diff --git a/app-crypt/glep63-check/glep63-check-7.ebuild b/app-crypt/glep63-check/glep63-check-7.ebuild
25 new file mode 100644
26 index 00000000000..13996cabd8a
27 --- /dev/null
28 +++ b/app-crypt/glep63-check/glep63-check-7.ebuild
29 @@ -0,0 +1,30 @@
30 +# Copyright 1999-2019 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +PYTHON_COMPAT=( python3_{5,6,7} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="GLEP 63 compliance checker for OpenPGP keys"
40 +HOMEPAGE="https://github.com/mgorny/glep63-check/"
41 +SRC_URI="https://github.com/mgorny/glep63-check/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="BSD-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="test"
47 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
48 +RESTRICT="!test? ( test )"
49 +
50 +RDEPEND="app-crypt/gnupg"
51 +DEPEND="
52 + test? (
53 + ${RDEPEND}
54 + sys-libs/libfaketime
55 + )"
56 +
57 +python_test() {
58 + "${EPYTHON}" -m unittest -v || die "Tests fail with ${EPYTHON}"
59 +}