Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/blosc/
Date: Sun, 25 Jul 2021 08:41:42
Message-Id: 1627202481.f8c163b1ef90b87351f649a7d87e3d595615ba68.mgorny@gentoo
1 commit: f8c163b1ef90b87351f649a7d87e3d595615ba68
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 25 06:54:24 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 25 08:41:21 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8c163b1
7
8 dev-python/blosc: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/blosc/Manifest | 1 -
13 dev-python/blosc/blosc-1.10.2.ebuild | 46 ------------------------------------
14 2 files changed, 47 deletions(-)
15
16 diff --git a/dev-python/blosc/Manifest b/dev-python/blosc/Manifest
17 index c35afc208d9..526b6735015 100644
18 --- a/dev-python/blosc/Manifest
19 +++ b/dev-python/blosc/Manifest
20 @@ -1,2 +1 @@
21 -DIST blosc-1.10.2.tar.gz 858096 BLAKE2B ff314011e1afc2d972c2445df9ad25c245494479201ddd0944ddf5f14aa0aa772c9da1e117eb5395f5488e7238aefe1236d9a5579b4d03be2b041790de9575e8 SHA512 82dab50a49ddd45d8276fd43999233f41b507e35af5897ed4945565fde8f56be0855b0dd926d254bd77904ec7a13ad3f024007159510b677769d97599b731222
22 DIST blosc-1.10.4.tar.gz 858123 BLAKE2B 01c9bd9486a27944caae1bc92b591c8b6f821bb5a6a0b44bc19f6c1778f2a2573a25783631c2140daa4d701569e584c93f8d5da76a92b73fb35ae5880ad2ea34 SHA512 bb41b83ff5198603e3721150976f95ffcbfe7b91bd5b11e1aa5e440dee1af7a9a6f5033e5aa4858117432e1522052ec074e9f14b5be52545e3752bc818637703
23
24 diff --git a/dev-python/blosc/blosc-1.10.2.ebuild b/dev-python/blosc/blosc-1.10.2.ebuild
25 deleted file mode 100644
26 index f4059392ee9..00000000000
27 --- a/dev-python/blosc/blosc-1.10.2.ebuild
28 +++ /dev/null
29 @@ -1,46 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{7..9} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="High performance compressor optimized for binary data"
40 -HOMEPAGE="http://python-blosc.blosc.org"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -SLOT="0"
44 -LICENSE="MIT"
45 -KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
46 -IUSE="test"
47 -RESTRICT="!test? ( test )"
48 -
49 -RDEPEND=">=dev-libs/c-blosc-1.19.0:="
50 -DEPEND="${RDEPEND}"
51 -BDEPEND="
52 - dev-python/scikit-build[${PYTHON_USEDEP}]
53 - test? (
54 - dev-python/numpy[${PYTHON_USEDEP}]
55 - )
56 -"
57 -
58 -DOCS=( ANNOUNCE.rst README.rst RELEASE_NOTES.rst )
59 -PATCHES=(
60 - "${FILESDIR}"/blosc-1.10.0-unbundle.patch
61 -)
62 -
63 -python_prepare_all() {
64 - export BLOSC_DIR="${EPREFIX}/usr"
65 - distutils-r1_python_prepare_all
66 -}
67 -
68 -python_test() {
69 - "${EPYTHON}" -m blosc.test -v || die
70 -}
71 -
72 -python_install() {
73 - distutils-r1_python_install
74 - python_optimize
75 -}