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/pastescript: pastescript-1.7.3.ebuild
Date: Sat, 06 Feb 2010 15:40:11
Message-Id: E1NdmlU-0006th-GV@stork.gentoo.org
1 arfrever 10/02/06 15:40:08
2
3 Modified: pastescript-1.7.3.ebuild
4 Log:
5 Use $(PYTHON -f) instead of ${python}. Update HOMEPAGE and SRC_URI.
6 (Portage version: 15324-svn/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.4 dev-python/pastescript/pastescript-1.7.3.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pastescript/pastescript-1.7.3.ebuild?rev=1.4&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pastescript/pastescript-1.7.3.ebuild?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pastescript/pastescript-1.7.3.ebuild?r1=1.3&r2=1.4
14
15 Index: pastescript-1.7.3.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-python/pastescript/pastescript-1.7.3.ebuild,v
18 retrieving revision 1.3
19 retrieving revision 1.4
20 diff -u -r1.3 -r1.4
21 --- pastescript-1.7.3.ebuild 11 Oct 2009 08:28:57 -0000 1.3
22 +++ pastescript-1.7.3.ebuild 6 Feb 2010 15:40:07 -0000 1.4
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/pastescript/pastescript-1.7.3.ebuild,v 1.3 2009/10/11 08:28:57 grobian Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pastescript/pastescript-1.7.3.ebuild,v 1.4 2010/02/06 15:40:07 arfrever Exp $
29
30 EAPI="2"
31 +PYTHON_DEPEND="2"
32 SUPPORT_PYTHON_ABIS="1"
33
34 inherit distutils
35 @@ -11,8 +12,8 @@
36 MY_P="${MY_PN}-${PV}"
37
38 DESCRIPTION="A pluggable command-line frontend, including commands to setup package file layouts"
39 -HOMEPAGE="http://pythonpaste.org/script/"
40 -SRC_URI="http://cheeseshop.python.org/packages/source/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
41 +HOMEPAGE="http://pythonpaste.org/script/ http://pypi.python.org/pypi/PasteScript"
42 +SRC_URI="http://pypi.python.org/packages/source/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
43
44 LICENSE="MIT"
45 SLOT="0"
46 @@ -39,7 +40,7 @@
47 distutils_src_compile
48 if use doc; then
49 einfo "Generating docs as requested..."
50 - PYTHONPATH=. "${python}" setup.py pudge || die "generating docs failed"
51 + PYTHONPATH=. "$(PYTHON -f)" setup.py pudge || die "generating docs failed"
52 fi
53 }