r52815 - in /desktop/unstable/gnome-desktop3/debian: changelog patches/01_fix-ftbfs-x32.patch patches/series

bigon at users.alioth.debian.org bigon at users.alioth.debian.org
Wed Aug 16 10:58:48 UTC 2017


Author: bigon
Date: Wed Aug 16 10:58:47 2017
New Revision: 52815

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=52815
Log:
debian/patches/01_fix-ftbfs-x32.patch: Fix FTBFS on x32 arch

Added:
    desktop/unstable/gnome-desktop3/debian/patches/01_fix-ftbfs-x32.patch
Modified:
    desktop/unstable/gnome-desktop3/debian/changelog
    desktop/unstable/gnome-desktop3/debian/patches/series

Modified: desktop/unstable/gnome-desktop3/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-desktop3/debian/changelog?rev=52815&op=diff
==============================================================================
--- desktop/unstable/gnome-desktop3/debian/changelog	[utf-8] (original)
+++ desktop/unstable/gnome-desktop3/debian/changelog	[utf-8] Wed Aug 16 10:58:47 2017
@@ -1,3 +1,9 @@
+gnome-desktop3 (3.22.2-2) UNRELEASED; urgency=medium
+
+  * debian/patches/01_fix-ftbfs-x32.patch: Fix FTBFS on x32 arch
+
+ -- Laurent Bigonville <bigon at debian.org>  Wed, 16 Aug 2017 12:57:43 +0200
+
 gnome-desktop3 (3.22.2-1) unstable; urgency=medium
 
   * New upstream release.

Added: desktop/unstable/gnome-desktop3/debian/patches/01_fix-ftbfs-x32.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-desktop3/debian/patches/01_fix-ftbfs-x32.patch?rev=52815&op=file
==============================================================================
--- desktop/unstable/gnome-desktop3/debian/patches/01_fix-ftbfs-x32.patch	(added)
+++ desktop/unstable/gnome-desktop3/debian/patches/01_fix-ftbfs-x32.patch	[utf-8] Wed Aug 16 10:58:47 2017
@@ -0,0 +1,25 @@
+From 497f1f654627b6841322a3b934df9c9be4d39cb7 Mon Sep 17 00:00:00 2001
+From: Laurent Bigonville <bigon at bigon.be>
+Date: Wed, 16 Aug 2017 12:04:46 +0200
+Subject: [PATCH] thumbnailer: Fix compile-time error on x32
+
+https://bugzilla.gnome.org/show_bug.cgi?id=786355
+---
+ libgnome-desktop/gnome-desktop-thumbnail.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/libgnome-desktop/gnome-desktop-thumbnail.c b/libgnome-desktop/gnome-desktop-thumbnail.c
+index 866fc7d2..feec4c86 100644
+--- a/libgnome-desktop/gnome-desktop-thumbnail.c
++++ b/libgnome-desktop/gnome-desktop-thumbnail.c
+@@ -1116,7 +1116,7 @@ save_thumbnail (GdkPixbuf  *pixbuf,
+     goto out;
+   close (tmp_fd);
+ 
+-  g_snprintf (mtime_str, 21, "%ld",  mtime);
++  g_snprintf (mtime_str, 21, "%" G_GUINT64_FORMAT, (guint64) mtime);
+   width = gdk_pixbuf_get_option (pixbuf, "tEXt::Thumb::Image::Width");
+   height = gdk_pixbuf_get_option (pixbuf, "tEXt::Thumb::Image::Height");
+ 
+-- 
+2.14.1

Modified: desktop/unstable/gnome-desktop3/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-desktop3/debian/patches/series?rev=52815&op=diff
==============================================================================
--- desktop/unstable/gnome-desktop3/debian/patches/series	[utf-8] (original)
+++ desktop/unstable/gnome-desktop3/debian/patches/series	[utf-8] Wed Aug 16 10:58:47 2017
@@ -0,0 +1 @@
+01_fix-ftbfs-x32.patch




More information about the pkg-gnome-commits mailing list