Package: release.debian.org Severity: normal User: [email protected] Usertags: unblock
Please unblock package ifupdown2 Hello, Following up on the comments on our last unblock attempt (#857258). LC_ALL directive was fixed (removed from the top of the files and only added where needed). Thanks diff -Nru ifupdown2-1.0~git20170223/debian/changelog ifupdown2-1.0~git20170314/debian/changelog --- ifupdown2-1.0~git20170223/debian/changelog 2017-02-23 11:24:37.000000000 +0100 +++ ifupdown2-1.0~git20170314/debian/changelog 2017-03-14 23:06:14.000000000 +0100 @@ -1,3 +1,21 @@ +ifupdown2 (1.0~git20170314-1) unstable; urgency=medium + + * debian: install files: fix LC_ALL=C.UTF-8 following comments on #857258 + + -- Julien Fortin <[email protected]> Tue, 14 Mar 2017 23:06:14 +0100 + +ifupdown2 (1.0~git20170308-1) unstable; urgency=medium + + * debian: add LC_ALL=C.UTF-8 directive in prestinst, postinst, postrm files + + -- Julien Fortin <[email protected]> Wed, 08 Mar 2017 18:39:02 +0100 + +ifupdown2 (1.0~git20170307-1) unstable; urgency=medium + + * preinst: remove english word from grep filter (closes: #856970) + + -- Julien Fortin <[email protected]> Tue, 07 Mar 2017 11:24:37 +0100 + ifupdown2 (1.0~git20170223-1) unstable; urgency=medium * drop the dependency to pkg_resources, hardcode version number (closes: #855401) diff -Nru ifupdown2-1.0~git20170223/debian/ifupdown2.postrm ifupdown2-1.0~git20170314/debian/ifupdown2.postrm --- ifupdown2-1.0~git20170223/debian/ifupdown2.postrm 2017-02-23 11:24:37.000000000 +0100 +++ ifupdown2-1.0~git20170314/debian/ifupdown2.postrm 2017-03-14 23:06:14.000000000 +0100 @@ -45,7 +45,7 @@ # restore file if we diverted it on install/upgrade _postrm_divert() { - diversions=$(dpkg-divert --list | grep "^diversion of $1 .* by ifupdown2$" | wc -l 2> /dev/null) + diversions=$(LC_ALL=C.UTF-8 dpkg-divert --list | grep "^diversion of $1 .* by ifupdown2$" | wc -l 2> /dev/null) if [ $diversions -gt 0 ]; then dpkg-divert --remove --package ifupdown2 --rename $1 diff -Nru ifupdown2-1.0~git20170223/debian/ifupdown2.preinst ifupdown2-1.0~git20170314/debian/ifupdown2.preinst --- ifupdown2-1.0~git20170223/debian/ifupdown2.preinst 2017-02-23 11:24:37.000000000 +0100 +++ ifupdown2-1.0~git20170314/debian/ifupdown2.preinst 2017-03-14 23:06:14.000000000 +0100 @@ -7,7 +7,7 @@ preinst_divert() { - diversions=$(dpkg-divert --list | grep "$1" | grep -v 'by ifupdown2$' | wc -l 2> /dev/null) + diversions=$(LC_ALL=C.UTF-8 dpkg-divert --list | grep "$1" | grep -v 'ifupdown2$' | wc -l 2> /dev/null) if [ "$diversions" -gt 0 ]; then report_err "existing diversion for $1" diff -Nru ifupdown2-1.0~git20170223/sbin/ifupdown2 ifupdown2-1.0~git20170314/sbin/ifupdown2 --- ifupdown2-1.0~git20170223/sbin/ifupdown2 2017-02-23 11:32:43.000000000 +0100 +++ ifupdown2-1.0~git20170314/sbin/ifupdown2 2017-03-14 23:11:06.000000000 +0100 @@ -18,7 +18,7 @@ from ifupdown.ifupdownmain import * from ifupdown.utils import * -IFUPDOWN2_VERSION = '1.1-cl3u9' +IFUPDOWN2_VERSION = '20170314' lockfile="/run/network/.lock" configfile="/etc/network/ifupdown2/ifupdown2.conf" unblock ifupdown2/1.0~git20170314-1 -- System Information: Debian Release: 9.0 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'unstable'), (500, 'stable') Architecture: amd64 (x86_64) Kernel: Linux 3.16.0-4-amd64 (SMP w/1 CPU core) Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system)

