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/pastedeploy: pastedeploy-1.3.3.ebuild
Date: Sat, 06 Feb 2010 15:32:31
Message-Id: E1Ndme0-0006Y8-DS@stork.gentoo.org
1 arfrever 10/02/06 15:32:24
2
3 Modified: pastedeploy-1.3.3.ebuild
4 Log:
5 Use $(PYTHON -f) instead of ${python}.
6 (Portage version: 15324-svn/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.5 dev-python/pastedeploy/pastedeploy-1.3.3.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pastedeploy/pastedeploy-1.3.3.ebuild?rev=1.5&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pastedeploy/pastedeploy-1.3.3.ebuild?rev=1.5&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pastedeploy/pastedeploy-1.3.3.ebuild?r1=1.4&r2=1.5
14
15 Index: pastedeploy-1.3.3.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-python/pastedeploy/pastedeploy-1.3.3.ebuild,v
18 retrieving revision 1.4
19 retrieving revision 1.5
20 diff -u -r1.4 -r1.5
21 --- pastedeploy-1.3.3.ebuild 11 Oct 2009 08:27:30 -0000 1.4
22 +++ pastedeploy-1.3.3.ebuild 6 Feb 2010 15:32:23 -0000 1.5
23 @@ -1,8 +1,9 @@
24 -# Copyright 1999-2009 Gentoo Foundation
25 +# Copyright 1999-2010 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pastedeploy/pastedeploy-1.3.3.ebuild,v 1.4 2009/10/11 08:27:30 grobian Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pastedeploy/pastedeploy-1.3.3.ebuild,v 1.5 2010/02/06 15:32:23 arfrever Exp $
29
30 EAPI="2"
31 +PYTHON_DEPEND="2"
32 SUPPORT_PYTHON_ABIS="1"
33
34 inherit eutils distutils multilib
35 @@ -31,9 +32,9 @@
36
37 src_compile() {
38 distutils_src_compile
39 - if use doc ; then
40 + if use doc; then
41 einfo "Generating docs as requested..."
42 - PYTHONPATH=. "${python}" setup.py pudge || die "generating docs failed"
43 + PYTHONPATH=. "$(PYTHON -f)" setup.py pudge || die "Generation of documentation failed"
44 fi
45 }