Gentoo Archives: gentoo-commits

From: "Tiziano Mueller (dev-zero)" <dev-zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/spice-gtk: ChangeLog spice-gtk-0.12.ebuild
Date: Tue, 29 May 2012 05:07:41
Message-Id: 20120529050719.4EEB22004B@flycatcher.gentoo.org
1 dev-zero 12/05/29 05:07:19
2
3 Modified: ChangeLog spice-gtk-0.12.ebuild
4 Log:
5 Fix building with python-3 as default interpreter (bug #418017, thanks to Alon Bar-Lev).
6
7 (Portage version: 2.1.10.56/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.21 net-misc/spice-gtk/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/spice-gtk/ChangeLog?rev=1.21&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/spice-gtk/ChangeLog?rev=1.21&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/spice-gtk/ChangeLog?r1=1.20&r2=1.21
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/spice-gtk/ChangeLog,v
19 retrieving revision 1.20
20 retrieving revision 1.21
21 diff -u -r1.20 -r1.21
22 --- ChangeLog 26 May 2012 18:21:46 -0000 1.20
23 +++ ChangeLog 29 May 2012 05:07:19 -0000 1.21
24 @@ -1,6 +1,10 @@
25 # ChangeLog for net-misc/spice-gtk
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/spice-gtk/ChangeLog,v 1.20 2012/05/26 18:21:46 dev-zero Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-misc/spice-gtk/ChangeLog,v 1.21 2012/05/29 05:07:19 dev-zero Exp $
29 +
30 + 29 May 2012; Tiziano Müller <dev-zero@g.o> spice-gtk-0.12.ebuild:
31 + Fix building with python-3 as default interpreter (bug #418017, thanks to
32 + Alon Bar-Lev).
33
34 *spice-gtk-0.12 (26 May 2012)
35
36
37
38
39 1.2 net-misc/spice-gtk/spice-gtk-0.12.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/spice-gtk/spice-gtk-0.12.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/spice-gtk/spice-gtk-0.12.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/spice-gtk/spice-gtk-0.12.ebuild?r1=1.1&r2=1.2
44
45 Index: spice-gtk-0.12.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/net-misc/spice-gtk/spice-gtk-0.12.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- spice-gtk-0.12.ebuild 26 May 2012 18:21:46 -0000 1.1
52 +++ spice-gtk-0.12.ebuild 29 May 2012 05:07:19 -0000 1.2
53 @@ -1,13 +1,13 @@
54 # Copyright 1999-2012 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/net-misc/spice-gtk/spice-gtk-0.12.ebuild,v 1.1 2012/05/26 18:21:46 dev-zero Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/net-misc/spice-gtk/spice-gtk-0.12.ebuild,v 1.2 2012/05/29 05:07:19 dev-zero Exp $
58
59 EAPI="4"
60 GCONF_DEBUG="no"
61
62 inherit eutils python
63
64 -PYTHON_DEPEND="python? 2"
65 +PYTHON_DEPEND="2"
66
67 DESCRIPTION="Set of GObject and Gtk objects for connecting to Spice servers and a client GUI."
68 HOMEPAGE="http://spice-space.org http://gitorious.org/spice-gtk"
69 @@ -62,6 +62,8 @@
70 # dev-perl/Text-CSV
71
72 pkg_setup() {
73 + python_set_active_version 2
74 + python_pkg_setup
75 if use gstreamer && use pulseaudio ; then
76 ewarn "spice-gtk can use only one audio backend: pulseaudio will be used since you enabled both."
77 fi
78 @@ -104,6 +106,7 @@
79 use static-libs || rm -rf "${D}"/usr/lib*/*.la
80 use python && rm -rf "${D}"/usr/lib*/python*/site-packages/*.la
81 use doc || rm -rf "${D}/usr/share/gtk-doc"
82 + use python && python_convert_shebangs -r 2 "${D}"
83
84 make_desktop_entry spicy Spicy "utilities-terminal" "Network;RemoteAccess;"
85 }