r54052 - in /desktop/unstable/gdk-pixbuf/debian: changelog libgdk-pixbuf2.0-0.postinst.in

pochu at users.alioth.debian.org pochu at users.alioth.debian.org
Tue Sep 19 21:37:19 UTC 2017


Author: pochu
Date: Tue Sep 19 21:37:19 2017
New Revision: 54052

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=54052
Log:
postinst: make loaders.cache reproducible. Thanks Chris Lamb for the
patch. Closes: #875704.

Modified:
    desktop/unstable/gdk-pixbuf/debian/changelog
    desktop/unstable/gdk-pixbuf/debian/libgdk-pixbuf2.0-0.postinst.in

Modified: desktop/unstable/gdk-pixbuf/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gdk-pixbuf/debian/changelog?rev=54052&op=diff
==============================================================================
--- desktop/unstable/gdk-pixbuf/debian/changelog	[utf-8] (original)
+++ desktop/unstable/gdk-pixbuf/debian/changelog	[utf-8] Tue Sep 19 21:37:19 2017
@@ -12,6 +12,8 @@
   * Switch to copyright format 1.0.
   * copyright: exclude non-free test ref images.
   * rules: drop obsolete dh_strip --dbgsym-migration switch.
+  * postinst: make loaders.cache reproducible. Thanks Chris Lamb for the
+    patch. Closes: #875704.
 
  -- Jeremy Bicha <jbicha at debian.org>  Wed, 30 Aug 2017 21:53:24 -0400
 

Modified: desktop/unstable/gdk-pixbuf/debian/libgdk-pixbuf2.0-0.postinst.in
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gdk-pixbuf/debian/libgdk-pixbuf2.0-0.postinst.in?rev=54052&op=diff
==============================================================================
--- desktop/unstable/gdk-pixbuf/debian/libgdk-pixbuf2.0-0.postinst.in	[utf-8] (original)
+++ desktop/unstable/gdk-pixbuf/debian/libgdk-pixbuf2.0-0.postinst.in	[utf-8] Tue Sep 19 21:37:19 2017
@@ -14,7 +14,7 @@
             # This is triggered everytime an application installs a
             # GdkPixbuf loader
             /usr/lib/#MULTIARCH#/gdk-pixbuf-2.0/gdk-pixbuf-query-loaders \
-                $(find $LOADERS_DIR $LOADERS_DIR_OLD -name *.so 2> /dev/null) \
+                $(find $LOADERS_DIR $LOADERS_DIR_OLD -name *.so 2> /dev/null | LC_ALL=C sort) \
             > /usr/lib/#MULTIARCH#/gdk-pixbuf-2.0/2.10.0/loaders.cache || true
             ;;
         esac
@@ -28,6 +28,6 @@
 # Also handle the initial installation
 if [ -d $LOADERS_DIR ] || [ -d $LOADERS_DIR_OLD ]; then
     /usr/lib/#MULTIARCH#/gdk-pixbuf-2.0/gdk-pixbuf-query-loaders \
-        $(find $LOADERS_DIR $LOADERS_DIR_OLD -name *.so 2> /dev/null) \
+        $(find $LOADERS_DIR $LOADERS_DIR_OLD -name *.so 2> /dev/null | LC_ALL=C sort) \
     > /usr/lib/#MULTIARCH#/gdk-pixbuf-2.0/2.10.0/loaders.cache || true
 fi




More information about the pkg-gnome-commits mailing list