From a1c971019a753bfbcf46e9f73ef75d6a21c1febe Mon Sep 17 00:00:00 2001 From: Michael Januszewski Date: Mon, 3 Aug 2009 03:12:45 +0000 Subject: Version bump. (Portage version: 2.2_rc33/cvs/Linux x86_64) --- dev-python/pytables/ChangeLog | 10 ++++-- dev-python/pytables/pytables-2.1.1.ebuild | 53 +++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+), 2 deletions(-) create mode 100644 dev-python/pytables/pytables-2.1.1.ebuild (limited to 'dev-python/pytables') diff --git a/dev-python/pytables/ChangeLog b/dev-python/pytables/ChangeLog index b76b6a94b3d9..2b5b33be119f 100644 --- a/dev-python/pytables/ChangeLog +++ b/dev-python/pytables/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/pytables -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pytables/ChangeLog,v 1.28 2009/02/18 17:49:18 patrick Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pytables/ChangeLog,v 1.29 2009/08/03 03:12:45 spock Exp $ + +*pytables-2.1.1 (03 Aug 2009) + + 03 Aug 2009; MichaƂ Januszewski + +pytables-2.1.1.ebuild: + Version bump. 18 Feb 2009; Patrick Lauer pytables-2.1.ebuild: Fixing dep, thanks to Matt Summers, fixes #254654 diff --git a/dev-python/pytables/pytables-2.1.1.ebuild b/dev-python/pytables/pytables-2.1.1.ebuild new file mode 100644 index 000000000000..aa615169793c --- /dev/null +++ b/dev-python/pytables/pytables-2.1.1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pytables/pytables-2.1.1.ebuild,v 1.1 2009/08/03 03:12:45 spock Exp $ + +EAPI="1" +NEED_PYTHON="2.2" + +inherit distutils multilib + +DESCRIPTION="A package for managing hierarchical datasets built on top of the HDF5 library." +SRC_URI="http://www.pytables.org/download/stable/tables-${PV}.tar.gz" +HOMEPAGE="http://www.pytables.org/" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +LICENSE="BSD" +IUSE="doc examples" + +DEPEND=">=sci-libs/hdf5-1.6.5 + >=dev-python/numpy-1.2.1 + dev-libs/lzo:2 + app-arch/bzip2" +RDEPEND="${DEPEND}" +S="${WORKDIR}/tables-${PV}" + +src_install() { + cd "{S}" + DOCS="ANNOUNCE.txt MIGRATING_TO_2.x.txt RELEASE_NOTES.txt THANKS" + + distutils_src_install + + if use examples; then + insinto /usr/share/doc/${PF} + doins -r examples + fi + + if use doc; then + cd doc + + dohtml -r html/* + + docinto text + dodoc text/* + + insinto /usr/share/doc/${PF} + doins -r usersguide.pdf scripts/ + fi +} + +src_test() { + python_version + "${python}" setup.py install --root="${T}" --no-compile "$@" || die "temporary install failed" + PYTHONPATH="${T}/usr/$(get_libdir)/python${PYVER}/site-packages" "${python}" tables/tests/test_all.py || die "tests failed" +} -- cgit v1.2.3-65-gdbad