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: Thu, 01 Oct 2020 12:22:09
Message-Id: 1601554920.eeda16253769493db3bf50be19d7392302a5e89b.mgorny@gentoo
1 commit: eeda16253769493db3bf50be19d7392302a5e89b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 1 12:17:09 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 1 12:22:00 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eeda1625
7
8 app-portage/gemato: Bump to 16.2
9
10 Bug: https://bugs.gentoo.org/745771
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 app-portage/gemato/Manifest | 1 +
14 app-portage/gemato/gemato-16.2.ebuild | 43 +++++++++++++++++++++++++++++++++++
15 2 files changed, 44 insertions(+)
16
17 diff --git a/app-portage/gemato/Manifest b/app-portage/gemato/Manifest
18 index c941dc67c94..188c8dca2f3 100644
19 --- a/app-portage/gemato/Manifest
20 +++ b/app-portage/gemato/Manifest
21 @@ -1,2 +1,3 @@
22 DIST gemato-15.2.tar.gz 72679 BLAKE2B 83e28fa3bc83976538610fec87c3a31e91a18847c107dc7793e16b5421eba69f7b60f8f05195f345ef6f4f8486203e4acbc01bad706b55c20a11480e85a3420c SHA512 5a98040dab0beac64e5e54bd54c6565cd301399709beda9e030ae9206111caf9e792260aa3c6586040060d4be71df3f1368e7554dff6affaa899c4157116faf3
23 DIST gemato-16.1.tar.gz 79946 BLAKE2B 54452ae113cee98f5c8f9ebc880b4ae424510766eb7cd8bc2775c85573388005343061aa9de8f505a72ee92801756f3cb7b67dfd39d9923d0030a4da301f7ce2 SHA512 df21eb8784cc6724874e38ba0192e1e5657483aa031656855fc0c2396179f7352f9450df6b41205425214cf70f2c812a7ee6f55a25334f0fd012b7e710c1de2c
24 +DIST gemato-16.2.tar.gz 80178 BLAKE2B c973c36bb1277d07618ba8d90f7d6820508d78aedae200f0678c8b2e1dde38e3b7f4d7dc24791dedb9c88791d3b71711c9bdeb749b5fc091a20aa87f71ad70d3 SHA512 9d59ba360afaf237e47c5ded0e5bc29ec44d5b1d73eadadc19ff834a1966e1e620da258eb7a1b6afbff5c66cbd7e39454fd5920f2f82fc510c2f8836c0b80462
25
26 diff --git a/app-portage/gemato/gemato-16.2.ebuild b/app-portage/gemato/gemato-16.2.ebuild
27 new file mode 100644
28 index 00000000000..4f34edba07f
29 --- /dev/null
30 +++ b/app-portage/gemato/gemato-16.2.ebuild
31 @@ -0,0 +1,43 @@
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="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~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/pytest-5[${PYTHON_USEDEP}]
61 + dev-python/requests[${PYTHON_USEDEP}]
62 + dev-python/responses[${PYTHON_USEDEP}]
63 + )"
64 +
65 +distutils_enable_tests pytest
66 +
67 +python_install_all() {
68 + distutils-r1_python_install_all
69 +
70 + if use tools; then
71 + exeinto /usr/share/gemato
72 + doexe utils/*.{bash,py}
73 + fi
74 +}