public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/pytables: metadata.xml ChangeLog pytables-2.3.ebuild
@ 2011-10-16  9:05 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; only message in thread
From: Kacper Kowalik (xarthisius) @ 2011-10-16  9:05 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/10/16 09:05:27

  Modified:             metadata.xml ChangeLog
  Added:                pytables-2.3.ebuild
  Log:
  Version bump, install pdf userguide by default, add contrib IUSE for installing additional scripts
  
  (Portage version: 2.2.0_alpha63/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  dev-python/pytables/metadata.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytables/metadata.xml?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytables/metadata.xml?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytables/metadata.xml?r1=1.3&r2=1.4

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytables/metadata.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- metadata.xml	3 Jul 2010 21:16:40 -0000	1.3
+++ metadata.xml	16 Oct 2011 09:05:27 -0000	1.4
@@ -11,4 +11,7 @@
   from Pyrex sources, makes it a fast, yet extremely easy to use tool
   for interactively save and retrieve large amounts of data.
 </longdescription>
+<use>
+	<flag name="contrib">Install user-contributed files</flag>
+</use>
 </pkgmetadata>



1.38                 dev-python/pytables/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytables/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog	5 Nov 2010 16:03:39 -0000	1.37
+++ ChangeLog	16 Oct 2011 09:05:27 -0000	1.38
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/pytables
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytables/ChangeLog,v 1.37 2010/11/05 16:03:39 xarthisius Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytables/ChangeLog,v 1.38 2011/10/16 09:05:27 xarthisius Exp $
+
+*pytables-2.3 (16 Oct 2011)
+
+  16 Oct 2011; Kacper Kowalik <xarthisius@gentoo.org> +pytables-2.3.ebuild:
+  Version bump, install pdf userguide by default, add contrib IUSE for
+  installing additional scripts
 
 *pytables-2.2.1 (05 Nov 2010)
 



1.1                  dev-python/pytables/pytables-2.3.ebuild

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

Index: pytables-2.3.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pytables/pytables-2.3.ebuild,v 1.1 2011/10/16 09:05:27 xarthisius Exp $

EAPI=4

PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"

MY_PN=tables
MY_P=${MY_PN}-${PV}

inherit distutils eutils

DESCRIPTION="A package for managing hierarchical datasets built on top of the HDF5 library."
HOMEPAGE="http://www.pytables.org http://pypi.python.org/pypi/tables"
SRC_URI="mirror://sourceforge/${PN}/${PV}/${MY_P}.tar.gz"

SLOT="0"
KEYWORDS="~amd64 ~x86"
LICENSE="BSD"
IUSE="doc contrib examples"

RDEPEND="
	sci-libs/hdf5
	dev-python/numpy
	dev-python/numexpr
	dev-libs/lzo:2
	app-arch/bzip2"
DEPEND="${RDEPEND}
	dev-python/cython"

RESTRICT_PYTHON_ABIS="3.*"

S=${WORKDIR}/${MY_P}

DOCS="ANNOUNCE.txt MIGRATING_TO_2.x.txt RELEASE_NOTES.txt THANKS doc/usersguide-${PV}.pdf"

src_test() {
	testing() {
		PYTHONPATH="$(ls -d build-${PYTHON_ABI}/lib.*)" "$(PYTHON)" tables/tests/test_all.py
	}
	python_execute_function testing
}

src_install() {
	distutils_src_install

	if use examples; then
		insinto /usr/share/doc/${PF}
		doins -r examples
	fi

	pushd doc > /dev/null
	use doc && dohtml -r html/*

	insinto /usr/share/doc/${PF}
	doins -r scripts
	popd > /dev/null

	insinto /usr/share/${PF}
	use contrib && doins -r contrib
}






^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2011-10-16  9:05 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-16  9:05 [gentoo-commits] gentoo-x86 commit in dev-python/pytables: metadata.xml ChangeLog pytables-2.3.ebuild Kacper Kowalik (xarthisius)

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