How many times will I forget to attach a file? Sorry.
Thomas
diff -Nru lirc-0.9.0~pre1/debian/changelog lirc-0.9.0~pre1/debian/changelog --- lirc-0.9.0~pre1/debian/changelog 2011-03-06 22:16:30.000000000 +0100 +++ lirc-0.9.0~pre1/debian/changelog 2013-02-12 18:25:50.000000000 +0100 @@ -1,3 +1,10 @@ +lirc (0.9.0~pre1-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Avoid prompt when conffiles are not modified (Closes: #655969). + + -- Thomas Preud'homme <robo...@debian.org> Tue, 12 Feb 2013 18:24:27 +0100 + lirc (0.9.0~pre1-1) unstable; urgency=low [ Sven Mueller ] diff -Nru lirc-0.9.0~pre1/debian/lirc.preinst lirc-0.9.0~pre1/debian/lirc.preinst --- lirc-0.9.0~pre1/debian/lirc.preinst 1970-01-01 01:00:00.000000000 +0100 +++ lirc-0.9.0~pre1/debian/lirc.preinst 2013-03-07 15:51:25.000000000 +0100 @@ -0,0 +1,26 @@ +#!/bin/sh + +set -e + +case "$1" in + upgrade) + oldconfmd5=$(md5sum /etc/lirc/hardware.conf | cut -d ' ' -f 1) + if [ "$oldconfmd5" = "566ee1cfca73380a6ec4af14c7d874cd" ] + then + sed -i "s/^\(DRIVER\)=\"/\1=\"UNCONFIGURED/" /etc/lirc/hardware.conf + fi;; + install|abort-upgrade) + ;; + + *) + echo "preinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0
signature.asc
Description: This is a digitally signed message part.