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, 25 Aug 2020 19:22:22
Message-Id: 1598383335.d87a4494c758bfb0a1b27184522d47861c67465c.mgorny@gentoo
1 commit: d87a4494c758bfb0a1b27184522d47861c67465c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 25 19:17:42 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 25 19:22:15 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d87a4494
7
8 app-portage/gemato: Bump to 15.0
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.0.ebuild | 33 +++++++++++++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/app-portage/gemato/Manifest b/app-portage/gemato/Manifest
17 index 77a600fb447..7b5b1603cf1 100644
18 --- a/app-portage/gemato/Manifest
19 +++ b/app-portage/gemato/Manifest
20 @@ -1,2 +1,3 @@
21 DIST gemato-14.4.tar.gz 72630 BLAKE2B c8956b979d7c8629e245ba339e8ee707cd51ffe545a85c712c31b97ee2aaabef7a4964cac46c9cd8c4954c33529623293a94a26ae40b578a6b640aab15d47835 SHA512 0b514e4ff7773eefd2d9adc063a4fbc6a1e7d9ea3dfa783b1d5a8e6ec1e482533a8c70cd5e200a8b9671161d77e14254ad14aee6659e3c96eb9be3bbedcf11af
22 DIST gemato-14.5.tar.gz 72752 BLAKE2B 61ca43c92556850afdc8ab1d027aa719d13e77727caf9660d1861b1cb07ab40c05bd0fab23f99eaa47252e09465813685c59d1ebb5cc89c2c3381e1571256836 SHA512 0979de8cb4fc51c79d5af485092e0b376094238d6bb67d44db96c66b1d5ee945f0ba82dc6f72bea1042b935029cb790c5cd87bc419ba82da21a972141f3690bb
23 +DIST gemato-15.0.tar.gz 73757 BLAKE2B 1315e621ccd10db4b1dea159fe01386e51632716b02dc1a5e797296b506de14506691b4cf9eeb58b66081ae761c1926c1c7fc6f1c1543143fb64e9e5dc47984e SHA512 ed88961bc22df77227c46ff013bafc801f1648827085bc02845b4374f3a4e67cdc79b68cb2bcd31956ac40cb0014e0f5348d79d77394ceed9152b2a0aa30599a
24
25 diff --git a/app-portage/gemato/gemato-15.0.ebuild b/app-portage/gemato/gemato-15.0.ebuild
26 new file mode 100644
27 index 00000000000..a3227bbf179
28 --- /dev/null
29 +++ b/app-portage/gemato/gemato-15.0.ebuild
30 @@ -0,0 +1,33 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DISTUTILS_USE_SETUPTOOLS=rdepend
37 +PYTHON_COMPAT=( python3_{6..9} pypy3 )
38 +PYTHON_REQ_USE='threads(+)'
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Stand-alone Manifest generation & verification tool"
43 +HOMEPAGE="https://github.com/mgorny/gemato"
44 +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
45 +
46 +LICENSE="BSD-2"
47 +SLOT="0"
48 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux"
49 +IUSE="+gpg tools"
50 +
51 +RDEPEND="
52 + gpg? ( >=app-crypt/gnupg-2.2.20-r1 )"
53 +
54 +distutils_enable_tests setup.py
55 +
56 +python_install_all() {
57 + distutils-r1_python_install_all
58 +
59 + if use tools; then
60 + exeinto /usr/share/gemato
61 + doexe utils/*.{bash,py}
62 + fi
63 +}