Package: release.debian.org Severity: normal User: [email protected] Usertags: pu
Hi, I'd like to get the following one-liner into wheezy. It's been reported a very long while ago, and the patch has waited way too long already before getting applied. (Low on manpower, etc., you know the drill.) | iso-scan (1.43+deb7u2) wheezy; urgency=low | | * Do not error out when searching in folders with shell-special | characters in their name (Closes: #640789). Thanks, Modestas Vainius! | * It should be noted that ISO files located in paths containing special | characters might still lead to some problems (See: #759174). Thanks, | Stephen Kitt, for the analysis! | | -- Cyril Brulebois <[email protected]> Sun, 28 Sep 2014 17:12:51 +0200 OK to upload? Mraw, KiBi.
diff -Nru iso-scan-1.43+deb7u1/debian/changelog iso-scan-1.43+deb7u2/debian/changelog --- iso-scan-1.43+deb7u1/debian/changelog 2013-10-08 01:30:40.000000000 +0200 +++ iso-scan-1.43+deb7u2/debian/changelog 2014-09-28 17:12:54.000000000 +0200 @@ -1,3 +1,13 @@ +iso-scan (1.43+deb7u2) wheezy; urgency=low + + * Do not error out when searching in folders with shell-special + characters in their name (Closes: #640789). Thanks, Modestas Vainius! + * It should be noted that ISO files located in paths containing special + characters might still lead to some problems (See: #759174). Thanks, + Stephen Kitt, for the analysis! + + -- Cyril Brulebois <[email protected]> Sun, 28 Sep 2014 17:12:51 +0200 + iso-scan (1.43+deb7u1) wheezy; urgency=low [ Joey Hess ] diff -Nru iso-scan-1.43+deb7u1/debian/iso-scan.postinst iso-scan-1.43+deb7u2/debian/iso-scan.postinst --- iso-scan-1.43+deb7u1/debian/iso-scan.postinst 2013-10-08 01:28:02.000000000 +0200 +++ iso-scan-1.43+deb7u2/debian/iso-scan.postinst 2014-09-28 17:12:40.000000000 +0200 @@ -162,7 +162,7 @@ elif [ "$look_subdirs" = 1 ]; then opt="-type f" fi - isolist=$(find $dir $opt -name "*.iso" -o -name "*.ISO" 2>/dev/null) + isolist=$(find "$dir" $opt -name "*.iso" -o -name "*.ISO" 2>/dev/null) TOPLEVEL_DIRS_COUNT=$(($TOPLEVEL_DIRS_COUNT + 1)) for iso in $isolist; do

