Gentoo Archives: gentoo-commits

From: "Jakov Smolić" <jsmolic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-misc/vitables/
Date: Wed, 06 Oct 2021 08:33:28
Message-Id: 1633509095.fbb78167a2e857b89137ee1d3a0a9feabdbeb985.jsmolic@gentoo
1 commit: fbb78167a2e857b89137ee1d3a0a9feabdbeb985
2 Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 6 07:51:16 2021 +0000
4 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 6 08:31:35 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbb78167
7
8 sci-misc/vitables: drop 3.0.0-r2
9
10 Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
11
12 sci-misc/vitables/Manifest | 1 -
13 sci-misc/vitables/vitables-3.0.0-r2.ebuild | 38 ------------------------------
14 2 files changed, 39 deletions(-)
15
16 diff --git a/sci-misc/vitables/Manifest b/sci-misc/vitables/Manifest
17 index 5b5458b97cb..15ae3dc6f25 100644
18 --- a/sci-misc/vitables/Manifest
19 +++ b/sci-misc/vitables/Manifest
20 @@ -1,2 +1 @@
21 -DIST ViTables-3.0.0.tar.gz 860411 BLAKE2B 7ef5a7ac681ac7d0d2544987080478deba39db275dc0559db48d0375ebd83f260eb37dc3b9e99b131fd427b81668b882f15549e6f1955615f9dee5927c6cc57d SHA512 0ab0a3529f70111f6d2c1a765398d0c05607e2839a353670eebfa26bedd2092a33afe9f1cad14eec5d23f76fc5f54fa6f61e2e4089d9c2f3fd43396dbbbba7b1
22 DIST ViTables-3.0.2.tar.gz 921231 BLAKE2B 5800cf222260f0d4c4c7c652f8ecab32b764f3555d7a19bc3aca6acdb68648b0b381389737a67f8b2d558ba09dc9f9837103a6c3c27ca6f7b9c0b0ca31bf8978 SHA512 d9b5fc0c5c31cd663a5ce8af415b8e7feef89b5d542933dbb8809961b9bdf325d115238526856f928e8326192e73c8cd84879566d569d70c6418921dac444766
23
24 diff --git a/sci-misc/vitables/vitables-3.0.0-r2.ebuild b/sci-misc/vitables/vitables-3.0.0-r2.ebuild
25 deleted file mode 100644
26 index 8d86ddb9e1f..00000000000
27 --- a/sci-misc/vitables/vitables-3.0.0-r2.ebuild
28 +++ /dev/null
29 @@ -1,38 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -DISTUTILS_SINGLE_IMPL=1
36 -PYTHON_COMPAT=( python3_{8,9} )
37 -
38 -inherit distutils-r1
39 -
40 -MY_P=ViTables-${PV}
41 -
42 -DESCRIPTION="A graphical tool for browsing / editing files in both PyTables and HDF5 formats"
43 -HOMEPAGE="https://vitables.org/"
44 -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
45 -
46 -LICENSE="GPL-3"
47 -SLOT="0"
48 -KEYWORDS="~amd64 ~x86"
49 -
50 -RDEPEND="
51 - $(python_gen_cond_dep '
52 - dev-python/setuptools[${PYTHON_USEDEP}]
53 - dev-python/pytables[${PYTHON_USEDEP}]
54 - dev-python/QtPy[gui,${PYTHON_USEDEP}]
55 - ')"
56 -DEPEND="${RDEPEND}"
57 -
58 -S=${WORKDIR}/${MY_P}
59 -
60 -python_prepare_all() {
61 - # remove the PyQt5 dependency
62 - # because PyQt5 in Gentoo does not provide egg-info
63 - # see also: https://github.com/pyqt/python-qt5/issues/18
64 - sed "s:'PyQt5 [^ ]*::" -i setup.py || die
65 -
66 - distutils-r1_python_prepare_all
67 -}