diff options
author | Kacper Kowalik <xarthisius@gentoo.org> | 2012-10-04 15:43:18 +0000 |
---|---|---|
committer | Kacper Kowalik <xarthisius@gentoo.org> | 2012-10-04 15:43:18 +0000 |
commit | f271585c1b1d923e3790c602c589296b6c16863e (patch) | |
tree | 4fd942f738d08387b41fef6531869356c46cad31 /dev-python/h5py | |
parent | added prefix support (bug #433852) (diff) | |
download | gentoo-2-f271585c1b1d923e3790c602c589296b6c16863e.tar.gz gentoo-2-f271585c1b1d923e3790c602c589296b6c16863e.tar.bz2 gentoo-2-f271585c1b1d923e3790c602c589296b6c16863e.zip |
Version bump
(Portage version: 2.2.0_alpha134/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/h5py')
-rw-r--r-- | dev-python/h5py/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/h5py/h5py-2.1.0.ebuild | 30 |
2 files changed, 36 insertions, 2 deletions
diff --git a/dev-python/h5py/ChangeLog b/dev-python/h5py/ChangeLog index 03f716bd5d83..39c94dfa1ba1 100644 --- a/dev-python/h5py/ChangeLog +++ b/dev-python/h5py/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/h5py # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/h5py/ChangeLog,v 1.9 2012/02/23 05:34:40 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/h5py/ChangeLog,v 1.10 2012/10/04 15:43:18 xarthisius Exp $ + +*h5py-2.1.0 (04 Oct 2012) + + 04 Oct 2012; Kacper Kowalik <xarthisius@gentoo.org> +h5py-2.1.0.ebuild: + Version bump 23 Feb 2012; Patrick Lauer <patrick@gentoo.org> h5py-2.0.1.ebuild: Restricting pypy and jython @@ -73,4 +78,3 @@ 04 Nov 2008; Tim Cera <timcera@earthlink.net> +h5py-0.3.1.ebuild, +metadata.xml: Initial ebuild. - diff --git a/dev-python/h5py/h5py-2.1.0.ebuild b/dev-python/h5py/h5py-2.1.0.ebuild new file mode 100644 index 000000000000..da1732f45416 --- /dev/null +++ b/dev-python/h5py/h5py-2.1.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/h5py/h5py-2.1.0.ebuild,v 1.1 2012/10/04 15:43:18 xarthisius Exp $ + +EAPI="3" +PYTHON_DEPEND="*" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="2.5 *-jython 2.7-pypy-*" +DISTUTILS_SRC_TEST="setup.py" + +inherit distutils + +DESCRIPTION="A simple Python interface to HDF5 files." +HOMEPAGE="http://h5py.alfven.org/ http://code.google.com/p/h5py/ http://pypi.python.org/pypi/h5py" +SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND="sci-libs/hdf5 + dev-python/numpy" +DEPEND="${RDEPEND} + dev-python/setuptools + test? ( dev-python/unittest2 )" + +PYTHON_CFLAGS=("2.* + -fno-strict-aliasing") + +DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES="1" |