diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-11-02 11:30:32 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-11-02 11:34:04 +0100 |
commit | c74a10c658526806953ec162339ee2caacb1f3ec (patch) | |
tree | f91a8f675e4581df87e1f9626c2a7a562539ed7a /dev-python/blosc | |
parent | dev-python/binaryornot: Remove old (diff) | |
download | gentoo-c74a10c658526806953ec162339ee2caacb1f3ec.tar.gz gentoo-c74a10c658526806953ec162339ee2caacb1f3ec.tar.bz2 gentoo-c74a10c658526806953ec162339ee2caacb1f3ec.zip |
dev-python/blosc: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/blosc')
-rw-r--r-- | dev-python/blosc/Manifest | 1 | ||||
-rw-r--r-- | dev-python/blosc/blosc-1.9.1-r1.ebuild | 49 |
2 files changed, 0 insertions, 50 deletions
diff --git a/dev-python/blosc/Manifest b/dev-python/blosc/Manifest index d6505dcf6e56..e8bdd9e77276 100644 --- a/dev-python/blosc/Manifest +++ b/dev-python/blosc/Manifest @@ -1,2 +1 @@ -DIST blosc-1.9.1.tar.gz 809621 BLAKE2B fdeb76e5714d94a9992b59b99926a54457850c69d9d2c217b5a57cd8ce0d8886853ec139683a68c96d3a697b11f68163a7f267cd6060eacba78f595d4ff67d5d SHA512 61ed4e184c1a3e19a2556e5eb4f30030c00294af7b2d5b6c0641160db53c65756170c138229edd684f41606b2a3ae0b1c4f5e01495e74875e5123d7e1d8ed9c2 DIST blosc-1.9.2.tar.gz 816897 BLAKE2B 7d1a2d925500c8ddb93975dd785c03b91dec2716a438915d5dfdb739c650de8a47ed80eb25fc55357e69b586c446c5af61212e0a4fba8158839a66849309f478 SHA512 a8f53afb7fb1bb742e2daa03015b636d4dbb1fd073be079022364ec67035c9e6ee372ab07f7ce06579b85d9fcaedd2a11f30b9cf5b2bd1d1ea62cf32a8aa3c1f diff --git a/dev-python/blosc/blosc-1.9.1-r1.ebuild b/dev-python/blosc/blosc-1.9.1-r1.ebuild deleted file mode 100644 index 785ca86e3206..000000000000 --- a/dev-python/blosc/blosc-1.9.1-r1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=no -PYTHON_COMPAT=( python3_{6..9} ) - -inherit distutils-r1 - -DESCRIPTION="High performance compressor optimized for binary data" -HOMEPAGE="http://python-blosc.blosc.org" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -SLOT="0" -LICENSE="MIT" -KEYWORDS="amd64 ~arm ~arm64 ~ppc x86 ~amd64-linux ~x86-linux" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=">=dev-libs/c-blosc-1.19.0:=" -DEPEND="${RDEPEND}" -BDEPEND=" - dev-python/scikit-build[${PYTHON_USEDEP}] - test? ( - dev-python/nose[${PYTHON_USEDEP}] - dev-python/numpy[${PYTHON_USEDEP}] - ) -" - -PATCHES=( - "${FILESDIR}"/${P}-unbundle.patch -) - -python_prepare_all() { - export BLOSC_DIR="${EPREFIX}/usr" - distutils-r1_python_prepare_all - DOCS=( ANNOUNCE.rst README.rst RELEASE_NOTES.rst ) -} - -python_test() { - cd "${BUILD_DIR}"/lib || die - PYTHONPATH=. nosetests -v || die -} - -python_install() { - distutils-r1_python_install - python_optimize -} |