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/myghty: myghty-1.1-r1.ebuild
Date: Thu, 01 Jul 2010 02:23:00
Message-Id: 20100701022252.19DE62CF3A@corvid.gentoo.org
1 arfrever 10/07/01 02:22:51
2
3 Modified: myghty-1.1-r1.ebuild
4 Log:
5 Use $(PYTHON -f) instead of python.
6 (Portage version: HEAD/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.3 dev-python/myghty/myghty-1.1-r1.ebuild
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/myghty/myghty-1.1-r1.ebuild?rev=1.3&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/myghty/myghty-1.1-r1.ebuild?rev=1.3&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/myghty/myghty-1.1-r1.ebuild?r1=1.2&r2=1.3
14
15 Index: myghty-1.1-r1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-python/myghty/myghty-1.1-r1.ebuild,v
18 retrieving revision 1.2
19 retrieving revision 1.3
20 diff -u -r1.2 -r1.3
21 --- myghty-1.1-r1.ebuild 7 Jun 2010 22:31:57 -0000 1.2
22 +++ myghty-1.1-r1.ebuild 1 Jul 2010 02:22:51 -0000 1.3
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/dev-python/myghty/myghty-1.1-r1.ebuild,v 1.2 2010/06/07 22:31:57 arfrever Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-python/myghty/myghty-1.1-r1.ebuild,v 1.3 2010/07/01 02:22:51 arfrever Exp $
28
29 EAPI="3"
30 PYTHON_DEPEND="2"
31 @@ -41,7 +41,7 @@
32 if use doc; then
33 einfo "Generation of documentation"
34 cd doc
35 - PYTHONPATH=./lib/ python genhtml.py || die "Generation of documentation failed"
36 + PYTHONPATH="lib" "$(PYTHON -f)" genhtml.py || die "Generation of documentation failed"
37 fi
38 }