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, 03 Dec 2017 10:40:05
Message-Id: 1512297595.e57a1302ad78c492657551462f77b141e642acd2.mgorny@gentoo
1 commit: e57a1302ad78c492657551462f77b141e642acd2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 3 09:50:29 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 3 10:39:55 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e57a1302
7
8 app-portage/gemato: Bump to 9.1
9
10 app-portage/gemato/Manifest | 1 +
11 app-portage/gemato/gemato-9.1.ebuild | 31 +++++++++++++++++++++++++++++++
12 2 files changed, 32 insertions(+)
13
14 diff --git a/app-portage/gemato/Manifest b/app-portage/gemato/Manifest
15 index 46cb856ef8a..10045397b4a 100644
16 --- a/app-portage/gemato/Manifest
17 +++ b/app-portage/gemato/Manifest
18 @@ -1 +1,2 @@
19 DIST gemato-8.tar.gz 57379 BLAKE2B e83cba508ed781667abab3e18059f838c99e92217a7f1dde90b2cc4200a0ab83baabf789bc6bc978b4f080bf285ab9b7ea62e86a98c272abf3889093d780eac3 SHA512 9e5e7c304166d311b7101330b36c3d781e5d3901feb5247235ed04a8aa316416f6045658fab176e34ca6c2d6653eda66ef19789b39a60cb316add9985c9a8040
20 +DIST gemato-9.1.tar.gz 59352 BLAKE2B e2e2d02de29856a91c2432496101589fbe1a87456d46071c03ae5b999a46356f144c6d5831d42896ee15d1bdede32cdcc6b02c412b427f7878d8fc9ecaef84c1 SHA512 cf7bec8ccf7eab75bdbaf0e9a701c7b0fa1a8f2f329f4ba7ef3399898997a6bb3f53c6dfe49cd054ce12baf1f4490e2b7610f5964ff7e6053ae7dd53dd34900e
21
22 diff --git a/app-portage/gemato/gemato-9.1.ebuild b/app-portage/gemato/gemato-9.1.ebuild
23 new file mode 100644
24 index 00000000000..b6774a8be33
25 --- /dev/null
26 +++ b/app-portage/gemato/gemato-9.1.ebuild
27 @@ -0,0 +1,31 @@
28 +# Copyright 1999-2017 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +
31 +EAPI=6
32 +
33 +# backports.lzma is broken with pypy
34 +# pyblake2 & pysha3 are broken with pypy3
35 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
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 ~ia64 ~ppc ~ppc64 ~x86"
45 +IUSE="+blake2 bzip2 +gpg lzma sha3"
46 +
47 +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 +DEPEND="${RDEPEND}
54 + dev-python/setuptools[${PYTHON_USEDEP}]"
55 +
56 +python_test() {
57 + esetup.py test
58 +}