[DRE-commits] r1994 - in packages/ruby-gnome2/trunk/debian: . patches

acornet at alioth.debian.org acornet at alioth.debian.org
Mon Oct 22 19:24:07 UTC 2007


Author: acornet
Date: 2007-10-22 19:24:07 +0000 (Mon, 22 Oct 2007)
New Revision: 1994

Added:
   packages/ruby-gnome2/trunk/debian/patches/window-warning.patch
Modified:
   packages/ruby-gnome2/trunk/debian/changelog
   packages/ruby-gnome2/trunk/debian/patches/series
Log:
Add window-warning.patch.

Modified: packages/ruby-gnome2/trunk/debian/changelog
===================================================================
--- packages/ruby-gnome2/trunk/debian/changelog	2007-10-22 18:27:38 UTC (rev 1993)
+++ packages/ruby-gnome2/trunk/debian/changelog	2007-10-22 19:24:07 UTC (rev 1994)
@@ -1,5 +1,11 @@
-ruby-gnome2 (0.16.0-7) UNRELEASED; urgency=low
+ruby-gnome2 (0.16.0-8) UNRELEASED; urgency=low
 
+  * Add window-warning.patch (Closes: #446602).
+
+ -- Arnaud Cornet <acornet at debian.org>  Mon, 22 Oct 2007 21:21:33 +0200
+
+ruby-gnome2 (0.16.0-7) unstable; urgency=low
+
   * Update glib2.14.patch to prevent ftbs on some 32bits archs.
 
  -- Arnaud Cornet <acornet at debian.org>  Mon, 27 Aug 2007 13:36:38 +0200

Modified: packages/ruby-gnome2/trunk/debian/patches/series
===================================================================
--- packages/ruby-gnome2/trunk/debian/patches/series	2007-10-22 18:27:38 UTC (rev 1993)
+++ packages/ruby-gnome2/trunk/debian/patches/series	2007-10-22 19:24:07 UTC (rev 1994)
@@ -6,3 +6,4 @@
 libglade2-nil-source.patch
 buildsys-abort-on-error.patch
 glib2.14.patch
+window-warning.patch

Added: packages/ruby-gnome2/trunk/debian/patches/window-warning.patch
===================================================================
--- packages/ruby-gnome2/trunk/debian/patches/window-warning.patch	                        (rev 0)
+++ packages/ruby-gnome2/trunk/debian/patches/window-warning.patch	2007-10-22 19:24:07 UTC (rev 1994)
@@ -0,0 +1,22 @@
+Index: ruby-gnome2-0.16.0/gtk/src/rbgtk.c
+===================================================================
+--- ruby-gnome2-0.16.0.orig/gtk/src/rbgtk.c	2007-10-22 21:07:14.000000000 +0200
++++ ruby-gnome2-0.16.0/gtk/src/rbgtk.c	2007-10-22 21:07:19.000000000 +0200
+@@ -4,7 +4,7 @@
+   rbgtk.c -
+ 
+   $Author: mutoh $
+-  $Date: 2006/11/17 18:12:41 $
++  $Date: 2006/12/30 12:51:33 $
+ 
+   Copyright (C) 2002-2006 Ruby-GNOME2 Project Team
+   Copyright (C) 1998-2001 Yukihiro Matsumoto,
+@@ -44,7 +44,7 @@
+     if (GTK_IS_WINDOW(gtkobj) || GTK_IS_MENU_SHELL(gtkobj)) {
+         VALUE klass;
+         klass = rb_obj_class(obj);
+-        if (NIL_P(rb_ivar_get(klass, id__windows__))) {
++        if (rb_ivar_defined(klass, id__windows__) == Qfalse) {
+             rb_ivar_set(klass, id__windows__, rb_hash_new());
+         }
+         rb_hash_aset(rb_ivar_get(klass, id__windows__), obj, Qnil);




More information about the Pkg-ruby-extras-commits mailing list