r38102 - in /desktop/unstable/gnome-sudoku/debian: changelog patches/ patches/01_fix_runtime_error_with_new_pygobject.patch patches/series

pochu at users.alioth.debian.org pochu at users.alioth.debian.org
Sat May 25 17:47:57 UTC 2013


Author: pochu
Date: Sat May 25 17:47:56 2013
New Revision: 38102

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=38102
Log:
* debian/patches/01_fix_runtime_error_with_new_pygobject.patch:
  + Patch from bgo#693736, makes gnome-sudoku work with
    recent pygobject.

Added:
    desktop/unstable/gnome-sudoku/debian/patches/
    desktop/unstable/gnome-sudoku/debian/patches/01_fix_runtime_error_with_new_pygobject.patch
    desktop/unstable/gnome-sudoku/debian/patches/series
Modified:
    desktop/unstable/gnome-sudoku/debian/changelog

Modified: desktop/unstable/gnome-sudoku/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-sudoku/debian/changelog?rev=38102&op=diff
==============================================================================
--- desktop/unstable/gnome-sudoku/debian/changelog [utf-8] (original)
+++ desktop/unstable/gnome-sudoku/debian/changelog [utf-8] Sat May 25 17:47:56 2013
@@ -8,6 +8,11 @@
   * Set package as Architecture: all
   * Drop un-needed build dependencies on libglib2.0-dev and
     valac-0.18.
+
+  [ Emilio Pozuelo Monfort ]
+  * debian/patches/01_fix_runtime_error_with_new_pygobject.patch:
+    + Patch from bgo#693736, makes gnome-sudoku work with
+      recent pygobject.
 
  -- Jeremy Bicha <jbicha at ubuntu.com>  Sun, 10 Feb 2013 20:06:14 -0500
 

Added: desktop/unstable/gnome-sudoku/debian/patches/01_fix_runtime_error_with_new_pygobject.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-sudoku/debian/patches/01_fix_runtime_error_with_new_pygobject.patch?rev=38102&op=file
==============================================================================
--- desktop/unstable/gnome-sudoku/debian/patches/01_fix_runtime_error_with_new_pygobject.patch (added)
+++ desktop/unstable/gnome-sudoku/debian/patches/01_fix_runtime_error_with_new_pygobject.patch [utf-8] Sat May 25 17:47:56 2013
@@ -1,0 +1,26 @@
+From c82fc3131802f4fe1f069facb9aae833cc6cdc5f Mon Sep 17 00:00:00 2001
+From: Yanko Kaneti <yaneti at declera.com>
+Date: Wed, 13 Feb 2013 21:15:13 +0200
+Subject: [PATCH] Fix NumberBox envents configuration with latest pygobject
+
+https://bugzilla.gnome.org/show_bug.cgi?id=693736
+---
+ src/lib/number_box.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/lib/number_box.py b/src/lib/number_box.py
+index 4087de1..60b255a 100644
+--- a/src/lib/number_box.py
++++ b/src/lib/number_box.py
+@@ -130,7 +130,7 @@ class NumberBox (Gtk.DrawingArea):
+         self.bottom_note_list = []
+         self.tinfo = tracker_info.TrackerInfo()
+         self.set_property('can-focus', True)
+-        self.set_property('events', Gdk.EventMask.ALL_EVENTS_MASK)
++        self.add_events(Gdk.EventMask.ALL_EVENTS_MASK)
+         self.connect('button-press-event', self.button_press_cb)
+         self.connect('key-release-event', self.key_press_cb)
+         self.connect('enter-notify-event', self.pointer_enter_cb)
+-- 
+1.8.1.2
+

Added: desktop/unstable/gnome-sudoku/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-sudoku/debian/patches/series?rev=38102&op=file
==============================================================================
--- desktop/unstable/gnome-sudoku/debian/patches/series (added)
+++ desktop/unstable/gnome-sudoku/debian/patches/series [utf-8] Sat May 25 17:47:56 2013
@@ -1,0 +1,1 @@
+01_fix_runtime_error_with_new_pygobject.patch




More information about the pkg-gnome-commits mailing list