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/pysqlite: pysqlite-2.5.5-r1.ebuild
Date: Wed, 05 Aug 2009 18:47:10
Message-Id: E1MYlVx-0003t9-Np@stork.gentoo.org
1 arfrever 09/08/05 18:47:05
2
3 Modified: pysqlite-2.5.5-r1.ebuild
4 Log:
5 Use PYTHON() instead of get_python().
6 (Portage version: 13919-svn/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 dev-python/pysqlite/pysqlite-2.5.5-r1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pysqlite/pysqlite-2.5.5-r1.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pysqlite/pysqlite-2.5.5-r1.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pysqlite/pysqlite-2.5.5-r1.ebuild?r1=1.1&r2=1.2
14
15 Index: pysqlite-2.5.5-r1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-python/pysqlite/pysqlite-2.5.5-r1.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- pysqlite-2.5.5-r1.ebuild 4 Aug 2009 03:48:59 -0000 1.1
22 +++ pysqlite-2.5.5-r1.ebuild 5 Aug 2009 18:47:05 -0000 1.2
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2009 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pysqlite/pysqlite-2.5.5-r1.ebuild,v 1.1 2009/08/04 03:48:59 arfrever Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pysqlite/pysqlite-2.5.5-r1.ebuild,v 1.2 2009/08/05 18:47:05 arfrever Exp $
28
29 EAPI="2"
30
31 @@ -55,7 +55,7 @@
32 # Tests use this as a nonexistent file.
33 addpredict /foo/bar
34 testing() {
35 - PYTHONPATH="$(ls -d ../build-${PYTHON_ABI}/lib.*)" "$(get_python)" -c \
36 + PYTHONPATH="$(ls -d ../build-${PYTHON_ABI}/lib.*)" "$(PYTHON)" -c \
37 "from test import test;import sys;sys.exit(test())"
38 }
39 python_execute_function testing