Package: release.debian.org Severity: normal User: release.debian....@packages.debian.org Usertags: unblock
Dear release managers, I would like to ask for the unblocking of texinfo 5.2.0.dfsg.1-6 It has not reached the 5 days, but I am leaving for a business trip so I do it now. The only code change is a dash - bash fix: - errors=$[errors+1] + errors=$((errors+1)) The rest is the changelog. Full debdiff attached. Thanks Norbert unblock texinfo/5.2.0.dfsg.1-6 -- System Information: Debian Release: 8.0 APT prefers unstable APT policy: (500, 'unstable'), (200, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.18.0-rc7+ (SMP w/4 CPU cores; PREEMPT) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system)
diff -Nru texinfo-5.2.0.dfsg.1/debian/changelog texinfo-5.2.0.dfsg.1/debian/changelog --- texinfo-5.2.0.dfsg.1/debian/changelog 2014-10-21 09:33:34.000000000 +0900 +++ texinfo-5.2.0.dfsg.1/debian/changelog 2014-12-07 21:14:35.000000000 +0900 @@ -1,3 +1,9 @@ +texinfo (5.2.0.dfsg.1-6) unstable; urgency=medium + + * fix bashism in update-info-dir (Closes: #772338) + + -- Norbert Preining <prein...@debian.org> Sun, 07 Dec 2014 21:13:29 +0900 + texinfo (5.2.0.dfsg.1-5) unstable; urgency=medium * mention texinfo-doc-nonfree in the info man page (Closes: #752731) diff -Nru texinfo-5.2.0.dfsg.1/debian/update-info-dir texinfo-5.2.0.dfsg.1/debian/update-info-dir --- texinfo-5.2.0.dfsg.1/debian/update-info-dir 2014-10-21 09:33:34.000000000 +0900 +++ texinfo-5.2.0.dfsg.1/debian/update-info-dir 2014-12-07 21:14:35.000000000 +0900 @@ -65,7 +65,7 @@ ;; *) install-info "$file" "$INFODIR/dir" || { - errors=$[errors+1] + errors=$((errors+1)) } ;; esac