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: sci-misc/vitables/
Date: Fri, 01 Jan 2021 01:56:04
Message-Id: 1609466152.10fd7ce01ffe16320d5143c89a44f145228a5bdb.mgorny@gentoo
1 commit: 10fd7ce01ffe16320d5143c89a44f145228a5bdb
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 1 01:52:07 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 1 01:55:52 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10fd7ce0
7
8 sci-misc/vitables: Remove old (py3.6)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 sci-misc/vitables/vitables-3.0.0-r1.ebuild | 38 ------------------------------
13 1 file changed, 38 deletions(-)
14
15 diff --git a/sci-misc/vitables/vitables-3.0.0-r1.ebuild b/sci-misc/vitables/vitables-3.0.0-r1.ebuild
16 deleted file mode 100644
17 index a39e483b204..00000000000
18 --- a/sci-misc/vitables/vitables-3.0.0-r1.ebuild
19 +++ /dev/null
20 @@ -1,38 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -DISTUTILS_SINGLE_IMPL=1
27 -PYTHON_COMPAT=( python3_6 )
28 -
29 -inherit distutils-r1
30 -
31 -MY_P=ViTables-${PV}
32 -
33 -DESCRIPTION="A graphical tool for browsing / editing files in both PyTables and HDF5 formats"
34 -HOMEPAGE="https://vitables.org/"
35 -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
36 -
37 -LICENSE="GPL-3"
38 -SLOT="0"
39 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
40 -
41 -RDEPEND="
42 - $(python_gen_cond_dep '
43 - dev-python/setuptools[${PYTHON_MULTI_USEDEP}]
44 - dev-python/pytables[${PYTHON_MULTI_USEDEP}]
45 - dev-python/QtPy[gui,${PYTHON_MULTI_USEDEP}]
46 - ')"
47 -DEPEND="${RDEPEND}"
48 -
49 -S=${WORKDIR}/${MY_P}
50 -
51 -python_prepare_all() {
52 - # remove the PyQt5 dependency
53 - # because PyQt5 in Gentoo does not provide egg-info
54 - # see also: https://github.com/pyqt/python-qt5/issues/18
55 - sed "s:'PyQt5 [^ ]*::" -i setup.py || die
56 -
57 - distutils-r1_python_prepare_all
58 -}