Gentoo Archives: gentoo-commits

From: "Michael Januszewski (spock)" <spock@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pytables: pytables-2.1.1.ebuild ChangeLog
Date: Mon, 03 Aug 2009 03:12:47
Message-Id: E1MXnyf-0003lq-Oz@stork.gentoo.org
1 spock 09/08/03 03:12:45
2
3 Modified: ChangeLog
4 Added: pytables-2.1.1.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.29 dev-python/pytables/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pytables/ChangeLog?rev=1.29&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pytables/ChangeLog?rev=1.29&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pytables/ChangeLog?r1=1.28&r2=1.29
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pytables/ChangeLog,v
19 retrieving revision 1.28
20 retrieving revision 1.29
21 diff -u -r1.28 -r1.29
22 --- ChangeLog 18 Feb 2009 17:49:18 -0000 1.28
23 +++ ChangeLog 3 Aug 2009 03:12:45 -0000 1.29
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-python/pytables
26 -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pytables/ChangeLog,v 1.28 2009/02/18 17:49:18 patrick Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pytables/ChangeLog,v 1.29 2009/08/03 03:12:45 spock Exp $
30 +
31 +*pytables-2.1.1 (03 Aug 2009)
32 +
33 + 03 Aug 2009; MichaƂ Januszewski <spock@g.o>
34 + +pytables-2.1.1.ebuild:
35 + Version bump.
36
37 18 Feb 2009; Patrick Lauer <patrick@g.o> pytables-2.1.ebuild:
38 Fixing dep, thanks to Matt Summers, fixes #254654
39
40
41
42 1.1 dev-python/pytables/pytables-2.1.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pytables/pytables-2.1.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pytables/pytables-2.1.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pytables-2.1.1.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/pytables/pytables-2.1.1.ebuild,v 1.1 2009/08/03 03:12:45 spock Exp $
52
53 EAPI="1"
54 NEED_PYTHON="2.2"
55
56 inherit distutils multilib
57
58 DESCRIPTION="A package for managing hierarchical datasets built on top of the HDF5 library."
59 SRC_URI="http://www.pytables.org/download/stable/tables-${PV}.tar.gz"
60 HOMEPAGE="http://www.pytables.org/"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 LICENSE="BSD"
64 IUSE="doc examples"
65
66 DEPEND=">=sci-libs/hdf5-1.6.5
67 >=dev-python/numpy-1.2.1
68 dev-libs/lzo:2
69 app-arch/bzip2"
70 RDEPEND="${DEPEND}"
71 S="${WORKDIR}/tables-${PV}"
72
73 src_install() {
74 cd "{S}"
75 DOCS="ANNOUNCE.txt MIGRATING_TO_2.x.txt RELEASE_NOTES.txt THANKS"
76
77 distutils_src_install
78
79 if use examples; then
80 insinto /usr/share/doc/${PF}
81 doins -r examples
82 fi
83
84 if use doc; then
85 cd doc
86
87 dohtml -r html/*
88
89 docinto text
90 dodoc text/*
91
92 insinto /usr/share/doc/${PF}
93 doins -r usersguide.pdf scripts/
94 fi
95 }
96
97 src_test() {
98 python_version
99 "${python}" setup.py install --root="${T}" --no-compile "$@" || die "temporary install failed"
100 PYTHONPATH="${T}/usr/$(get_libdir)/python${PYVER}/site-packages" "${python}" tables/tests/test_all.py || die "tests failed"
101 }