From: "Benda XU" <heroxbd@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/h5py/
Date: Fri, 19 Aug 2016 11:12:32 +0000 (UTC) [thread overview]
Message-ID: <1471605149.79e447ffd4aeaaa7200e9ef62ed29ca83b0e4001.heroxbd@gentoo> (raw)
commit: 79e447ffd4aeaaa7200e9ef62ed29ca83b0e4001
Author: Benda Xu <heroxbd <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 19 11:11:01 2016 +0000
Commit: Benda XU <heroxbd <AT> gentoo <DOT> org>
CommitDate: Fri Aug 19 11:12:29 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79e447ff
dev-python/h5py: version bump.
Package-Manager: portage-2.3.0
dev-python/h5py/Manifest | 1 +
dev-python/h5py/h5py-2.6.0.ebuild | 66 +++++++++++++++++++++++++++++++++++++++
2 files changed, 67 insertions(+)
diff --git a/dev-python/h5py/Manifest b/dev-python/h5py/Manifest
index ee40b29..8c079e4 100644
--- a/dev-python/h5py/Manifest
+++ b/dev-python/h5py/Manifest
@@ -1,3 +1,4 @@
DIST h5py-2.3.1.tar.gz 1072766 SHA256 447e55d5893ca285d1185a938548a12f3f7d4af441f1a7740ac28bc3aecf85c1 SHA512 f0da1d2ac855c02fb828444d719a1b23a580adb049335f3e732ace67558a125ac8cd3b3a68ac6bf9d10aa3ab19e4672b814eb28cc8c66910750c62efb655d744 WHIRLPOOL cdd2be028d450d1566776b056550af001dd382082cce5cac9fdb8968071b9f3e9855e2c30bf12bbb800c1313343980f74c2ad3d853318585bdc6134c8af5b35c
DIST h5py-2.4.0.tar.gz 172462 SHA256 faaeadf4b8ca14c054b7568842e0d12690de7d5d68af4ecce5d7b8fc104d8e60 SHA512 b341994899d27ceae81cdf920c44902e7db64cd3e613e2b4bcf19a6d0aea5f2fcc4acc946222a6e5d4b03d787b05e2dd2a2a55df99561f74d6e827a61f85b2c5 WHIRLPOOL 734e848437921f97b2169243993cd111d4f91578bce9980ec9d373113917185f47ea8b1d98732a61bbfc7c7ae8bc1481ddf53a6ee576705352b6d77e22263f27
DIST h5py-2.5.0.tar.gz 684354 SHA256 9833df8a679e108b561670b245bcf9f3a827b10ccb3a5fa1341523852cfac2f6 SHA512 4a83f9ae1855a7fad90133b327d426201c8ccfd2e7fbe9f39b2d61a2eee2f3ebe2ea02cf80f3d4e1ad659f8e790c173df8cc99b87d0b7ce63d34aa88cfdc7939 WHIRLPOOL 7d7852d1d2481077a81dbf194e72da10d013c43ede4d2d6e319e1e2be0f70d7495b0964ea7787ddbd145ac774cdabc32c5b7e51fc7c9bfec429d673b12bcc10b
+DIST h5py-2.6.0.tar.gz 245539 SHA256 b2afc35430d5e4c3435c996e4f4ea2aba1ea5610e2d2f46c9cae9f785e33c435 SHA512 6f1f8bd9f56f93d950b2601f35b3ad33d648da28970874de98e5d4f4009667e2aab8774d1d570dd16169a1bedec5e58ae60fc29053292b24f9f85d86c5671ac4 WHIRLPOOL 08476fbeba889e8c100150b44c26b7c7e3ad5f6b3662efb7e777153791a0b1a176f4081f0988aacc3769753a407c9e2cf802c950c8068a9f2f4fbd4d1a89b603
diff --git a/dev-python/h5py/h5py-2.6.0.ebuild b/dev-python/h5py/h5py-2.6.0.ebuild
new file mode 100644
index 0000000..e3722c2
--- /dev/null
+++ b/dev-python/h5py/h5py-2.6.0.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+inherit distutils-r1 flag-o-matic
+
+DESCRIPTION="Simple Python interface to HDF5 files"
+HOMEPAGE="http://www.h5py.org/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc test examples mpi"
+
+RDEPEND="
+ sci-libs/hdf5:=[mpi=]
+ dev-python/numpy[${PYTHON_USEDEP}]
+ dev-python/six[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+ dev-python/cython[${PYTHON_USEDEP}]
+ dev-python/pkgconfig[${PYTHON_USEDEP}]
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ doc? (
+ dev-python/alabaster[${PYTHON_USEDEP}]
+ >=dev-python/sphinx-1.3.1[${PYTHON_USEDEP}]
+ )
+ mpi? ( dev-python/mpi4py[${PYTHON_USEDEP}] )"
+
+pkg_setup() {
+ use mpi && export CC=mpicc
+}
+
+python_prepare_all() {
+ append-cflags -fno-strict-aliasing
+ distutils-r1_python_prepare_all
+}
+
+python_configure() {
+ esetup.py configure $(usex mpi --mpi '')
+}
+
+python_compile_all() {
+ if use doc; then
+ cd "${S}"/docs || die
+ sed '/html_theme/s:default:alabaster:g' -i conf.py || die
+ rm -r _build || die
+ emake html
+ fi
+}
+
+python_test() {
+ esetup.py test
+}
+
+python_install_all() {
+ DOCS=( README.rst ANN.rst )
+ use doc && HTML_DOCS=( docs/_build/html/. )
+ use examples && local EXAMPLES=( examples/. )
+
+ distutils-r1_python_install_all
+}
next reply other threads:[~2016-08-19 11:12 UTC|newest]
Thread overview: 91+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-19 11:12 Benda XU [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-10-26 19:30 [gentoo-commits] repo/gentoo:master commit in: dev-python/h5py/ Michał Górny
2025-10-26 19:30 Michał Górny
2025-10-17 5:57 Michał Górny
2025-10-14 6:48 Michał Górny
2025-10-14 6:48 Michał Górny
2025-07-04 15:40 Arthur Zamarin
2025-06-28 13:59 Arthur Zamarin
2025-06-28 12:00 Arthur Zamarin
2025-06-07 6:13 Michał Górny
2025-03-08 16:55 Michał Górny
2025-03-08 12:19 Arthur Zamarin
2025-03-08 12:19 Arthur Zamarin
2025-03-08 12:07 Arthur Zamarin
2025-02-20 5:06 Michał Górny
2024-10-12 7:54 Michał Górny
2024-10-12 7:52 Michał Górny
2024-10-12 7:52 Michał Górny
2024-10-12 7:04 Michał Górny
2024-09-27 8:07 Michał Górny
2024-05-20 16:25 Sam James
2024-04-27 8:26 Michał Górny
2024-04-27 8:04 Arthur Zamarin
2024-04-27 8:04 Arthur Zamarin
2024-04-27 7:40 Michał Górny
2024-04-22 3:40 Michał Górny
2024-04-13 6:26 Arthur Zamarin
2024-04-11 19:04 Michał Górny
2024-04-11 4:25 Michał Górny
2023-12-25 7:30 Sam James
2023-12-08 9:03 Arthur Zamarin
2023-12-06 7:41 Sam James
2023-12-05 13:42 Sam James
2023-12-05 13:41 Sam James
2023-11-11 20:50 Michał Górny
2023-11-11 20:17 Arthur Zamarin
2023-11-11 20:02 Sam James
2023-10-10 5:05 Michał Górny
2023-08-12 15:57 Arthur Zamarin
2023-08-12 0:10 Sam James
2023-07-08 10:47 Benda XU
2023-06-21 4:14 Michał Górny
2023-05-29 23:50 Sam James
2023-05-04 16:17 Michał Górny
2023-02-24 4:50 Michał Górny
2023-02-23 20:45 Arthur Zamarin
2023-02-23 20:18 Arthur Zamarin
2023-01-24 7:04 Michał Górny
2022-12-01 14:35 Michał Górny
2022-10-29 19:43 Sam James
2022-10-06 10:08 Andrew Ammerlaan
2022-09-08 19:39 Jakov Smolić
2022-06-25 11:18 Michał Górny
2022-06-25 9:06 Sam James
2022-06-24 20:59 Jakov Smolić
2022-05-30 20:38 Michał Górny
2022-05-30 19:40 Sam James
2022-05-27 9:12 Jakov Smolić
2022-05-25 7:12 Michał Górny
2022-04-22 10:47 Michał Górny
2021-11-11 8:07 Michał Górny
2021-11-11 8:07 Michał Górny
2021-07-25 1:04 Sam James
2021-07-24 15:12 Sam James
2021-06-22 16:29 Michał Górny
2021-06-09 15:19 Marek Szuba
2021-05-16 18:53 Sam James
2021-04-11 11:11 Sam James
2021-03-08 12:35 Michał Górny
2021-03-06 17:45 Michał Górny
2020-08-17 18:55 David Seifert
2020-05-25 5:55 Michał Górny
2020-05-14 8:03 Agostino Sarubbo
2020-05-13 14:52 Agostino Sarubbo
2020-03-27 11:35 Michał Górny
2020-03-17 15:14 Andrey Grozin
2020-01-30 21:26 Michał Górny
2020-01-25 3:53 Benda XU
2019-01-27 11:02 Benda XU
2018-03-01 19:04 Nicolas Bock
2018-01-04 20:35 Michał Górny
2017-07-15 21:43 Patrice Clement
2017-06-28 4:02 Sebastien Fabbro
2017-06-28 4:02 Sebastien Fabbro
2017-06-26 4:35 Sebastien Fabbro
2017-06-20 5:17 Agostino Sarubbo
2017-06-18 14:01 Agostino Sarubbo
2017-03-25 5:32 Benda XU
2016-12-10 3:28 Benda XU
2016-09-03 13:34 Mike Gilbert
2015-10-21 13:41 Justin Lecher
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1471605149.79e447ffd4aeaaa7200e9ef62ed29ca83b0e4001.heroxbd@gentoo \
--to=heroxbd@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox