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

Bug#690991: marked as done (unblock: dokuwiki/0.0.20120125b-2)



Your message dated Fri, 19 Oct 2012 23:16:45 +0200
with message-id <5081C33D.60108@thykier.net>
and subject line Re: Bug#690991: unblock: dokuwiki/0.0.20120125b-2
has caused the Debian Bug report #690991,
regarding unblock: dokuwiki/0.0.20120125b-2
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.)


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

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Please unblock package dokuwiki

The version currently in testing, dokuwiki/0.0.20120125b-1, has a bashism in a
Debian-specific user script, debian/addons/dokuwiki-addsite: two `read`
commands with a '-p "prompt"' option, which is not part of the POSIX standard.

This new version dokuwiki/0.0.20120125b-2 fixes it very simply, by removing
this option and replacing it by a printf placed just before.

unblock dokuwiki/0.0.20120125b-2

- -- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCgAGBQJQgb5AAAoJEOryzVHFAGgZvVYQAK9VOh+RPAauycexTzSt6kNU
+wnZAzkwPLRBJ+sMHvcW4IKSO2jxan1Ja9q/znbli6k7VTJemBlq4ePHwK+6qtzF
u9jXfkRtGkecBTKwA8mhY0wkrxakTAuuuFeq9cbsJeZeLyO6u1c9c4utCV8jXuMB
0JltcXsapT+AX3pdmeVd6BayWt4NX+HkpIA4BRfDeAFoGxVP/Bh25P3/JTP3oxLx
5YUEWBNY4/9t34C8513uSkQyPzrAkvvg6J07tUFJNvCE+9BpnUzdrXs0xzCDCp2P
dNS/udzb0zrrndyjfb1C3gtutw/0Z+gUZnGnDLsEe96Myt9/ebshkdCjrXrOZylj
mNhRXgSGJuXo4LIyS4s3/hTjokdUh0K3EjWslf1gXLsMapX1RbktBHt+8zj1KTX/
wH0c4y6K4DnQVc3GuJWO2w20SzWq2Gtco7EKZbymZyIgKQuYcvn8sxzPHTa1YM7l
yHG/9Db1ypL0SoPPxXXeL+O4CHu6ibOYhvR42pUONLgCADIwDixPhDbR8zLnlGKW
nwEeKk8odtLouc+W6RWl35muLNc1MCmba07i4akaKIhN53sj9/TnTWf6gfdMN28l
VIL/t78+saL/Bd9DaWpH8+95+NJC6vaeZAefUG1MVz5dU0nHK/yjh7HViKNMXxVj
+XQ5iDFX6sBgdTVeH7Ld
=sCXu
-----END PGP SIGNATURE-----
diff -Nru dokuwiki-0.0.20120125b/debian/add-ons/dokuwiki-addsite dokuwiki-0.0.20120125b/debian/add-ons/dokuwiki-addsite
--- dokuwiki-0.0.20120125b/debian/add-ons/dokuwiki-addsite	2012-08-15 11:56:58.000000000 +0200
+++ dokuwiki-0.0.20120125b/debian/add-ons/dokuwiki-addsite	2012-10-19 22:45:10.000000000 +0200
@@ -122,9 +122,11 @@
 stty -echo
 while [ "$password" != "$confirm" ]
 do
-    read -p "Choose an administrator password: " -r password
+    printf "Choose an administrator password: "
+    read -r password
     echo
-    read -p "Retype the administrator password: " -r confirm
+    printf "Retype the administrator password: "
+    read -r confirm
     echo
     if [ "$password" != "$confirm" ]
     then
diff -Nru dokuwiki-0.0.20120125b/debian/changelog dokuwiki-0.0.20120125b/debian/changelog
--- dokuwiki-0.0.20120125b/debian/changelog	2012-08-15 11:59:25.000000000 +0200
+++ dokuwiki-0.0.20120125b/debian/changelog	2012-10-19 22:46:41.000000000 +0200
@@ -1,3 +1,10 @@
+dokuwiki (0.0.20120125b-2) unstable; urgency=low
+
+  * debian/add-ons/dokuwiki-addsite: correct a bashism `read -p "…"`.
+    (Closes: #690650)
+
+ -- Tanguy Ortolo <tanguy+debian@ortolo.eu>  Fri, 19 Oct 2012 22:45:45 +0200
+
 dokuwiki (0.0.20120125b-1) unstable; urgency=high
 
   * New upstream bugfix release: sanitize a POST parameter that could be used

--- End Message ---
--- Begin Message ---
On 2012-10-19 22:55, Tanguy Ortolo wrote:
> Package: release.debian.org
> Severity: normal
> User: release.debian.org@packages.debian.org
> Usertags: unblock
> 
> Please unblock package dokuwiki
> 
> The version currently in testing, dokuwiki/0.0.20120125b-1, has a bashism in a
> Debian-specific user script, debian/addons/dokuwiki-addsite: two `read`
> commands with a '-p "prompt"' option, which is not part of the POSIX standard.
> 
> This new version dokuwiki/0.0.20120125b-2 fixes it very simply, by removing
> this option and replacing it by a printf placed just before.
> 
> unblock dokuwiki/0.0.20120125b-2
> 
> [...]

Unblocked, thanks.

~Niels

--- End Message ---

Reply to: