Gentoo Archives: gentoo-commits

From: "Alfredo Tupone (tupone)" <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-action/slune: ChangeLog slune-1.0.11.ebuild
Date: Tue, 04 May 2010 06:13:46
Message-Id: 20100504061343.ACB1629628@corvid.gentoo.org
1 tupone 10/05/04 06:13:43
2
3 Modified: ChangeLog slune-1.0.11.ebuild
4 Log:
5 Force python2 fixing bug #312229
6 (Portage version: 2.1.8.3/cvs/Linux i686)
7
8 Revision Changes Path
9 1.16 games-action/slune/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/slune/ChangeLog?rev=1.16&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/slune/ChangeLog?rev=1.16&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/slune/ChangeLog?r1=1.15&r2=1.16
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v
18 retrieving revision 1.15
19 retrieving revision 1.16
20 diff -u -r1.15 -r1.16
21 --- ChangeLog 13 Jun 2006 21:02:49 -0000 1.15
22 +++ ChangeLog 4 May 2010 06:13:43 -0000 1.16
23 @@ -1,6 +1,9 @@
24 # ChangeLog for games-action/slune
25 -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v 1.15 2006/06/13 21:02:49 wolf31o2 Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/games-action/slune/ChangeLog,v 1.16 2010/05/04 06:13:43 tupone Exp $
29 +
30 + 04 May 2010; Tupone Alfredo <tupone@g.o> slune-1.0.11.ebuild:
31 + Force python2 fixing bug #312229 by arfrever@g.o
32
33 13 Jun 2006; Chris Gianelloni <wolf31o2@g.o> slune-1.0.11.ebuild:
34 Changed the dependency on py2play to require 0.1.9 due to bug #103524.
35
36
37
38 1.3 games-action/slune/slune-1.0.11.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/slune/slune-1.0.11.ebuild?rev=1.3&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/slune/slune-1.0.11.ebuild?rev=1.3&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/slune/slune-1.0.11.ebuild?r1=1.2&r2=1.3
43
44 Index: slune-1.0.11.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/games-action/slune/slune-1.0.11.ebuild,v
47 retrieving revision 1.2
48 retrieving revision 1.3
49 diff -u -r1.2 -r1.3
50 --- slune-1.0.11.ebuild 13 Jun 2006 21:02:49 -0000 1.2
51 +++ slune-1.0.11.ebuild 4 May 2010 06:13:43 -0000 1.3
52 @@ -1,8 +1,10 @@
53 -# Copyright 1999-2006 Gentoo Foundation
54 +# Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/games-action/slune/slune-1.0.11.ebuild,v 1.2 2006/06/13 21:02:49 wolf31o2 Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/games-action/slune/slune-1.0.11.ebuild,v 1.3 2010/05/04 06:13:43 tupone Exp $
58 +EAPI="2"
59 +PYTHON_DEPEND="2"
60
61 -inherit distutils
62 +inherit python distutils
63
64 DESCRIPTION="A 3D action game with multiplayer mode and amazing graphics"
65 HOMEPAGE="http://oomadness.tuxfamily.org/en/slune/"
66 @@ -15,7 +17,6 @@
67
68 DEPEND="virtual/opengl
69 >=media-libs/libsdl-1.2.6
70 - >=dev-lang/python-2.2.2
71 >=dev-python/soya-0.9
72 >=dev-python/py2play-0.1.9
73 >=dev-python/pyopenal-0.1.3
74 @@ -23,3 +24,12 @@
75 >=dev-python/pyvorbis-1.1"
76
77 S=${WORKDIR}/Slune-${PV}
78 +
79 +pkg_setup() {
80 + python_set_active_version 2
81 +}
82 +
83 +src_prepare() {
84 + python_convert_shebangs -r 2 .
85 + distutils_src_prepare
86 +}