diff options
Diffstat (limited to 'sci-misc')
-rw-r--r-- | sci-misc/Manifest.gz | bin | 3238 -> 3235 bytes | |||
-rw-r--r-- | sci-misc/vitables/Manifest | 1 | ||||
-rw-r--r-- | sci-misc/vitables/vitables-3.0.0-r2.ebuild | 38 |
3 files changed, 39 insertions, 0 deletions
diff --git a/sci-misc/Manifest.gz b/sci-misc/Manifest.gz Binary files differindex dd2c4e941f1b..5a7f836256fe 100644 --- a/sci-misc/Manifest.gz +++ b/sci-misc/Manifest.gz diff --git a/sci-misc/vitables/Manifest b/sci-misc/vitables/Manifest index bb6b31d01a6c..c1a381a83029 100644 --- a/sci-misc/vitables/Manifest +++ b/sci-misc/vitables/Manifest @@ -1,3 +1,4 @@ DIST ViTables-3.0.0.tar.gz 860411 BLAKE2B 7ef5a7ac681ac7d0d2544987080478deba39db275dc0559db48d0375ebd83f260eb37dc3b9e99b131fd427b81668b882f15549e6f1955615f9dee5927c6cc57d SHA512 0ab0a3529f70111f6d2c1a765398d0c05607e2839a353670eebfa26bedd2092a33afe9f1cad14eec5d23f76fc5f54fa6f61e2e4089d9c2f3fd43396dbbbba7b1 EBUILD vitables-3.0.0-r1.ebuild 929 BLAKE2B cba4e7d580c20ae6437853725346565f342439d084e79eb3dedc1e44714d178233149533c72853db85bffca292cf8cfd1d641e24a9a02577b4cffc3a40649b1d SHA512 9f927980f5a336b867506d1d89c1658f87d90431023f2ac7eebf1e69184c993c64386b69329741620aa7c032c7a1f1d2601093f51698d5c1ffe970fcff5c7b3f +EBUILD vitables-3.0.0-r2.ebuild 911 BLAKE2B 8ac5c65cb405fc850ef853d71e59c360ad05825edfbb4dae45987b8ff3b56b9f75030ce95f068905724eb92d35b71f40628fbda17828f5d8f91a8a289ecaf238 SHA512 937682cb77303a5458f8e25ee010f7d7f64f5b922c4b413dab2eb958af970be7d92b021c87100c06c178fa5659fb043490a7137798f678999f4cc02cb9601bf2 MISC metadata.xml 637 BLAKE2B 5de3507f0c14fd0a8af230464a40a60f861433cddea38ea9490a00477f7677045845e48465d1684b0e93cc94ad6423b416e4993aabc23c793114c70365f514c6 SHA512 3e891f2f726db29eb10ae7f26e4dd30abeb8cc3d251b119c226cccfa6ca8fc90311dae6b96acd810e95423674fb57017cae938f48e213d4a873da2d9e9ee7789 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 +} |