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: Fri, 02 Feb 2018 20:13:59
Message-Id: 1517602430.736a75818a4fbcfdc61b399d2d400d679b6ead85.mgorny@gentoo
1 commit: 736a75818a4fbcfdc61b399d2d400d679b6ead85
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 2 19:56:45 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 2 20:13:50 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=736a7581
7
8 app-portage/gemato: Bump to 11.0
9
10 app-portage/gemato/Manifest | 1 +
11 app-portage/gemato/gemato-11.0.ebuild | 34 ++++++++++++++++++++++++++++++++++
12 2 files changed, 35 insertions(+)
13
14 diff --git a/app-portage/gemato/Manifest b/app-portage/gemato/Manifest
15 index c02a08d58af..33b150489ef 100644
16 --- a/app-portage/gemato/Manifest
17 +++ b/app-portage/gemato/Manifest
18 @@ -1 +1,2 @@
19 DIST gemato-10.3.tar.gz 63279 BLAKE2B 317c98c3989399e3a87cd5452edc509da86b17ecb41d295feca4071141d3ff1ba95a86544d64c786726f2148a899c1597020dde3513a913b1bc1811e2117337e SHA512 dd2b47238ac0707984358bd763ce0dfb23d8b09561939d22aae2e60386de388af9c5e67faa89a6ab9da4f0b334ee8486eeda66e5eb83bd2a26241b8a2b88128d
20 +DIST gemato-11.0.tar.gz 64123 BLAKE2B c1020368eca1f8914c2377e23b27e953e06268e70754e2265af6d31defb2960263371aa6cbfb22b046d1bbdf549c948b62858d09055e8813fc9148a28c264a81 SHA512 c9ba297950a96fc7c07f88b8dcda33c3f351043ca062c354425be43ce4915b5ee37d6a28122797cfc01152546e72eda647e27f764b53345bfef87b292dd893e7
21
22 diff --git a/app-portage/gemato/gemato-11.0.ebuild b/app-portage/gemato/gemato-11.0.ebuild
23 new file mode 100644
24 index 00000000000..9a0b3df31cd
25 --- /dev/null
26 +++ b/app-portage/gemato/gemato-11.0.ebuild
27 @@ -0,0 +1,34 @@
28 +# Copyright 1999-2018 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +
31 +EAPI=6
32 +
33 +# pyblake2 & pysha3 are broken with pypy3
34 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
35 +PYTHON_REQ_USE='threads(+)'
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Stand-alone Manifest generation & verification tool"
39 +HOMEPAGE="https://github.com/mgorny/gemato"
40 +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
41 +
42 +LICENSE="BSD-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
45 +IUSE="+blake2 bzip2 +gpg lzma sha3 test"
46 +
47 +MODULE_RDEPEND="
48 + blake2? ( $(python_gen_cond_dep 'dev-python/pyblake2[${PYTHON_USEDEP}]' python{2_7,3_4,3_5} pypy{,3}) )
49 + bzip2? ( $(python_gen_cond_dep 'dev-python/bz2file[${PYTHON_USEDEP}]' python2_7 pypy) )
50 + gpg? ( app-crypt/gnupg )
51 + lzma? ( $(python_gen_cond_dep 'dev-python/backports-lzma[${PYTHON_USEDEP}]' python2_7 pypy) )
52 + sha3? ( $(python_gen_cond_dep 'dev-python/pysha3[${PYTHON_USEDEP}]' python{2_7,3_4,3_5} pypy{,3}) )"
53 +
54 +RDEPEND="${MODULE_RDEPEND}
55 + dev-python/setuptools[${PYTHON_USEDEP}]"
56 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
57 + test? ( ${MODULE_RDEPEND} )"
58 +
59 +python_test() {
60 + esetup.py test
61 +}