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 sci-libs/scipy: scipy-0.7.1.ebuild
Date: Sun, 28 Feb 2010 10:53:22
Message-Id: E1Nlglx-0005Fd-Jc@stork.gentoo.org
1 arfrever 10/02/28 10:53:17
2
3 Modified: scipy-0.7.1.ebuild
4 Log:
5 Use $(PYTHON) instead of ${python}.
6 (Portage version: 15495-svn/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.10 sci-libs/scipy/scipy-0.7.1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/scipy/scipy-0.7.1.ebuild?rev=1.10&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/scipy/scipy-0.7.1.ebuild?rev=1.10&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/scipy/scipy-0.7.1.ebuild?r1=1.9&r2=1.10
14
15 Index: scipy-0.7.1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-libs/scipy/scipy-0.7.1.ebuild,v
18 retrieving revision 1.9
19 retrieving revision 1.10
20 diff -u -r1.9 -r1.10
21 --- scipy-0.7.1.ebuild 25 Feb 2010 04:05:51 -0000 1.9
22 +++ scipy-0.7.1.ebuild 28 Feb 2010 10:53:17 -0000 1.10
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2010 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/scipy/scipy-0.7.1.ebuild,v 1.9 2010/02/25 04:05:51 bicatali Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/scipy/scipy-0.7.1.ebuild,v 1.10 2010/02/28 10:53:17 arfrever Exp $
28
29 EAPI="2"
30 NEED_PYTHON="2.4"
31 @@ -113,7 +113,7 @@
32 "$(PYTHON)" setup.py build -b "build-${PYTHON_ABI}" install \
33 --home="${S}/test-${PYTHON_ABI}" --no-compile ${SCIPY_FCONFIG} || die "install test failed"
34 pushd "${S}/test-${PYTHON_ABI}/"lib*/python > /dev/null
35 - PYTHONPATH=. "${python}" -c "import scipy; scipy.test('full')" 2>&1 | tee test.log
36 + PYTHONPATH=. "$(PYTHON)" -c "import scipy; scipy.test('full')" 2>&1 | tee test.log
37 grep -q ^ERROR test.log && die "test failed"
38 popd > /dev/null
39 rm -fr test-${PYTHON_ABI}