[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#757799: marked as done (wheezy-pu: package xdg-utils/1.1.0~rc1+git20111210-6+deb7u1)



Your message dated Sat, 18 Oct 2014 12:06:30 +0100
with message-id <E1XfRqA-0002SK-Hp@jacala>
and subject line Closing bugs for updates in 7.7
has caused the Debian Bug report #757799,
regarding wheezy-pu: package xdg-utils/1.1.0~rc1+git20111210-6+deb7u1
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
757799: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=757799
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
Tags: wheezy
User: release.debian.org@packages.debian.org
Usertags: pu

Hi Release Team

The NMU of xdg-utils now for some weeks already in unstable fixes an
annoying bug in xdg-email while opening a composer window in
Thunderbird. The underlying issue is a bashism use of echo -e.

The debdiff and the NMU in unstable I uploaded uses /bin/echo -e
directly.

Attached is the corresponding debdiff for a possible wheezy
proposed-update.

Regards,
Salvatore
diff -Nru xdg-utils-1.1.0~rc1+git20111210/debian/changelog xdg-utils-1.1.0~rc1+git20111210/debian/changelog
--- xdg-utils-1.1.0~rc1+git20111210/debian/changelog	2012-02-11 17:06:35.000000000 +0100
+++ xdg-utils-1.1.0~rc1+git20111210/debian/changelog	2014-08-11 14:17:17.000000000 +0200
@@ -1,3 +1,13 @@
+xdg-utils (1.1.0~rc1+git20111210-6.1) wheezy; urgency=low
+
+  * Non-maintainer upload.
+  * Add fix-bashism-use-of-echo.patch patch.
+    Instead of using echo -e in xdg-email use directly /bin/echo. Fixes
+    bashism use of echo and fixes opening of composer window in Thunderbird.
+    (Closes: #685078, #691182)
+
+ -- Salvatore Bonaccorso <carnil@debian.org>  Mon, 11 Aug 2014 14:15:35 +0200
+
 xdg-utils (1.1.0~rc1+git20111210-6) unstable; urgency=low
 
   * Fix regression in patch xdg-open-escape-sed.diff. Because of
diff -Nru xdg-utils-1.1.0~rc1+git20111210/debian/patches/fix-bashism-use-of-echo.patch xdg-utils-1.1.0~rc1+git20111210/debian/patches/fix-bashism-use-of-echo.patch
--- xdg-utils-1.1.0~rc1+git20111210/debian/patches/fix-bashism-use-of-echo.patch	1970-01-01 01:00:00.000000000 +0100
+++ xdg-utils-1.1.0~rc1+git20111210/debian/patches/fix-bashism-use-of-echo.patch	2014-08-11 14:17:17.000000000 +0200
@@ -0,0 +1,27 @@
+Description: Use /bin/echo -e instead of echo -e in xdg-email
+Origin: vendor
+Bug-Debian: https://bugs.debian.org/685078
+Bug-Debian: https://bugs.debian.org/691182
+Forwarded: no
+Author: Salvatore Bonaccorso <carnil@debian.org>
+Last-Update: 2014-04-03
+
+--- a/scripts/xdg-email.in
++++ b/scripts/xdg-email.in
+@@ -43,12 +43,12 @@
+     fi
+ 
+     MAILTO=$(echo "$MAILTO" | sed 's/&/\n/g')
+-    TO=$(echo -e $(echo "$MAILTO" | grep '^to=' | sed 's/^to=//;s/%\(..\)/\\x\1/g' | awk '{ printf "\"%s\",",$0 }'))
+-    CC=$(echo -e $(echo "$MAILTO" | grep '^cc=' | sed 's/^cc=//;s/%\(..\)/\\x\1/g' | awk '{ printf "\"%s\",",$0 }'))
+-    BCC=$(echo -e $(echo "$MAILTO" | grep '^bcc=' | sed 's/^bcc=//;s/%\(..\)/\\x\1/g' | awk '{ printf "\"%s\",",$0 }'))
++    TO=$(/bin/echo -e $(echo "$MAILTO" | grep '^to=' | sed 's/^to=//;s/%\(..\)/\\x\1/g' | awk '{ printf "\"%s\",",$0 }'))
++    CC=$(/bin/echo -e $(echo "$MAILTO" | grep '^cc=' | sed 's/^cc=//;s/%\(..\)/\\x\1/g' | awk '{ printf "\"%s\",",$0 }'))
++    BCC=$(/bin/echo -e $(echo "$MAILTO" | grep '^bcc=' | sed 's/^bcc=//;s/%\(..\)/\\x\1/g' | awk '{ printf "\"%s\",",$0 }'))
+     SUBJECT=$(echo "$MAILTO" | grep '^subject=' | tail -n 1)
+     BODY=$(echo "$MAILTO" | grep '^body=' | tail -n 1)
+-    ATTACH=$(echo -e $(echo "$MAILTO" | grep '^attach=' | sed 's/^attach=//;s/%\(..\)/\\x\1/g' | awk '{ printf "%s,",$0 }' | sed 's/,$//'))
++    ATTACH=$(/bin/echo -e $(echo "$MAILTO" | grep '^attach=' | sed 's/^attach=//;s/%\(..\)/\\x\1/g' | awk '{ printf "%s,",$0 }' | sed 's/,$//'))
+ 
+     if [ -z "$TO" ] ; then
+         NEWMAILTO=
diff -Nru xdg-utils-1.1.0~rc1+git20111210/debian/patches/series xdg-utils-1.1.0~rc1+git20111210/debian/patches/series
--- xdg-utils-1.1.0~rc1+git20111210/debian/patches/series	2012-01-15 11:48:50.000000000 +0100
+++ xdg-utils-1.1.0~rc1+git20111210/debian/patches/series	2014-08-11 14:17:17.000000000 +0200
@@ -6,3 +6,4 @@
 xdg-open-spaces.diff
 xdg-open-escape-sed.diff
 no-X.diff
+fix-bashism-use-of-echo.patch

--- End Message ---
--- Begin Message ---
Version: 7.7

The upload discussed in this bug was included in the 7.7 point release.

Regards,

Adam

--- End Message ---

Reply to: