Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/mpi4py: mpi4py-1.3.1.ebuild ChangeLog
Date: Thu, 21 Nov 2013 09:38:40
Message-Id: 20131121093832.E746E20005@flycatcher.gentoo.org
1 jlec 13/11/21 09:38:32
2
3 Modified: mpi4py-1.3.1.ebuild ChangeLog
4 Log:
5 dev-python/mpi4py: Backport test fix for py3.3, #487836
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
8
9 Revision Changes Path
10 1.2 dev-python/mpi4py/mpi4py-1.3.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpi4py/mpi4py-1.3.1.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpi4py/mpi4py-1.3.1.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpi4py/mpi4py-1.3.1.ebuild?r1=1.1&r2=1.2
15
16 Index: mpi4py-1.3.1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/mpi4py/mpi4py-1.3.1.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- mpi4py-1.3.1.ebuild 9 Nov 2013 10:54:07 -0000 1.1
23 +++ mpi4py-1.3.1.ebuild 21 Nov 2013 09:38:32 -0000 1.2
24 @@ -1,11 +1,10 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/mpi4py/mpi4py-1.3.1.ebuild,v 1.1 2013/11/09 10:54:07 jlec Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/mpi4py/mpi4py-1.3.1.ebuild,v 1.2 2013/11/21 09:38:32 jlec Exp $
29
30 EAPI=5
31 -# Still fails test with py3.3
32 -# https://bitbucket.org/mpi4py/mpi4py/issue/2/fails-test-with-py33
33 -PYTHON_COMPAT=( python{2_6,2_7,3_2} )
34 +
35 +PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
36
37 inherit distutils-r1
38
39 @@ -24,6 +23,8 @@
40 virtual/mpi[romio] )"
41 DISTUTILS_IN_SOURCE_BUILD=1
42
43 +PATCHES=( "${FILESDIR}"/${P}-py3-test-backport-1.patch )
44 +
45 python_prepare_all() {
46 # not needed on install
47 rm -r docs/source || die
48 @@ -38,7 +39,7 @@
49 python_test() {
50 echo "Beginning test phase"
51 pushd "${BUILD_DIR}"/../ &> /dev/null
52 - mpiexec -n 2 "${PYTHON}" ./test/runtests.py || die "Testsuite failed under ${EPYTHON}"
53 + mpiexec -n 2 "${PYTHON}" ./test/runtests.py -v || die "Testsuite failed under ${EPYTHON}"
54 popd &> /dev/null
55 }
56
57
58
59
60 1.14 dev-python/mpi4py/ChangeLog
61
62 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpi4py/ChangeLog?rev=1.14&view=markup
63 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpi4py/ChangeLog?rev=1.14&content-type=text/plain
64 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpi4py/ChangeLog?r1=1.13&r2=1.14
65
66 Index: ChangeLog
67 ===================================================================
68 RCS file: /var/cvsroot/gentoo-x86/dev-python/mpi4py/ChangeLog,v
69 retrieving revision 1.13
70 retrieving revision 1.14
71 diff -u -r1.13 -r1.14
72 --- ChangeLog 9 Nov 2013 10:54:07 -0000 1.13
73 +++ ChangeLog 21 Nov 2013 09:38:32 -0000 1.14
74 @@ -1,6 +1,10 @@
75 # ChangeLog for dev-python/mpi4py
76 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
77 -# $Header: /var/cvsroot/gentoo-x86/dev-python/mpi4py/ChangeLog,v 1.13 2013/11/09 10:54:07 jlec Exp $
78 +# $Header: /var/cvsroot/gentoo-x86/dev-python/mpi4py/ChangeLog,v 1.14 2013/11/21 09:38:32 jlec Exp $
79 +
80 + 21 Nov 2013; Justin Lecher <jlec@g.o> mpi4py-1.3.1.ebuild,
81 + +files/mpi4py-1.3.1-py3-test-backport-1.patch:
82 + Backport test fix for py3.3, #487836
83
84 *mpi4py-1.3.1 (09 Nov 2013)