Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pytables: ChangeLog pytables-2.1.2.ebuild
Date: Mon, 01 Feb 2010 20:40:09
Message-Id: E1Nc341-0005uP-PL@stork.gentoo.org
1 bicatali 10/02/01 20:40:05
2
3 Modified: ChangeLog pytables-2.1.2.ebuild
4 Log:
5 Added an mpi keyword to actually use mpi wrappers when hdf5 was compiled with mpi support
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.33 dev-python/pytables/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pytables/ChangeLog?rev=1.33&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pytables/ChangeLog?rev=1.33&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pytables/ChangeLog?r1=1.32&r2=1.33
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-python/pytables/ChangeLog,v
18 retrieving revision 1.32
19 retrieving revision 1.33
20 diff -u -r1.32 -r1.33
21 --- ChangeLog 19 Jan 2010 16:49:23 -0000 1.32
22 +++ ChangeLog 1 Feb 2010 20:40:05 -0000 1.33
23 @@ -1,6 +1,11 @@
24 # ChangeLog for dev-python/pytables
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pytables/ChangeLog,v 1.32 2010/01/19 16:49:23 bicatali Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pytables/ChangeLog,v 1.33 2010/02/01 20:40:05 bicatali Exp $
28 +
29 + 01 Feb 2010; Sébastien Fabbro <bicatali@g.o>
30 + pytables-2.1.2.ebuild:
31 + Added an mpi keyword to actually use mpi wrappers when hdf5 was compiled
32 + with mpi support
33
34 19 Jan 2010; Sébastien Fabbro <bicatali@g.o>
35 pytables-2.1.2.ebuild, +files/pytables-2.1.2-no-old-num.patch:
36
37
38
39 1.3 dev-python/pytables/pytables-2.1.2.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pytables/pytables-2.1.2.ebuild?rev=1.3&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pytables/pytables-2.1.2.ebuild?rev=1.3&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pytables/pytables-2.1.2.ebuild?r1=1.2&r2=1.3
44
45 Index: pytables-2.1.2.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/dev-python/pytables/pytables-2.1.2.ebuild,v
48 retrieving revision 1.2
49 retrieving revision 1.3
50 diff -u -r1.2 -r1.3
51 --- pytables-2.1.2.ebuild 19 Jan 2010 16:49:23 -0000 1.2
52 +++ pytables-2.1.2.ebuild 1 Feb 2010 20:40:05 -0000 1.3
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pytables/pytables-2.1.2.ebuild,v 1.2 2010/01/19 16:49:23 bicatali Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pytables/pytables-2.1.2.ebuild,v 1.3 2010/02/01 20:40:05 bicatali Exp $
58
59 EAPI=2
60 inherit eutils distutils
61 @@ -13,9 +13,9 @@
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 LICENSE="BSD"
65 -IUSE="doc examples"
66 +IUSE="doc examples mpi"
67
68 -DEPEND="sci-libs/hdf5
69 +DEPEND="sci-libs/hdf5[mpi=]
70 dev-python/numpy
71 dev-libs/lzo:2
72 app-arch/bzip2"
73 @@ -28,6 +28,9 @@
74 src_prepare() {
75 epatch "${FILESDIR}"/${P}-failingtests.patch
76 epatch "${FILESDIR}"/${P}-no-old-num.patch
77 + if use mpi; then
78 + export CC=mpicc
79 + fi
80 }
81
82 src_test() {