diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-04-02 17:57:29 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-04-02 17:57:29 +0200 |
commit | 8b847a3f0d6f7df2885610645d47de17d6706a54 (patch) | |
tree | c1ca1a8f92e89f8c33dac26190886c1f1e148801 /dev-python/blosc | |
parent | dev-scheme/gambit: amd64 stable wrt bug #836450 (diff) | |
download | gentoo-8b847a3f0d6f7df2885610645d47de17d6706a54.tar.gz gentoo-8b847a3f0d6f7df2885610645d47de17d6706a54.tar.bz2 gentoo-8b847a3f0d6f7df2885610645d47de17d6706a54.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/blosc-1.10.5.ebuild | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/dev-python/blosc/blosc-1.10.5.ebuild b/dev-python/blosc/blosc-1.10.5.ebuild deleted file mode 100644 index a5785bfc0ba9..000000000000 --- a/dev-python/blosc/blosc-1.10.5.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 - -MY_P=python-blosc-${PV} -DESCRIPTION="High performance compressor optimized for binary data" -HOMEPAGE="http://python-blosc.blosc.org" -SRC_URI=" - https://github.com/Blosc/python-blosc/archive/v${PV}.tar.gz - -> ${MY_P}.gh.tar.gz" -S=${WORKDIR}/${MY_P} - -SLOT="0" -LICENSE="MIT" -KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc 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/numpy[${PYTHON_USEDEP}] - ) -" - -DOCS=( ANNOUNCE.rst README.rst RELEASE_NOTES.rst ) - -python_prepare_all() { - export USE_SYSTEM_BLOSC=1 - export BLOSC_DIR="${EPREFIX}/usr" - distutils-r1_python_prepare_all -} - -python_test() { - "${EPYTHON}" -m blosc.test -v || die -} - -python_install() { - distutils-r1_python_install - python_optimize -} |