Gentoo Archives: gentoo-commits

From: "Sergey Popov (pinkbyte)" <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-apps/ccsm/files: ccsm-0.8.4-pygobject-glib-fix.patch
Date: Thu, 23 Jan 2014 08:08:43
Message-Id: 20140123080839.50BBC2004E@flycatcher.gentoo.org
1 pinkbyte 14/01/23 08:08:39
2
3 Added: ccsm-0.8.4-pygobject-glib-fix.patch
4 Log:
5 Revision bump: add workaround for bug #487106, patch by Small_Penguin <dark.shadow AT gmx.at>
6
7 (Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
8
9 Revision Changes Path
10 1.1 x11-apps/ccsm/files/ccsm-0.8.4-pygobject-glib-fix.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/ccsm/files/ccsm-0.8.4-pygobject-glib-fix.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/ccsm/files/ccsm-0.8.4-pygobject-glib-fix.patch?rev=1.1&content-type=text/plain
14
15 Index: ccsm-0.8.4-pygobject-glib-fix.patch
16 ===================================================================
17 Fix missing icon and text with new PyGObject
18 Gentoo bugreport - https://bugs.gentoo.org/show_bug.cgi?id=487106
19 Patch by Small_Penguin <dark.shadow AT gmx.at>
20
21 diff -Naur ccsm-0.8.4~/ccm/Utils.py ccsm-0.8.4/ccm/Utils.py
22 --- ccsm-0.8.4~/ccm/Utils.py 2009-10-14 03:05:30.000000000 +0200
23 +++ ccsm-0.8.4/ccm/Utils.py 2013-10-05 10:16:10.050030522 +0200
24 @@ -184,7 +184,7 @@
25 if has_focus:
26 self.unset_flags (gtk.HAS_FOCUS)
27
28 - ret = super (PrettyButton, self).do_expose_event (self, event)
29 + ret = gtk.Button.do_expose_event (self, event)
30
31 if has_focus:
32 self.set_flags (gtk.HAS_FOCUS)