jlec        15/05/27 07:10:54

  Modified:             ChangeLog
  Added:                h5py-2.5.0.ebuild
  Log:
  Version Bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
E9402A79B03529A2!)

Revision  Changes    Path
1.37                 dev-python/h5py/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/h5py/ChangeLog?rev=1.37&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/h5py/ChangeLog?rev=1.37&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/h5py/ChangeLog?r1=1.36&r2=1.37

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/h5py/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog   8 Apr 2015 08:05:20 -0000       1.36
+++ ChangeLog   27 May 2015 07:10:54 -0000      1.37
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/h5py
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/h5py/ChangeLog,v 1.36 2015/04/08 
08:05:20 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/h5py/ChangeLog,v 1.37 2015/05/27 
07:10:54 jlec Exp $
+
+*h5py-2.5.0 (27 May 2015)
+
+  27 May 2015; Justin Lecher <[email protected]> +h5py-2.5.0.ebuild:
+  Version Bump
 
   08 Apr 2015; Michał Górny <[email protected]> h5py-2.3.1.ebuild,
   h5py-2.4.0.ebuild:



1.1                  dev-python/h5py/h5py-2.5.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/h5py/h5py-2.5.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/h5py/h5py-2.5.0.ebuild?rev=1.1&content-type=text/plain

Index: h5py-2.5.0.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/h5py/h5py-2.5.0.ebuild,v 1.1 
2015/05/27 07:10:54 jlec Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 python3_{3,4} )

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/setuptools[${PYTHON_USEDEP}]
        dev-python/cython[${PYTHON_USEDEP}]
        doc? (
                dev-python/alabaster[${PYTHON_USEDEP}]
                dev-python/sphinx[${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
}




Reply via email to