Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pytables: pytables-2.2.1.ebuild ChangeLog pytables-2.2.ebuild
Date: Fri, 05 Nov 2010 16:03:43
Message-Id: 20101105160339.B455020051@flycatcher.gentoo.org
1 xarthisius 10/11/05 16:03:39
2
3 Modified: ChangeLog
4 Added: pytables-2.2.1.ebuild
5 Removed: pytables-2.2.ebuild
6 Log:
7 Version bump. Drop old.
8
9 (Portage version: 2.1.9.24/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.37 dev-python/pytables/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytables/ChangeLog?rev=1.37&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytables/ChangeLog?rev=1.37&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytables/ChangeLog?r1=1.36&r2=1.37
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/pytables/ChangeLog,v
21 retrieving revision 1.36
22 retrieving revision 1.37
23 diff -u -r1.36 -r1.37
24 --- ChangeLog 3 Jul 2010 21:16:40 -0000 1.36
25 +++ ChangeLog 5 Nov 2010 16:03:39 -0000 1.37
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-python/pytables
28 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pytables/ChangeLog,v 1.36 2010/07/03 21:16:40 xarthisius Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pytables/ChangeLog,v 1.37 2010/11/05 16:03:39 xarthisius Exp $
31 +
32 +*pytables-2.2.1 (05 Nov 2010)
33 +
34 + 05 Nov 2010; Kacper Kowalik <xarthisius@g.o> -pytables-2.2.ebuild,
35 + +pytables-2.2.1.ebuild:
36 + Version bump. Drop old.
37
38 *pytables-2.2 (03 Jul 2010)
39
40
41
42
43 1.1 dev-python/pytables/pytables-2.2.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytables/pytables-2.2.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytables/pytables-2.2.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: pytables-2.2.1.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/pytables/pytables-2.2.1.ebuild,v 1.1 2010/11/05 16:03:39 xarthisius Exp $
53
54 EAPI=2
55
56 PYTHON_DEPEND="2"
57 SUPPORT_PYTHON_ABIS="1"
58
59 inherit distutils eutils
60
61 DESCRIPTION="A package for managing hierarchical datasets built on top of the HDF5 library."
62 HOMEPAGE="http://www.pytables.org/ http://pypi.python.org/pypi/tables"
63 SRC_URI="http://www.pytables.org/download/stable/tables-${PV}.tar.gz"
64
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 LICENSE="BSD"
68 IUSE="doc examples"
69
70 RDEPEND="
71 >=sci-libs/hdf5-1.6.5
72 >=dev-python/numpy-1.2.1
73 >=dev-python/numexpr-1.4.1
74 dev-libs/lzo:2
75 app-arch/bzip2"
76 DEPEND="${RDEPEND}
77 >=dev-python/cython-0.12.1"
78
79 RESTRICT_PYTHON_ABIS="3.*"
80
81 S=${WORKDIR}/tables-${PV}
82
83 DOCS="ANNOUNCE.txt MIGRATING_TO_2.x.txt RELEASE_NOTES.txt THANKS"
84
85 src_test() {
86 testing() {
87 PYTHONPATH="$(ls -d build-${PYTHON_ABI}/lib.*)" "$(PYTHON)" tables/tests/test_all.py
88 }
89 python_execute_function testing
90 }
91
92 src_install() {
93 distutils_src_install
94
95 if use examples; then
96 insinto /usr/share/doc/${PF}
97 doins -r examples || die
98 fi
99
100 if use doc; then
101 cd doc
102
103 dohtml -r html/* || die
104
105 docinto text
106 dodoc text/* || die
107
108 insinto /usr/share/doc/${PF}
109 doins -r usersguide.pdf scripts || die
110 fi
111 }