From 71deace00d1a2b091313fe137ab7092418c6f87c Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 10 Feb 2020 21:05:55 +0000 Subject: gentoo resync : 10.02.2020 --- sci-misc/Manifest.gz | Bin 3576 -> 3579 bytes sci-misc/vitables/Manifest | 2 +- sci-misc/vitables/vitables-3.0.0-r1.ebuild | 38 +++++++++++++++++++++++++++++ sci-misc/vitables/vitables-3.0.0.ebuild | 36 --------------------------- 4 files changed, 39 insertions(+), 37 deletions(-) create mode 100644 sci-misc/vitables/vitables-3.0.0-r1.ebuild delete mode 100644 sci-misc/vitables/vitables-3.0.0.ebuild (limited to 'sci-misc') diff --git a/sci-misc/Manifest.gz b/sci-misc/Manifest.gz index 5cde3427456f..c12988e8629f 100644 Binary files a/sci-misc/Manifest.gz and b/sci-misc/Manifest.gz differ diff --git a/sci-misc/vitables/Manifest b/sci-misc/vitables/Manifest index 677287fd1808..cd7b01f930c3 100644 --- a/sci-misc/vitables/Manifest +++ b/sci-misc/vitables/Manifest @@ -1,3 +1,3 @@ DIST ViTables-3.0.0.tar.gz 860411 BLAKE2B 7ef5a7ac681ac7d0d2544987080478deba39db275dc0559db48d0375ebd83f260eb37dc3b9e99b131fd427b81668b882f15549e6f1955615f9dee5927c6cc57d SHA512 0ab0a3529f70111f6d2c1a765398d0c05607e2839a353670eebfa26bedd2092a33afe9f1cad14eec5d23f76fc5f54fa6f61e2e4089d9c2f3fd43396dbbbba7b1 -EBUILD vitables-3.0.0.ebuild 878 BLAKE2B 0bcf8b17df188edfdfb3b2091de28a832a74c40982990b53c40fabc08801c8f8286451d2f528c9fdcb71265b5208d10feb1b93b1590d75493c9d6921ab075709 SHA512 3e9a49381dc317fe4a0057eff43e1803668dbcc106d0cda846237da9e9c1418f12188527357d3905eff7066ecae805338dd19e046c262689d0bba4b48245a6fe +EBUILD vitables-3.0.0-r1.ebuild 928 BLAKE2B 821e225b801d2e9c2786a8fefa683c963f09930a6ce5f53475840b3f17cc8b6e3ee63fdb0dc6988c7dc86ae73be6ebe97e57ad49afeb124de8feee1697bee254 SHA512 a10ad3ac22a7ab7dafb1dc6269da8dc856990f6732b8c2f90544820d28f115b37d9e4a9b52ed902ddf3c8bc1f29596f5e727a4a62e8ba3dd127a4fc17cf2b528 MISC metadata.xml 637 BLAKE2B 5de3507f0c14fd0a8af230464a40a60f861433cddea38ea9490a00477f7677045845e48465d1684b0e93cc94ad6423b416e4993aabc23c793114c70365f514c6 SHA512 3e891f2f726db29eb10ae7f26e4dd30abeb8cc3d251b119c226cccfa6ca8fc90311dae6b96acd810e95423674fb57017cae938f48e213d4a873da2d9e9ee7789 diff --git a/sci-misc/vitables/vitables-3.0.0-r1.ebuild b/sci-misc/vitables/vitables-3.0.0-r1.ebuild new file mode 100644 index 000000000000..c25d11326d4c --- /dev/null +++ b/sci-misc/vitables/vitables-3.0.0-r1.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 ) + +inherit distutils-r1 + +MY_P=ViTables-${PV} + +DESCRIPTION="A graphical tool for browsing / editing files in both PyTables and HDF5 formats" +HOMEPAGE="http://vitables.org/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +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 +} diff --git a/sci-misc/vitables/vitables-3.0.0.ebuild b/sci-misc/vitables/vitables-3.0.0.ebuild deleted file mode 100644 index e4f5b2f64482..000000000000 --- a/sci-misc/vitables/vitables-3.0.0.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# 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 ) - -inherit distutils-r1 - -MY_P=ViTables-${PV} - -DESCRIPTION="A graphical tool for browsing / editing files in both PyTables and HDF5 formats" -HOMEPAGE="http://vitables.org/" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" - -RDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - dev-python/pytables[${PYTHON_USEDEP}] - dev-python/QtPy[gui,${PYTHON_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 -} -- cgit v1.2.3