From 52b33ab4655d478a6911e6dec9cde281bceb7471 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20G=C3=B3rny?= Date: Fri, 27 Mar 2020 12:18:46 +0100 Subject: [PATCH] dev-python/h5py: Remove redundant versions MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/h5py/Manifest | 3 -- dev-python/h5py/h5py-2.7.0.ebuild | 67 ------------------------------- dev-python/h5py/h5py-2.7.1.ebuild | 67 ------------------------------- dev-python/h5py/h5py-2.9.0.ebuild | 67 ------------------------------- 4 files changed, 204 deletions(-) delete mode 100644 dev-python/h5py/h5py-2.7.0.ebuild delete mode 100644 dev-python/h5py/h5py-2.7.1.ebuild delete mode 100644 dev-python/h5py/h5py-2.9.0.ebuild diff --git a/dev-python/h5py/Manifest b/dev-python/h5py/Manifest index 8853c4df1881..3afb3c69df07 100644 --- a/dev-python/h5py/Manifest +++ b/dev-python/h5py/Manifest @@ -1,4 +1 @@ DIST h5py-2.10.0.tar.gz 301057 BLAKE2B 2e9da02224493b79b2df75ff9aa5cb16ab668d07bb95066356749be09091c54032efb3db8b53bdf0fbbbac2bcde532f9f051627327dcf3f35fb578b701ecc165 SHA512 c49b04f7dcddf03f36d4f063d79ecbe544e0b1daee432d4a76cfa83dac3a1f2cb144f40a74fb85ea17cb5b778f57f709969ea5d1a2afc5bdd5aecbc9d732898d -DIST h5py-2.7.0.tar.gz 256471 BLAKE2B c232eb86d00b9d1bb76903ea04bfd384bae7c9eb7b301de6aa450a46918f69132ab8d8d5a3f9b54095feee436a8aa9e9045c27ca1a120d665d6031c14218f0f5 SHA512 7c1e5d8b47c176521f5f62cfc4f782c09a0e003c5cbc07a673ccc3dfbe97df930b33801ef7311360892e3fad1d7d72561a8578aed9cb630d44e1a73543bb5da4 -DIST h5py-2.7.1.tar.gz 264225 BLAKE2B ffb0b52127f6cb9634b5ac3266a36bc0003144d302bdc300fff5f6f33e52b5a12e954cc2ef9fdfe9dfa0eddc810b30ee3f556cab2a31338500db666b87e64ddc SHA512 b702e3875c2767d2fabe66601820c517671fb5fc3321334aba081950b625435a1262554f39187cd1b41c6069e2b3826db6f0b610bfed2abe5db8a4dd8a29ecfd -DIST h5py-2.9.0.tar.gz 287853 BLAKE2B f1e5c985ec1431dca2b14490711ec7f125620e67ee6cecb56306d19cc8fd1d1c33d313f6477e98c4dbb780cc50c3a4ca073cfe69e079187f8f52a301aab60467 SHA512 73b1f59e3e2b3eceebf7b97e49bd8f5199afafd7ef29917af05ff8415c2f2129a5c59db9658944370c9bcf8fc04ab26948ee27fc6fd948a22d19cace1ce8c853 diff --git a/dev-python/h5py/h5py-2.7.0.ebuild b/dev-python/h5py/h5py-2.7.0.ebuild deleted file mode 100644 index 93ecc9cf6908..000000000000 --- a/dev-python/h5py/h5py-2.7.0.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_6 ) - -inherit distutils-r1 flag-o-matic - -DESCRIPTION="Simple Python interface to HDF5 files" -HOMEPAGE="http://www.h5py.org/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" -IUSE="doc test examples mpi" -RESTRICT="!test? ( test )" - -RDEPEND=" - sci-libs/hdf5:=[mpi=,hl(+)] - dev-python/numpy[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}]" - -DEPEND=" - ${RDEPEND} - dev-python/cython[${PYTHON_USEDEP}] - dev-python/pkgconfig[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( - dev-python/alabaster[${PYTHON_USEDEP}] - >=dev-python/sphinx-1.3.1[${PYTHON_USEDEP}] - ) - mpi? ( dev-python/mpi4py[${PYTHON_USEDEP}] )" - -pkg_setup() { - use mpi && export CC=mpicc -} - -python_prepare_all() { - append-cflags -fno-strict-aliasing - distutils-r1_python_prepare_all -} - -python_configure() { - esetup.py configure $(usex mpi --mpi '') -} - -python_compile_all() { - if use doc; then - cd "${S}"/docs || die - sed '/html_theme/s:default:alabaster:g' -i conf.py || die - emake html - fi -} - -python_test() { - esetup.py test -} - -python_install_all() { - DOCS=( README.rst ANN.rst ) - use doc && HTML_DOCS=( docs/_build/html/. ) - use examples && DOCS+=( examples ) - - distutils-r1_python_install_all -} diff --git a/dev-python/h5py/h5py-2.7.1.ebuild b/dev-python/h5py/h5py-2.7.1.ebuild deleted file mode 100644 index 1cad22dbb1a2..000000000000 --- a/dev-python/h5py/h5py-2.7.1.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_6 ) - -inherit distutils-r1 flag-o-matic - -DESCRIPTION="Simple Python interface to HDF5 files" -HOMEPAGE="http://www.h5py.org/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="doc test examples mpi" -RESTRICT="!test? ( test )" - -RDEPEND=" - sci-libs/hdf5:=[mpi=,hl(+)] - dev-python/numpy[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}]" - -DEPEND=" - ${RDEPEND} - dev-python/cython[${PYTHON_USEDEP}] - dev-python/pkgconfig[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( - dev-python/alabaster[${PYTHON_USEDEP}] - >=dev-python/sphinx-1.3.1[${PYTHON_USEDEP}] - ) - mpi? ( dev-python/mpi4py[${PYTHON_USEDEP}] )" - -pkg_setup() { - use mpi && export CC=mpicc -} - -python_prepare_all() { - append-cflags -fno-strict-aliasing - distutils-r1_python_prepare_all -} - -python_configure() { - esetup.py configure $(usex mpi --mpi '') -} - -python_compile_all() { - if use doc; then - cd "${S}"/docs || die - sed '/html_theme/s:default:alabaster:g' -i conf.py || die - emake html - fi -} - -python_test() { - esetup.py test -} - -python_install_all() { - DOCS=( README.rst ANN.rst ) - use doc && HTML_DOCS=( docs/_build/html/. ) - use examples && DOCS+=( examples ) - - distutils-r1_python_install_all -} diff --git a/dev-python/h5py/h5py-2.9.0.ebuild b/dev-python/h5py/h5py-2.9.0.ebuild deleted file mode 100644 index f8a8600ad6ed..000000000000 --- a/dev-python/h5py/h5py-2.9.0.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{6,7} ) - -inherit distutils-r1 flag-o-matic - -DESCRIPTION="Simple Python interface to HDF5 files" -HOMEPAGE="http://www.h5py.org/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="doc test examples mpi" -RESTRICT="!test? ( test )" - -RDEPEND=" - sci-libs/hdf5:=[mpi=,hl(+)] - dev-python/numpy[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}]" - -DEPEND=" - ${RDEPEND} - dev-python/cython[${PYTHON_USEDEP}] - dev-python/pkgconfig[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( - dev-python/alabaster[${PYTHON_USEDEP}] - >=dev-python/sphinx-1.3.1[${PYTHON_USEDEP}] - ) - mpi? ( dev-python/mpi4py[${PYTHON_USEDEP}] )" - -pkg_setup() { - use mpi && export CC=mpicc -} - -python_prepare_all() { - append-cflags -fno-strict-aliasing - distutils-r1_python_prepare_all -} - -python_configure() { - esetup.py configure $(usex mpi --mpi '') -} - -python_compile_all() { - if use doc; then - cd "${S}"/docs || die - sed '/html_theme/s:default:alabaster:g' -i conf.py || die - emake html - fi -} - -python_test() { - esetup.py test -} - -python_install_all() { - DOCS=( README.rst ANN.rst ) - use doc && HTML_DOCS=( docs/_build/html/. ) - use examples && DOCS+=( examples ) - - distutils-r1_python_install_all -} -- 2.26.2