Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/mpi4py: ChangeLog mpi4py-1.2.ebuild
Date: Tue, 29 Dec 2009 21:08:50
Message-Id: E1NPjJ6-0000IL-MH@stork.gentoo.org
1 arfrever 09/12/29 21:08:44
2
3 Modified: ChangeLog
4 Added: mpi4py-1.2.ebuild
5 Log:
6 Version bump.
7 (Portage version: 15154-svn/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 dev-python/mpi4py/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mpi4py/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mpi4py/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mpi4py/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/mpi4py/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 29 Aug 2009 23:02:32 -0000 1.2
23 +++ ChangeLog 29 Dec 2009 21:08:44 -0000 1.3
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-python/mpi4py
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/mpi4py/ChangeLog,v 1.2 2009/08/29 23:02:32 arfrever Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/mpi4py/ChangeLog,v 1.3 2009/12/29 21:08:44 arfrever Exp $
29 +
30 +*mpi4py-1.2 (29 Dec 2009)
31 +
32 + 29 Dec 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
33 + +mpi4py-1.2.ebuild:
34 + Version bump.
35
36 29 Aug 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
37 mpi4py-1.1.0.ebuild:
38
39
40
41 1.1 dev-python/mpi4py/mpi4py-1.2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mpi4py/mpi4py-1.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mpi4py/mpi4py-1.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: mpi4py-1.2.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/mpi4py/mpi4py-1.2.ebuild,v 1.1 2009/12/29 21:08:44 arfrever Exp $
51
52 EAPI="2"
53 SUPPORT_PYTHON_ABIS="1"
54
55 inherit distutils
56
57 DESCRIPTION="Message Passing Interface for Python"
58 HOMEPAGE="http://code.google.com/p/mpi4py/ http://pypi.python.org/pypi/mpi4py"
59 SRC_URI="http://mpi4py.googlecode.com/files/${P}.tar.gz"
60
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 LICENSE="BSD"
64 IUSE="doc examples"
65
66 DEPEND="virtual/mpi"
67 RDEPEND="${DEPEND}"
68
69 src_test() {
70 testing() {
71 PYTHONPATH="$(ls -d build-${PYTHON_ABI}/lib.*)" mpiexec -n 2 "$(PYTHON)" test/runalltest.py
72 }
73 python_execute_function testing
74 }
75
76 src_install() {
77 distutils_src_install
78
79 if use doc; then
80 insinto /usr/share/doc/${PF}/html
81 doins -r docs/* || die "doins failed"
82 fi
83 if use examples; then
84 insinto /usr/share/doc/${PF}/examples
85 doins -r demo/* || die "doins failed"
86 fi
87 }