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/h5py/
Date: Thu, 04 Jan 2018 20:35:08
Message-Id: 1515098092.23e7ca6d3ec77a6dca448aaff26c7e5f982a033a.mgorny@gentoo
1 commit: 23e7ca6d3ec77a6dca448aaff26c7e5f982a033a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 4 20:02:14 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 4 20:34:52 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23e7ca6d
7
8 dev-python/h5py: Clean old up
9
10 dev-python/h5py/Manifest | 1 -
11 dev-python/h5py/h5py-2.3.1.ebuild | 53 ---------------------------------------
12 2 files changed, 54 deletions(-)
13
14 diff --git a/dev-python/h5py/Manifest b/dev-python/h5py/Manifest
15 index 605d92e21da..a52869c7e6b 100644
16 --- a/dev-python/h5py/Manifest
17 +++ b/dev-python/h5py/Manifest
18 @@ -1,2 +1 @@
19 -DIST h5py-2.3.1.tar.gz 1072766 BLAKE2B 40c5739a72e381cd5b7fcfcb1c7aaa771f2ba0c8145f65e6310d6181fcb5b8bdb5d3f14828f4ab164b5d1f16194e79000b1af55ffcda56890fe2631b11cc544e SHA512 f0da1d2ac855c02fb828444d719a1b23a580adb049335f3e732ace67558a125ac8cd3b3a68ac6bf9d10aa3ab19e4672b814eb28cc8c66910750c62efb655d744
20 DIST h5py-2.7.0.tar.gz 256471 BLAKE2B c232eb86d00b9d1bb76903ea04bfd384bae7c9eb7b301de6aa450a46918f69132ab8d8d5a3f9b54095feee436a8aa9e9045c27ca1a120d665d6031c14218f0f5 SHA512 7c1e5d8b47c176521f5f62cfc4f782c09a0e003c5cbc07a673ccc3dfbe97df930b33801ef7311360892e3fad1d7d72561a8578aed9cb630d44e1a73543bb5da4
21
22 diff --git a/dev-python/h5py/h5py-2.3.1.ebuild b/dev-python/h5py/h5py-2.3.1.ebuild
23 deleted file mode 100644
24 index 29efd5b8b5e..00000000000
25 --- a/dev-python/h5py/h5py-2.3.1.ebuild
26 +++ /dev/null
27 @@ -1,53 +0,0 @@
28 -# Copyright 1999-2016 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -
31 -EAPI=5
32 -
33 -PYTHON_COMPAT=( python{2_7,3_4} )
34 -
35 -inherit distutils-r1 flag-o-matic
36 -
37 -DESCRIPTION="Simple Python interface to HDF5 files"
38 -HOMEPAGE="http://www.h5py.org/"
39 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="BSD"
42 -SLOT="0"
43 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
44 -IUSE="test examples mpi"
45 -
46 -RDEPEND="
47 - sci-libs/hdf5:=[mpi=,hl(+)]
48 - dev-python/numpy[${PYTHON_USEDEP}]"
49 -DEPEND="${RDEPEND}
50 - dev-python/setuptools[${PYTHON_USEDEP}]
51 - dev-python/cython[${PYTHON_USEDEP}]
52 - mpi? ( dev-python/mpi4py[${PYTHON_USEDEP}] )"
53 -
54 -pkg_setup() {
55 - use mpi && export CC=mpicc
56 -}
57 -
58 -python_prepare_all() {
59 - append-cflags -fno-strict-aliasing
60 - distutils-r1_python_prepare_all
61 -}
62 -
63 -python_compile() {
64 - distutils-r1_python_compile --mpi=$(usex mpi yes no)
65 -}
66 -
67 -python_test() {
68 - esetup.py test --mpi=$(usex mpi yes no)
69 -}
70 -
71 -python_install() {
72 - distutils-r1_python_install --mpi=$(usex mpi yes no)
73 -}
74 -
75 -python_install_all() {
76 - DOCS=( README.rst ANN.rst )
77 - use examples && local EXAMPLES=( examples/. )
78 -
79 - distutils-r1_python_install_all
80 -}