Gentoo Archives: gentoo-commits

From: "Tiziano Mueller (dev-zero)" <dev-zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pytables: ChangeLog pytables-1.4.ebuild pytables-2.0.2.ebuild
Date: Sat, 23 Feb 2008 13:21:13
Message-Id: E1JSuJS-0005vS-DA@stork.gentoo.org
1 dev-zero 08/02/23 13:21:10
2
3 Modified: ChangeLog pytables-1.4.ebuild
4 Added: pytables-2.0.2.ebuild
5 Log:
6 Version bump (bug #196062). Fixed dependency in 1.4 (bug #211106, thanks to Chris Kerr). Added tests for both. Note: 1.4 is deprecated and 3 tests fail on x86_64 ant won't be fixed. Since 1.4 and 2.x are not compatible, 1.4 hasn't been dropped for now. Fixed wrong license.
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.25 dev-python/pytables/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pytables/ChangeLog?rev=1.25&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pytables/ChangeLog?rev=1.25&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pytables/ChangeLog?r1=1.24&r2=1.25
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pytables/ChangeLog,v
19 retrieving revision 1.24
20 retrieving revision 1.25
21 diff -u -r1.24 -r1.25
22 --- ChangeLog 5 May 2007 08:53:44 -0000 1.24
23 +++ ChangeLog 23 Feb 2008 13:21:09 -0000 1.25
24 @@ -1,6 +1,15 @@
25 # ChangeLog for dev-python/pytables
26 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pytables/ChangeLog,v 1.24 2007/05/05 08:53:44 lucass Exp $
28 +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pytables/ChangeLog,v 1.25 2008/02/23 13:21:09 dev-zero Exp $
30 +
31 +*pytables-2.0.2 (23 Feb 2008)
32 +
33 + 23 Feb 2008; Tiziano Müller <dev-zero@g.o> pytables-1.4.ebuild,
34 + +pytables-2.0.2.ebuild:
35 + Version bump (bug #196062). Fixed dependency in 1.4 (bug #211106, thanks to
36 + Chris Kerr). Added tests for both. Note: 1.4 is deprecated and 3 tests fail
37 + on x86_64 ant won't be fixed. Since 1.4 and 2.x are not compatible, 1.4
38 + hasn't been dropped for now. Fixed wrong license.
39
40 05 May 2007; Lukasz Strzygowski <lucass@g.o>
41 -pytables-0.7.2.ebuild, -pytables-0.8.1.ebuild, -pytables-0.9.1.ebuild,
42
43
44
45 1.3 dev-python/pytables/pytables-1.4.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pytables/pytables-1.4.ebuild?rev=1.3&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pytables/pytables-1.4.ebuild?rev=1.3&content-type=text/plain
49 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pytables/pytables-1.4.ebuild?r1=1.2&r2=1.3
50
51 Index: pytables-1.4.ebuild
52 ===================================================================
53 RCS file: /var/cvsroot/gentoo-x86/dev-python/pytables/pytables-1.4.ebuild,v
54 retrieving revision 1.2
55 retrieving revision 1.3
56 diff -u -r1.2 -r1.3
57 --- pytables-1.4.ebuild 5 May 2007 08:53:44 -0000 1.2
58 +++ pytables-1.4.ebuild 23 Feb 2008 13:21:09 -0000 1.3
59 @@ -1,26 +1,26 @@
60 -# Copyright 1999-2007 Gentoo Foundation
61 +# Copyright 1999-2008 Gentoo Foundation
62 # Distributed under the terms of the GNU General Public License v2
63 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pytables/pytables-1.4.ebuild,v 1.2 2007/05/05 08:53:44 lucass Exp $
64 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pytables/pytables-1.4.ebuild,v 1.3 2008/02/23 13:21:09 dev-zero Exp $
65
66 -NEED_PYTHON=2.2
67 +NEED_PYTHON="2.2"
68
69 inherit distutils
70
71 DESCRIPTION="Module for Python that use HDF5"
72 SRC_URI="mirror://sourceforge/pytables/${P}.tar.gz"
73 HOMEPAGE="http://pytables.sourceforge.net/"
74 -
75 -DEPEND=">=sys-devel/gcc-3.2
76 - sci-libs/hdf5
77 - >=dev-python/numarray-1.0"
78 -
79 SLOT="0"
80 KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
81 -LICENSE="as-is"
82 +LICENSE="BSD"
83 IUSE="doc examples"
84 -DOCS="ANNOUNCE.txt RELEASE-NOTES.txt THANKS TODO.txt VERSION"
85 +
86 +DEPEND="sci-libs/hdf5
87 + >=dev-python/numarray-1.5.2"
88 +RDEPEND="${DEPEND}"
89
90 src_install() {
91 + DOCS="ANNOUNCE.txt RELEASE-NOTES.txt THANKS TODO.txt VERSION"
92 +
93 distutils_src_install
94
95 if use examples; then
96 @@ -40,3 +40,9 @@
97 doins -r usersguide.pdf scripts/
98 fi
99 }
100 +
101 +src_test() {
102 + python_version
103 + "${python}" setup.py install --root="${T}" --no-compile "$@" || die "temporary install failed"
104 + PYTHONPATH="${T}/usr/$(get_libdir)/python${PYVER}/site-packages" "${python}" tables/tests/test_all.py || die "tests failed"
105 +}
106
107
108
109 1.1 dev-python/pytables/pytables-2.0.2.ebuild
110
111 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pytables/pytables-2.0.2.ebuild?rev=1.1&view=markup
112 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pytables/pytables-2.0.2.ebuild?rev=1.1&content-type=text/plain
113
114 Index: pytables-2.0.2.ebuild
115 ===================================================================
116 # Copyright 1999-2008 Gentoo Foundation
117 # Distributed under the terms of the GNU General Public License v2
118 # $Header: /var/cvsroot/gentoo-x86/dev-python/pytables/pytables-2.0.2.ebuild,v 1.1 2008/02/23 13:21:09 dev-zero Exp $
119
120 EAPI="1"
121 NEED_PYTHON="2.2"
122
123 inherit distutils multilib
124
125 DESCRIPTION="A package for managing hierarchical datasets built on top of the HDF5 library."
126 SRC_URI="http://www.pytables.org/download/stable/${P}.tar.gz"
127 HOMEPAGE="http://www.pytables.org/"
128 SLOT="0"
129 KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
130 LICENSE="BSD"
131 IUSE="doc examples"
132
133 DEPEND="sci-libs/hdf5
134 >=dev-python/numpy-1.0.3
135 dev-libs/lzo:2
136 app-arch/bzip2"
137 RDEPEND="${DEPEND}"
138
139
140 src_install() {
141 DOCS="ANNOUNCE.txt MIGRATING_TO_2.x.txt RELEASE_NOTES.txt THANKS TODO.txt VERSION"
142
143 distutils_src_install
144
145 if use examples; then
146 insinto /usr/share/doc/${PF}
147 doins -r examples
148 fi
149
150 if use doc; then
151 cd doc
152
153 dohtml -r html/*
154
155 docinto text
156 dodoc text/*
157
158 insinto /usr/share/doc/${PF}
159 doins -r usersguide.pdf scripts/
160 fi
161 }
162
163 src_test() {
164 python_version
165 "${python}" setup.py install --root="${T}" --no-compile "$@" || die "temporary install failed"
166 PYTHONPATH="${T}/usr/$(get_libdir)/python${PYVER}/site-packages" "${python}" tables/tests/test_all.py || die "tests failed"
167 }
168
169
170
171 --
172 gentoo-commits@l.g.o mailing list