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-arcade/whichwayisup: ChangeLog whichwayisup-0.7.9.ebuild
Date: Tue, 04 May 2010 04:39:21
Message-Id: 20100504043918.2275A29635@corvid.gentoo.org
1 tupone 10/05/04 04:39:17
2
3 Modified: ChangeLog whichwayisup-0.7.9.ebuild
4 Log:
5 Force python2 fixing bug #312235
6 (Portage version: 2.1.8.3/cvs/Linux i686)
7
8 Revision Changes Path
9 1.16 games-arcade/whichwayisup/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/whichwayisup/ChangeLog?rev=1.16&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/whichwayisup/ChangeLog?rev=1.16&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/whichwayisup/ChangeLog?r1=1.15&r2=1.16
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-arcade/whichwayisup/ChangeLog,v
18 retrieving revision 1.15
19 retrieving revision 1.16
20 diff -u -r1.15 -r1.16
21 --- ChangeLog 26 Oct 2009 05:53:21 -0000 1.15
22 +++ ChangeLog 4 May 2010 04:39:17 -0000 1.16
23 @@ -1,6 +1,9 @@
24 # ChangeLog for games-arcade/whichwayisup
25 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/whichwayisup/ChangeLog,v 1.15 2009/10/26 05:53:21 mr_bones_ Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/whichwayisup/ChangeLog,v 1.16 2010/05/04 04:39:17 tupone Exp $
29 +
30 + 04 May 2010; Tupone Alfredo <tupone@g.o> whichwayisup-0.7.9.ebuild:
31 + Force python2 fixing bug #312235 by arfrever@g.o
32
33 26 Oct 2009; Michael Sterrett <mr_bones_@g.o>
34 whichwayisup-0.7.9.ebuild:
35
36
37
38 1.9 games-arcade/whichwayisup/whichwayisup-0.7.9.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/whichwayisup/whichwayisup-0.7.9.ebuild?rev=1.9&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/whichwayisup/whichwayisup-0.7.9.ebuild?rev=1.9&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/whichwayisup/whichwayisup-0.7.9.ebuild?r1=1.8&r2=1.9
43
44 Index: whichwayisup-0.7.9.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/games-arcade/whichwayisup/whichwayisup-0.7.9.ebuild,v
47 retrieving revision 1.8
48 retrieving revision 1.9
49 diff -u -r1.8 -r1.9
50 --- whichwayisup-0.7.9.ebuild 26 Oct 2009 05:53:21 -0000 1.8
51 +++ whichwayisup-0.7.9.ebuild 4 May 2010 04:39:17 -0000 1.9
52 @@ -1,8 +1,8 @@
53 -# Copyright 1999-2009 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-arcade/whichwayisup/whichwayisup-0.7.9.ebuild,v 1.8 2009/10/26 05:53:21 mr_bones_ Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/whichwayisup/whichwayisup-0.7.9.ebuild,v 1.9 2010/05/04 04:39:17 tupone Exp $
58
59 -NEED_PYTHON="2.4"
60 +PYTHON_DEPEND="2"
61 EAPI=2
62 inherit eutils python games
63
64 @@ -22,6 +22,11 @@
65
66 S=${WORKDIR}/${PN}
67
68 +pkg_setup() {
69 + python_set_active_version 2
70 + games_pkg_setup
71 +}
72 +
73 src_prepare() {
74 sed -i \
75 -e "s:libdir\ =\ .*:libdir\ =\ \"$(games_get_libdir)/${PN}\":" \
76 @@ -32,6 +37,7 @@
77 lib/data.py \
78 || die "Changing data path failed"
79 rm data/pictures/Thumbs.db
80 + python_convert_shebangs -r 2 run_game.py
81 }
82
83 src_install() {