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: 1517602429.7c48acb6521be239392866828fe0b7fb787596ce.mgorny@gentoo
1 commit: 7c48acb6521be239392866828fe0b7fb787596ce
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 2 19:55:15 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 2 20:13:49 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c48acb6
7
8 app-portage/gemato: Drop old
9
10 app-portage/gemato/Manifest | 1 -
11 app-portage/gemato/gemato-9.3.ebuild | 43 ------------------------------------
12 2 files changed, 44 deletions(-)
13
14 diff --git a/app-portage/gemato/Manifest b/app-portage/gemato/Manifest
15 index a5126f8465c..c02a08d58af 100644
16 --- a/app-portage/gemato/Manifest
17 +++ b/app-portage/gemato/Manifest
18 @@ -1,2 +1 @@
19 DIST gemato-10.3.tar.gz 63279 BLAKE2B 317c98c3989399e3a87cd5452edc509da86b17ecb41d295feca4071141d3ff1ba95a86544d64c786726f2148a899c1597020dde3513a913b1bc1811e2117337e SHA512 dd2b47238ac0707984358bd763ce0dfb23d8b09561939d22aae2e60386de388af9c5e67faa89a6ab9da4f0b334ee8486eeda66e5eb83bd2a26241b8a2b88128d
20 -DIST gemato-9.3.tar.gz 60601 BLAKE2B d85bf5910736da2ca887567799dee1823e9be6af9b17a8f9deb84ee24bb725c3550aafffa51b15484acb7d37ddbd5996aa4175a8f307b6e3a593f8b5497822be SHA512 7f81409b3b9bd65d295cd760af5cabfc7daf257740f00015f07cd7a0cffd02a40f219b59378179b58bf53b321fb543b308457d3a8b7adcb02981562282f1f46f
21
22 diff --git a/app-portage/gemato/gemato-9.3.ebuild b/app-portage/gemato/gemato-9.3.ebuild
23 deleted file mode 100644
24 index fc3300922c2..00000000000
25 --- a/app-portage/gemato/gemato-9.3.ebuild
26 +++ /dev/null
27 @@ -1,43 +0,0 @@
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 pypy*
34 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
35 -inherit distutils-r1
36 -
37 -DESCRIPTION="Stand-alone Manifest generation & verification tool"
38 -HOMEPAGE="https://github.com/mgorny/gemato"
39 -SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="BSD-2"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
44 -IUSE="+blake2 bzip2 +gpg lzma +portage-postsync sha3 test"
45 -
46 -MODULE_RDEPEND="
47 - blake2? ( $(python_gen_cond_dep 'dev-python/pyblake2[${PYTHON_USEDEP}]' python{2_7,3_4,3_5} pypy{,3}) )
48 - bzip2? ( $(python_gen_cond_dep 'dev-python/bz2file[${PYTHON_USEDEP}]' python2_7 pypy) )
49 - gpg? ( app-crypt/gnupg )
50 - lzma? ( $(python_gen_cond_dep 'dev-python/backports-lzma[${PYTHON_USEDEP}]' python2_7 pypy) )
51 - sha3? ( $(python_gen_cond_dep 'dev-python/pysha3[${PYTHON_USEDEP}]' python{2_7,3_4,3_5} pypy{,3}) )"
52 -
53 -RDEPEND="${MODULE_RDEPEND}
54 - dev-python/setuptools[${PYTHON_USEDEP}]
55 - portage-postsync? ( app-crypt/gentoo-keys )"
56 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
57 - test? ( ${MODULE_RDEPEND} )"
58 -
59 -python_test() {
60 - esetup.py test
61 -}
62 -
63 -python_install_all() {
64 - distutils-r1_python_install_all
65 -
66 - if use portage-postsync; then
67 - exeinto /etc/portage/repo.postsync.d
68 - doexe utils/repo.postsync.d/00gemato
69 - fi
70 -}