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/gemato/
Date: Tue, 08 Sep 2020 19:11:23
Message-Id: 1599592255.20c503d3c2e1e54188a410e6b7239f78b3f61a3c.mgorny@gentoo
1 commit: 20c503d3c2e1e54188a410e6b7239f78b3f61a3c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 8 16:29:01 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 8 19:10:55 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20c503d3
7
8 app-portage/gemato: Bump to 16.1
9
10 Closes: https://bugs.gentoo.org/741046
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 app-portage/gemato/Manifest | 1 +
14 app-portage/gemato/gemato-16.1.ebuild | 43 +++++++++++++++++++++++++++++++++++
15 2 files changed, 44 insertions(+)
16
17 diff --git a/app-portage/gemato/Manifest b/app-portage/gemato/Manifest
18 index 2372a74c99b..75bf12d5c72 100644
19 --- a/app-portage/gemato/Manifest
20 +++ b/app-portage/gemato/Manifest
21 @@ -4,3 +4,4 @@ DIST gemato-15.0.tar.gz 73757 BLAKE2B 1315e621ccd10db4b1dea159fe01386e51632716b0
22 DIST gemato-15.1.tar.gz 71954 BLAKE2B 29a899eb215b78c608f6846c8978837c96df5a69c112c771e4c25c89df268ef22e02bcfb171e9a1b5b2377af101c1029638156c7317e6961133b5a9206747204 SHA512 3263c8e0bc74e1b031775cc37697be5f3214d09ce00ea922af00b8b46638756ee74ad3bc75e73fe8e3563a0ccd5b76986a8f5fc7c00423db863296d89dd233a8
23 DIST gemato-15.2.tar.gz 72679 BLAKE2B 83e28fa3bc83976538610fec87c3a31e91a18847c107dc7793e16b5421eba69f7b60f8f05195f345ef6f4f8486203e4acbc01bad706b55c20a11480e85a3420c SHA512 5a98040dab0beac64e5e54bd54c6565cd301399709beda9e030ae9206111caf9e792260aa3c6586040060d4be71df3f1368e7554dff6affaa899c4157116faf3
24 DIST gemato-16.0.tar.gz 78236 BLAKE2B d4c0d610eb2228be9c439036f7049b9c77d768e91bd30c32a072be5364dd94771dcad32f1194f69a195fb16182f8ecda8cf4769f61cf80e96d9737241ed4080a SHA512 73a1cc588d7541de466c9869eddc5f9347fd15eadeea0ed12c200a8bcf05a933969b80d66d1f61c8d73d9824b83986d4d93188105f047621d161454f22f02f45
25 +DIST gemato-16.1.tar.gz 79946 BLAKE2B 54452ae113cee98f5c8f9ebc880b4ae424510766eb7cd8bc2775c85573388005343061aa9de8f505a72ee92801756f3cb7b67dfd39d9923d0030a4da301f7ce2 SHA512 df21eb8784cc6724874e38ba0192e1e5657483aa031656855fc0c2396179f7352f9450df6b41205425214cf70f2c812a7ee6f55a25334f0fd012b7e710c1de2c
26
27 diff --git a/app-portage/gemato/gemato-16.1.ebuild b/app-portage/gemato/gemato-16.1.ebuild
28 new file mode 100644
29 index 00000000000..d4dfe160f0c
30 --- /dev/null
31 +++ b/app-portage/gemato/gemato-16.1.ebuild
32 @@ -0,0 +1,43 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +DISTUTILS_USE_SETUPTOOLS=rdepend
39 +PYTHON_COMPAT=( python3_{6..9} pypy3 )
40 +PYTHON_REQ_USE='threads(+)'
41 +
42 +inherit distutils-r1
43 +
44 +DESCRIPTION="Stand-alone Manifest generation & verification tool"
45 +HOMEPAGE="https://github.com/mgorny/gemato"
46 +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
47 +
48 +LICENSE="BSD-2"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc64 ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux"
51 +IUSE="+gpg tools"
52 +
53 +RDEPEND="
54 + gpg? (
55 + >=app-crypt/gnupg-2.2.20-r1
56 + dev-python/requests[${PYTHON_USEDEP}]
57 + )"
58 +BDEPEND="
59 + test? (
60 + >=app-crypt/gnupg-2.2.20-r1
61 + >=dev-python/pytest-5[${PYTHON_USEDEP}]
62 + dev-python/requests[${PYTHON_USEDEP}]
63 + dev-python/responses[${PYTHON_USEDEP}]
64 + )"
65 +
66 +distutils_enable_tests pytest
67 +
68 +python_install_all() {
69 + distutils-r1_python_install_all
70 +
71 + if use tools; then
72 + exeinto /usr/share/gemato
73 + doexe utils/*.{bash,py}
74 + fi
75 +}