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