Hi, Dear maintainer,
I've prepared an NMU for typespeed (versioned as 0.6.4-2.1) and uploaded it. The diff is attached. Thanks Charlie for the patch. Best Regards. Patrick
diff -u typespeed-0.6.4/debian/changelog typespeed-0.6.4/debian/changelog --- typespeed-0.6.4/debian/changelog +++ typespeed-0.6.4/debian/changelog @@ -1,3 +1,12 @@ +typespeed (0.6.4-2.1) unstable; urgency=medium + + * Non-maintainer upload. + * Urgency medium as this clears an rc bug + * Include patch by Charliej to fix problems when purging the package + (Closes: #500756) + + -- Patrick Schoenfeld <[EMAIL PROTECTED]> Wed, 01 Oct 2008 17:53:20 +0200 + typespeed (0.6.4-2) unstable; urgency=high * High priority so that fix for #454527 gets into testing. diff -u typespeed-0.6.4/debian/postrm typespeed-0.6.4/debian/postrm --- typespeed-0.6.4/debian/postrm +++ typespeed-0.6.4/debian/postrm @@ -2,7 +2,9 @@ if test "$1" = "purge"; then rm -f /var/games/typespeed/high.words.* - rmdir --ignore-fail-on-non-empty /var/games/typespeed + if [ -d /var/games/typespeed ]; then + rmdir --ignore-fail-on-non-empty /var/games/typespeed + fi rm -f /var/games/typespeed.score fi