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, 11 Sep 2018 08:18:13
Message-Id: 1536653878.5297837757e295f7a6569c58948dd4d113444f23.mgorny@gentoo
1 commit: 5297837757e295f7a6569c58948dd4d113444f23
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 11 07:55:47 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 11 08:17:58 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52978377
7
8 app-portage/gemato: Clean old up
9
10 app-portage/gemato/Manifest | 1 -
11 app-portage/gemato/gemato-13.0-r1.ebuild | 43 --------------------------------
12 2 files changed, 44 deletions(-)
13
14 diff --git a/app-portage/gemato/Manifest b/app-portage/gemato/Manifest
15 index 456ee322762..b0c308fad41 100644
16 --- a/app-portage/gemato/Manifest
17 +++ b/app-portage/gemato/Manifest
18 @@ -1,3 +1,2 @@
19 -DIST gemato-13.0.tar.gz 66899 BLAKE2B e75a16d6a26f010801df072154897a485e9aee6434cf60962d59d11fda70b790284a734d9137ccc7910b0a95278d922640aece45e42ca497d1118e01992c2a15 SHA512 0ca17f1df8606e09a88411d75d144094bd13e440b04721175c8d9a3ea92fc616b34de0c80c817898ee94a1d82e37e4de50319634a351a52bccaec9653ad2f166
20 DIST gemato-14.0-multiprocessing.tar.gz 71359 BLAKE2B b8c6fbcf8a83c8e85db4045ad23296944b94623d132a6c5f15b8388662fd092cb589600fda1d11c9645541106dc735dceaeed87d642b1fadf0f352f4a9b3f108 SHA512 2f1a1cbd837ab316bf544f713470f570286a313e002a4dcc075e464e77a3b10ba86410f805aad3d5702f3deedda48f8270f1274a67d76086b4ad5cd597426c5e
21 DIST gemato-14.0.tar.gz 70754 BLAKE2B e66d63a20e144e809555b2eeff6a24f899e1f488c95a14b2250c6eb45c39a6e6b0e614afe30a64f5a353720ab38371ba3e4bf9948052dae3e06f9f82ac3d04a2 SHA512 0494b8fab720b4e5ad2b190fab128baf997073137b933bc113dddc8c5f2c54f53d09bc640b01565e9757b41197d039c8487cb2b78de77313722d19baf008b51f
22
23 diff --git a/app-portage/gemato/gemato-13.0-r1.ebuild b/app-portage/gemato/gemato-13.0-r1.ebuild
24 deleted file mode 100644
25 index 07c61c7ea73..00000000000
26 --- a/app-portage/gemato/gemato-13.0-r1.ebuild
27 +++ /dev/null
28 @@ -1,43 +0,0 @@
29 -# Copyright 1999-2018 Gentoo Foundation
30 -# Distributed under the terms of the GNU General Public License v2
31 -
32 -EAPI=6
33 -
34 -# pyblake2 & pysha3 are broken with pypy3
35 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
36 -PYTHON_REQ_USE='threads(+)'
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Stand-alone Manifest generation & verification tool"
40 -HOMEPAGE="https://github.com/mgorny/gemato"
41 -SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="BSD-2"
44 -SLOT="0"
45 -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~x64-cygwin ~amd64-fbsd"
46 -IUSE="+blake2 bzip2 +gpg lzma sha3 test tools"
47 -
48 -MODULE_RDEPEND="
49 - blake2? ( $(python_gen_cond_dep 'dev-python/pyblake2[${PYTHON_USEDEP}]' python{2_7,3_4,3_5} pypy{,3}) )
50 - bzip2? ( $(python_gen_cond_dep 'dev-python/bz2file[${PYTHON_USEDEP}]' python2_7 pypy) )
51 - gpg? ( app-crypt/gnupg )
52 - lzma? ( $(python_gen_cond_dep 'dev-python/backports-lzma[${PYTHON_USEDEP}]' python2_7 pypy) )
53 - sha3? ( $(python_gen_cond_dep 'dev-python/pysha3[${PYTHON_USEDEP}]' python{2_7,3_4,3_5} pypy{,3}) )"
54 -
55 -RDEPEND="${MODULE_RDEPEND}
56 - dev-python/setuptools[${PYTHON_USEDEP}]"
57 -DEPEND=">=dev-python/setuptools-34[${PYTHON_USEDEP}]
58 - test? ( ${MODULE_RDEPEND} )"
59 -
60 -python_test() {
61 - esetup.py test
62 -}
63 -
64 -python_install_all() {
65 - distutils-r1_python_install_all
66 -
67 - if use tools; then
68 - exeinto /usr/share/gemato
69 - doexe utils/*.{bash,py}
70 - fi
71 -}