public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/h5py: h5py-2.5.0.ebuild ChangeLog
@ 2015-05-27  7:10 Justin Lecher (jlec)
  0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher (jlec) @ 2015-05-27  7:10 UTC (permalink / raw
  To: gentoo-commits

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 <jlec@gentoo.org> +h5py-2.5.0.ebuild:
+  Version Bump
 
   08 Apr 2015; Michał Górny <mgorny@gentoo.org> 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
}





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/h5py: h5py-2.5.0.ebuild ChangeLog
@ 2015-05-27  9:02 Justin Lecher (jlec)
  0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher (jlec) @ 2015-05-27  9:02 UTC (permalink / raw
  To: gentoo-commits

jlec        15/05/27 09:02:48

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

Revision  Changes    Path
1.2                  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.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/h5py/h5py-2.5.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/h5py/h5py-2.5.0.ebuild?r1=1.1&r2=1.2

Index: h5py-2.5.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/h5py/h5py-2.5.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- h5py-2.5.0.ebuild	27 May 2015 07:10:54 -0000	1.1
+++ h5py-2.5.0.ebuild	27 May 2015 09:02:48 -0000	1.2
@@ -1,6 +1,6 @@
 # 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 $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/h5py/h5py-2.5.0.ebuild,v 1.2 2015/05/27 09:02:48 jlec Exp $
 
 EAPI=5
 
@@ -22,8 +22,9 @@
 	dev-python/numpy[${PYTHON_USEDEP}]
 	dev-python/six[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]
 	dev-python/cython[${PYTHON_USEDEP}]
+	dev-python/pkgconfig[${PYTHON_USEDEP}]
+	dev-python/setuptools[${PYTHON_USEDEP}]
 	doc? (
 		dev-python/alabaster[${PYTHON_USEDEP}]
 		dev-python/sphinx[${PYTHON_USEDEP}]



1.38                 dev-python/h5py/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/h5py/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog	27 May 2015 07:10:54 -0000	1.37
+++ ChangeLog	27 May 2015 09:02:48 -0000	1.38
@@ -1,6 +1,9 @@
 # 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.37 2015/05/27 07:10:54 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/h5py/ChangeLog,v 1.38 2015/05/27 09:02:48 jlec Exp $
+
+  27 May 2015; Justin Lecher <jlec@gentoo.org> h5py-2.5.0.ebuild:
+  Add missing dep
 
 *h5py-2.5.0 (27 May 2015)
 





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/h5py: h5py-2.5.0.ebuild ChangeLog
@ 2015-05-30  7:59 Justin Lecher (jlec)
  0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher (jlec) @ 2015-05-30  7:59 UTC (permalink / raw
  To: gentoo-commits

jlec        15/05/30 07:59:52

  Modified:             h5py-2.5.0.ebuild ChangeLog
  Log:
  Fix dependency version of sphinx for themeing support, bug #550720
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)

Revision  Changes    Path
1.3                  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.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/h5py/h5py-2.5.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/h5py/h5py-2.5.0.ebuild?r1=1.2&r2=1.3

Index: h5py-2.5.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/h5py/h5py-2.5.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- h5py-2.5.0.ebuild	27 May 2015 09:02:48 -0000	1.2
+++ h5py-2.5.0.ebuild	30 May 2015 07:59:52 -0000	1.3
@@ -1,6 +1,6 @@
 # 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.2 2015/05/27 09:02:48 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/h5py/h5py-2.5.0.ebuild,v 1.3 2015/05/30 07:59:52 jlec Exp $
 
 EAPI=5
 
@@ -27,7 +27,7 @@
 	dev-python/setuptools[${PYTHON_USEDEP}]
 	doc? (
 		dev-python/alabaster[${PYTHON_USEDEP}]
-		dev-python/sphinx[${PYTHON_USEDEP}]
+		>=dev-python/sphinx-1.3.1[${PYTHON_USEDEP}]
 		)
 	mpi? ( dev-python/mpi4py[${PYTHON_USEDEP}] )"
 



1.39                 dev-python/h5py/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/h5py/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog	27 May 2015 09:02:48 -0000	1.38
+++ ChangeLog	30 May 2015 07:59:52 -0000	1.39
@@ -1,6 +1,9 @@
 # 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.38 2015/05/27 09:02:48 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/h5py/ChangeLog,v 1.39 2015/05/30 07:59:52 jlec Exp $
+
+  30 May 2015; Justin Lecher <jlec@gentoo.org> h5py-2.5.0.ebuild:
+  Fix dependency version of sphinx for themeing support, bug #550720
 
   27 May 2015; Justin Lecher <jlec@gentoo.org> h5py-2.5.0.ebuild:
   Add missing dep





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-05-30  8:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-27  9:02 [gentoo-commits] gentoo-x86 commit in dev-python/h5py: h5py-2.5.0.ebuild ChangeLog Justin Lecher (jlec)
  -- strict thread matches above, loose matches on Subject: below --
2015-05-30  7:59 Justin Lecher (jlec)
2015-05-27  7:10 Justin Lecher (jlec)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox