diff options
author | 2020-08-17 20:54:43 +0200 | |
---|---|---|
committer | 2020-08-17 20:54:43 +0200 | |
commit | 525eb57a74300894904c3f0ef358f45e3a4f6182 (patch) | |
tree | 10be22e875ea6c9f6230daaf1b601644e41af0a0 /dev-python/h5py | |
parent | dev-python/cached-property: Add python 3.9 (diff) | |
download | gentoo-525eb57a74300894904c3f0ef358f45e3a4f6182.tar.gz gentoo-525eb57a74300894904c3f0ef358f45e3a4f6182.tar.bz2 gentoo-525eb57a74300894904c3f0ef358f45e3a4f6182.zip |
dev-python/h5py: Add python 3.9
* Add 'sci-libs/hdf5' to DEPEND
Closes: https://bugs.gentoo.org/729368
Package-Manager: Portage-3.0.3, Repoman-3.0.0
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-python/h5py')
-rw-r--r-- | dev-python/h5py/h5py-2.10.0-r1.ebuild | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/dev-python/h5py/h5py-2.10.0-r1.ebuild b/dev-python/h5py/h5py-2.10.0-r1.ebuild index 4196ed179b15..5ed817404c4d 100644 --- a/dev-python/h5py/h5py-2.10.0-r1.ebuild +++ b/dev-python/h5py/h5py-2.10.0-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6,7,8} ) +PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 flag-o-matic @@ -11,30 +11,33 @@ DESCRIPTION="Simple Python interface to HDF5 files" HOMEPAGE="https://www.h5py.org" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" -# disable mpi until mpi4py gets python3_8 -#IUSE="examples mpi" -IUSE="examples" - LICENSE="BSD" SLOT="0" KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" +# disable mpi until mpi4py gets python3_8 +#IUSE="examples mpi" +IUSE="examples" #RDEPEND="sci-libs/hdf5:=[mpi=,hl(+)] -RDEPEND="sci-libs/hdf5:=[hl(+)] +RDEPEND=" + sci-libs/hdf5:=[hl(+)] dev-python/numpy[${PYTHON_USEDEP}] dev-python/six[${PYTHON_USEDEP}]" BDEPEND="dev-python/pkgconfig[${PYTHON_USEDEP}]" # mpi? ( virtual/mpi ) -DEPEND="dev-python/cython[${PYTHON_USEDEP}] +DEPEND=" + ${RDEPEND} + dev-python/cython[${PYTHON_USEDEP}] doc? ( dev-python/alabaster[${PYTHON_USEDEP}] ) - test? ( dev-python/QtPy[testlib,${PYTHON_USEDEP}] - dev-python/cached-property[${PYTHON_USEDEP}] )" + test? ( + dev-python/QtPy[testlib,${PYTHON_USEDEP}] + dev-python/cached-property[${PYTHON_USEDEP}] + )" # mpi? ( dev-python/mpi4py[${PYTHON_USEDEP}] ) -PATCHES="${FILESDIR}/${P}-tests.patch" - +PATCHES=( "${FILESDIR}"/${P}-tests.patch ) DOCS=( README.rst AUTHORS ANN.rst ) distutils_enable_tests setup.py |