diff options
author | Benda Xu <heroxbd@gentoo.org> | 2020-09-25 20:33:37 +0800 |
---|---|---|
committer | Benda Xu <heroxbd@gentoo.org> | 2020-09-25 20:35:15 +0800 |
commit | f7c8062f1e60c8aa10726f45ff1c89dc08cd3ad6 (patch) | |
tree | b621c330d776cbb09931b0cd4c4afb658b1300af /sci-misc/vitables | |
parent | net-analyzer/dnstracer: Version 1.10 (diff) | |
download | gentoo-f7c8062f1e60c8aa10726f45ff1c89dc08cd3ad6.tar.gz gentoo-f7c8062f1e60c8aa10726f45ff1c89dc08cd3ad6.tar.bz2 gentoo-f7c8062f1e60c8aa10726f45ff1c89dc08cd3ad6.zip |
sci-misc/vitables: tested on Python 3.7 and 3.8.
Drop amd64-linux and x86-linux because the dependency QtPy is not
keyworded.
Unmask the package.
Closes: https://bugs.gentoo.org/737414
Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Benda Xu <heroxbd@gentoo.org>
Diffstat (limited to 'sci-misc/vitables')
-rw-r--r-- | sci-misc/vitables/vitables-3.0.0-r2.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/sci-misc/vitables/vitables-3.0.0-r2.ebuild b/sci-misc/vitables/vitables-3.0.0-r2.ebuild new file mode 100644 index 000000000000..3d7da16887dc --- /dev/null +++ b/sci-misc/vitables/vitables-3.0.0-r2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DISTUTILS_SINGLE_IMPL=1 +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit distutils-r1 + +MY_P=ViTables-${PV} + +DESCRIPTION="A graphical tool for browsing / editing files in both PyTables and HDF5 formats" +HOMEPAGE="https://vitables.org/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + $(python_gen_cond_dep ' + dev-python/setuptools[${PYTHON_MULTI_USEDEP}] + dev-python/pytables[${PYTHON_MULTI_USEDEP}] + dev-python/QtPy[gui,${PYTHON_MULTI_USEDEP}] + ')" +DEPEND="${RDEPEND}" + +S=${WORKDIR}/${MY_P} + +python_prepare_all() { + # remove the PyQt5 dependency + # because PyQt5 in Gentoo does not provide egg-info + # see also: https://github.com/pyqt/python-qt5/issues/18 + sed "s:'PyQt5 [^ ]*::" -i setup.py || die + + distutils-r1_python_prepare_all +} |