Your message dated Wed, 3 Dec 2014 13:16:03 +0100
with message-id <[email protected]>
and subject line Re: Bug#771624: unblock: typespeed/0.6.5-2.1
has caused the Debian Bug report #771624,
regarding unblock: typespeed/0.6.5-2.1
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
771624: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=771624
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: [email protected]
Usertags: unblock
Please unblock package typespeed
Just NMUed to DELAYED/2: Trivial postrm fix to not fail to
remove a missing directory.
Andreas
unblock typespeed/0.6.5-2.1
diff -u typespeed-0.6.5/debian/changelog typespeed-0.6.5/debian/changelog
--- typespeed-0.6.5/debian/changelog
+++ typespeed-0.6.5/debian/changelog
@@ -1,3 +1,10 @@
+typespeed (0.6.5-2.1) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * postrm: Do not fail on removal of a missing directory. (Closes: #767669)
+
+ -- Andreas Beckmann <[email protected]> Mon, 01 Dec 2014 04:17:42 +0100
+
typespeed (0.6.5-2) unstable; urgency=medium
* Use autotools-dev to update config.{guess,sub} during build.
diff -u typespeed-0.6.5/debian/postrm typespeed-0.6.5/debian/postrm
--- typespeed-0.6.5/debian/postrm
+++ typespeed-0.6.5/debian/postrm
@@ -1,8 +1,11 @@
-#!/bin/sh -e
+#!/bin/sh
+set -e
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
--- End Message ---
--- Begin Message ---
Hi,
On Tue, Dec 02, 2014 at 01:13:58PM +0100, Andreas Beckmann wrote:
> This is now in sid and successfully built.
Unblocked.
Cheers,
Ivo
--- End Message ---