r53317 - in /attic/libgnomeui/debian: changelog control patches/02_time_t_printfs.patch patches/03_glib-2.54-ftbfs.patch patches/series

jbicha at users.alioth.debian.org jbicha at users.alioth.debian.org
Fri Sep 1 13:10:49 UTC 2017


Author: jbicha
Date: Fri Sep  1 13:10:48 2017
New Revision: 53317

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=53317
Log:
Import 2.24.5-3.2 NMU

Added:
    attic/libgnomeui/debian/patches/02_time_t_printfs.patch
    attic/libgnomeui/debian/patches/03_glib-2.54-ftbfs.patch
Modified:
    attic/libgnomeui/debian/changelog
    attic/libgnomeui/debian/control
    attic/libgnomeui/debian/patches/series

Modified: attic/libgnomeui/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/attic/libgnomeui/debian/changelog?rev=53317&op=diff
==============================================================================
--- attic/libgnomeui/debian/changelog	[utf-8] (original)
+++ attic/libgnomeui/debian/changelog	[utf-8] Fri Sep  1 13:10:48 2017
@@ -1,3 +1,17 @@
+libgnomeui (2.24.5-3.2) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTBFS with glib 2.54 (Adrian Bunk). Closes: #870729.
+
+ -- Adam Borowski <kilobyte at angband.pl>  Fri, 25 Aug 2017 03:25:24 +0200
+
+libgnomeui (2.24.5-3.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTFBS on x32. Closes: #775972.
+
+ -- Adam Borowski <kilobyte at angband.pl>  Thu, 14 Jan 2016 07:19:13 +0100
+
 libgnomeui (2.24.5-3) unstable; urgency=low
 
   * Switch to multiarch. Closes: #642417.

Modified: attic/libgnomeui/debian/control
URL: http://svn.debian.org/wsvn/pkg-gnome/attic/libgnomeui/debian/control?rev=53317&op=diff
==============================================================================
--- attic/libgnomeui/debian/control	[utf-8] (original)
+++ attic/libgnomeui/debian/control	[utf-8] Fri Sep  1 13:10:48 2017
@@ -2,7 +2,6 @@
 # 
 # Modifications should be made to debian/control.in instead.
 # This file is regenerated automatically in the clean target.
-
 Source: libgnomeui
 Section: oldlibs
 Priority: optional

Added: attic/libgnomeui/debian/patches/02_time_t_printfs.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/attic/libgnomeui/debian/patches/02_time_t_printfs.patch?rev=53317&op=file
==============================================================================
--- attic/libgnomeui/debian/patches/02_time_t_printfs.patch	(added)
+++ attic/libgnomeui/debian/patches/02_time_t_printfs.patch	[utf-8] Fri Sep  1 13:10:48 2017
@@ -0,0 +1,27 @@
+Description: cast time_t printfs
+ Upstream code uses printf("%ld") with a time_t argument.  This causes a
+ warning if time_t is a different type than long, which causes a FTBFS
+ under -Werror.
+Author: Adam Borowski <kilobyte at angband.pl>
+Bug-Debian: https://bugs.debian.org/775972
+
+--- libgnomeui-2.24.5.orig/libgnomeui/gnome-thumbnail.c
++++ libgnomeui-2.24.5/libgnomeui/gnome-thumbnail.c
+@@ -863,7 +863,7 @@ gnome_thumbnail_factory_save_thumbnail (
+     }
+   close (tmp_fd);
+   
+-  g_snprintf (mtime_str, 21, "%ld",  original_mtime);
++  g_snprintf (mtime_str, 21, "%ld",  (long)original_mtime);
+   width = gdk_pixbuf_get_option (thumbnail, "tEXt::Thumb::Image::Width");
+   height = gdk_pixbuf_get_option (thumbnail, "tEXt::Thumb::Image::Height");
+ 
+@@ -970,7 +970,7 @@ gnome_thumbnail_factory_create_failed_th
+     }
+   close (tmp_fd);
+   
+-  g_snprintf (mtime_str, 21, "%ld",  mtime);
++  g_snprintf (mtime_str, 21, "%ld",  (long)mtime);
+   pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE, 8, 1, 1);
+   saved_ok  = gdk_pixbuf_save (pixbuf,
+ 			       tmp_path,

Added: attic/libgnomeui/debian/patches/03_glib-2.54-ftbfs.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/attic/libgnomeui/debian/patches/03_glib-2.54-ftbfs.patch?rev=53317&op=file
==============================================================================
--- attic/libgnomeui/debian/patches/03_glib-2.54-ftbfs.patch	(added)
+++ attic/libgnomeui/debian/patches/03_glib-2.54-ftbfs.patch	[utf-8] Fri Sep  1 13:10:48 2017
@@ -0,0 +1,16 @@
+Description: Fix FTBFS with glib 2.54
+ glib-mkenums now expects input files to be UTF-8,
+ fix the encoding of libgnomeui/gnome-scores.h
+Author: Adrian Bunk <bunk at debian.org>
+
+--- libgnomeui-2.24.5.orig/libgnomeui/gnome-scores.h
++++ libgnomeui-2.24.5/libgnomeui/gnome-scores.h
+@@ -27,7 +27,7 @@
+  * "High Scores" Widget 
+  *
+  * AUTHOR: 
+- * Horacio J. Pe�a <horape at compendium.com.ar>
++ * Horacio J. Peña <horape at compendium.com.ar>
+  *
+  * This is free software (under the terms of the GNU LGPL)
+  *

Modified: attic/libgnomeui/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/attic/libgnomeui/debian/patches/series?rev=53317&op=diff
==============================================================================
--- attic/libgnomeui/debian/patches/series	[utf-8] (original)
+++ attic/libgnomeui/debian/patches/series	[utf-8] Fri Sep  1 13:10:48 2017
@@ -1 +1,3 @@
 01_link_libm.patch
+02_time_t_printfs.patch
+03_glib-2.54-ftbfs.patch




More information about the pkg-gnome-commits mailing list