r32789 - in /desktop/unstable/gobject-introspection/debian: changelog patches/glib_2.30_api.patch patches/series

mpitt at users.alioth.debian.org mpitt at users.alioth.debian.org
Mon Mar 5 18:36:18 UTC 2012


Author: mpitt
Date: Mon Mar  5 18:36:17 2012
New Revision: 32789

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=32789
Log:
Add glib_2.30_api.patch: Fix build with glib 2.30 by reverting to
deprecated g_value_[gs]et_char API.

Added:
    desktop/unstable/gobject-introspection/debian/patches/glib_2.30_api.patch
Modified:
    desktop/unstable/gobject-introspection/debian/changelog
    desktop/unstable/gobject-introspection/debian/patches/series

Modified: desktop/unstable/gobject-introspection/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gobject-introspection/debian/changelog?rev=32789&op=diff
==============================================================================
--- desktop/unstable/gobject-introspection/debian/changelog [utf-8] (original)
+++ desktop/unstable/gobject-introspection/debian/changelog [utf-8] Mon Mar  5 18:36:17 2012
@@ -9,6 +9,8 @@
   * debian/libgirepository-1.0-1.symbols: Add two new symbols from this
     release.
   * debian/control: Bump Standards-Version to 3.9.3 (no changes necessary).
+  * Add glib_2.30_api.patch: Fix build with glib 2.30 by reverting to
+    deprecated g_value_[gs]et_char API.
 
  -- Martin Pitt <mpitt at debian.org>  Thu, 16 Feb 2012 17:16:01 +0100
 

Added: desktop/unstable/gobject-introspection/debian/patches/glib_2.30_api.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gobject-introspection/debian/patches/glib_2.30_api.patch?rev=32789&op=file
==============================================================================
--- desktop/unstable/gobject-introspection/debian/patches/glib_2.30_api.patch (added)
+++ desktop/unstable/gobject-introspection/debian/patches/glib_2.30_api.patch [utf-8] Mon Mar  5 18:36:17 2012
@@ -1,0 +1,25 @@
+Description: Fix build with glib 2.30 by reverting to deprecated g_value_[gs]et_char API.
+Author: Martin Pitt <mpitt at debian.org>
+
+Index: gobject-introspection/tests/gimarshallingtests.c
+===================================================================
+--- gobject-introspection.orig/tests/gimarshallingtests.c	2012-02-16 17:24:41.000000000 +0100
++++ gobject-introspection/tests/gimarshallingtests.c	2012-03-05 19:34:42.631222668 +0100
+@@ -4363,7 +4363,7 @@
+             g_value_set_boolean (value, self->some_boolean);
+             break;
+         case SOME_CHAR_PROPERTY:
+-            g_value_set_schar (value, self->some_char);
++            g_value_set_char (value, self->some_char);
+             break;
+         case SOME_UCHAR_PROPERTY:
+             g_value_set_uchar (value, self->some_uchar);
+@@ -4408,7 +4408,7 @@
+             self->some_boolean = g_value_get_boolean (value);
+             break;
+         case SOME_CHAR_PROPERTY:
+-            self->some_char = g_value_get_schar (value);
++            self->some_char = g_value_get_char (value);
+             break;
+         case SOME_UCHAR_PROPERTY:
+             self->some_uchar = g_value_get_uchar (value);

Modified: desktop/unstable/gobject-introspection/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gobject-introspection/debian/patches/series?rev=32789&op=diff
==============================================================================
--- desktop/unstable/gobject-introspection/debian/patches/series [utf-8] (original)
+++ desktop/unstable/gobject-introspection/debian/patches/series [utf-8] Mon Mar  5 18:36:17 2012
@@ -1,0 +1,1 @@
+glib_2.30_api.patch




More information about the pkg-gnome-commits mailing list