r54102 - in /desktop/unstable/gvfs/debian: changelog patches/programs-Fix-bashism-in-gvfs-wrapper-script.patch patches/series

biebl at users.alioth.debian.org biebl at users.alioth.debian.org
Thu Sep 28 12:24:15 UTC 2017


Author: biebl
Date: Thu Sep 28 12:24:15 2017
New Revision: 54102

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=54102
Log:
Fix bashism in gvfs-* wrapper script. (Closes: #877068)

Added:
    desktop/unstable/gvfs/debian/patches/programs-Fix-bashism-in-gvfs-wrapper-script.patch
Modified:
    desktop/unstable/gvfs/debian/changelog
    desktop/unstable/gvfs/debian/patches/series

Modified: desktop/unstable/gvfs/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gvfs/debian/changelog?rev=54102&op=diff
==============================================================================
--- desktop/unstable/gvfs/debian/changelog	[utf-8] (original)
+++ desktop/unstable/gvfs/debian/changelog	[utf-8] Thu Sep 28 12:24:15 2017
@@ -1,3 +1,9 @@
+gvfs (1.34.0-3) UNRELEASED; urgency=medium
+
+  * Fix bashism in gvfs-* wrapper script. (Closes: #877068)
+
+ -- Michael Biebl <biebl at debian.org>  Thu, 28 Sep 2017 14:23:04 +0200
+
 gvfs (1.34.0-2) unstable; urgency=medium
 
   * debian/gvfs-bin.install: Don't try to install bash-completion

Added: desktop/unstable/gvfs/debian/patches/programs-Fix-bashism-in-gvfs-wrapper-script.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gvfs/debian/patches/programs-Fix-bashism-in-gvfs-wrapper-script.patch?rev=54102&op=file
==============================================================================
--- desktop/unstable/gvfs/debian/patches/programs-Fix-bashism-in-gvfs-wrapper-script.patch	(added)
+++ desktop/unstable/gvfs/debian/patches/programs-Fix-bashism-in-gvfs-wrapper-script.patch	[utf-8] Thu Sep 28 12:24:15 2017
@@ -0,0 +1,26 @@
+From c30407bae87ac9b6450baeb0c4899e86b3f24fcd Mon Sep 17 00:00:00 2001
+From: Michael Biebl <biebl at debian.org>
+Date: Thu, 28 Sep 2017 14:17:10 +0200
+Subject: [PATCH] programs: Fix bashism in gvfs-* wrapper script
+
+https://bugzilla.gnome.org/show_bug.cgi?id=788289
+---
+ programs/deprecated.in | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/programs/deprecated.in b/programs/deprecated.in
+index 00722557..7fedf927 100644
+--- a/programs/deprecated.in
++++ b/programs/deprecated.in
+@@ -7,7 +7,7 @@ help="gio help @command@"
+ >&2 echo "See '$help' for more info."
+ >&2 echo
+ 
+-if [ "$1" == "--help" ] || [ "$1" == "-h" ]; then
++if [ "$1" = "--help" ] || [ "$1" = "-h" ]; then
+   exec $help "$@:2"
+ else
+   exec $replacement "$@"
+-- 
+2.14.2
+

Modified: desktop/unstable/gvfs/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gvfs/debian/patches/series?rev=54102&op=diff
==============================================================================
--- desktop/unstable/gvfs/debian/patches/series	[utf-8] (original)
+++ desktop/unstable/gvfs/debian/patches/series	[utf-8] Thu Sep 28 12:24:15 2017
@@ -5,3 +5,4 @@
 dont-crash-on-null-job.patch
 handle-inactive-vfs.patch
 ref-jobs-in-thread.patch
+programs-Fix-bashism-in-gvfs-wrapper-script.patch




More information about the pkg-gnome-commits mailing list