Package: release.debian.org Severity: normal User: [email protected] Usertags: unblock
Please unblock package gpsd Andreas Beckmann asked me to update the fix for #774872 to support updates from Lenny to jessie without prompting due to modified conffiles. I've happily applied his patch. Diff is attached. unblock gpsd/3.11-3 thanks, bernd -- Bernd Zeimetz Debian GNU/Linux Developer http://bzed.de http://www.debian.org GPG Fingerprint: ECA1 E3F2 8E11 2432 D485 DD95 EB36 171A 6FF9 435F
diff --git a/debian/changelog b/debian/changelog index 88fd6f2..b2eee72 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +gpsd (3.11-3) unstable; urgency=medium + + [ Andreas Beckmann ] + * [dd6bbdf1] avoid prompting due to modified lenny conffiles + + -- Bernd Zeimetz <[email protected]> Sun, 25 Jan 2015 12:15:44 +0100 + gpsd (3.11-2) unstable; urgency=medium * [a759614c] Avoid prompting due to modified squeeze conffiles. diff --git a/debian/gpsd.preinst b/debian/gpsd.preinst index aba1c8d..463f57d 100644 --- a/debian/gpsd.preinst +++ b/debian/gpsd.preinst @@ -13,9 +13,10 @@ case "$1" in if [ -f /etc/default/gpsd ]; then cp /etc/default/gpsd /etc/default/gpsd.dpkg-pre_3.10 gpsd_hashsum="$(md5sum /etc/default/gpsd | awk '{print $1}')" - # handle upgrades from squeeze -> wheeze -> jessie + # handle upgrades from lenny -> squeeze -> wheeze -> jessie case ${gpsd_hashsum} in - 5944bab322c2a6df28cf0e64f7f7ec86|4d3f8665963201dc74721ef06bf27989) + # wheezy # squeeze # lenny # lenny -> squeeze -> wheezy + 5944bab322c2a6df28cf0e64f7f7ec86|4d3f8665963201dc74721ef06bf27989|d19811464c448c0852ad541be3f7fdc3|370942c4da267af152f6c3178137e60f) rm -f /etc/default/gpsd ;; esac

