[Pkg-allegro-commits] r22 - unstable/rafkill/debian
Sam Hocevar
sho at costa.debian.org
Mon Jun 26 09:09:55 UTC 2006
Author: sho
Date: 2006-06-26 09:09:55 +0000 (Mon, 26 Jun 2006)
New Revision: 22
Modified:
unstable/rafkill/debian/changelog
unstable/rafkill/debian/rafkill.postinst
unstable/rafkill/debian/rules
Log:
rafkill (1.2.1-3) unstable; urgency=low
* debian/rakfill.postinst:
+ Do not try to remove the symlink we just set (Closes: #375142).
rafkill (1.2.1-2) unstable; urgency=low
* debian/rules:
+ Properly clean the build tree in the clean rule, thanks to Damyan Ivanov
(Closes: #368812).
Modified: unstable/rafkill/debian/changelog
===================================================================
--- unstable/rafkill/debian/changelog 2006-05-29 13:36:05 UTC (rev 21)
+++ unstable/rafkill/debian/changelog 2006-06-26 09:09:55 UTC (rev 22)
@@ -1,3 +1,18 @@
+rafkill (1.2.1-3) unstable; urgency=low
+
+ * debian/rakfill.postinst:
+ + Do not try to remove the symlink we just set (Closes: #375142).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org> Mon, 26 Jun 2006 11:07:28 +0200
+
+rafkill (1.2.1-2) unstable; urgency=low
+
+ * debian/rules:
+ + Properly clean the build tree in the clean rule, thanks to Damyan Ivanov
+ (Closes: #368812).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org> Sun, 11 Jun 2006 17:18:23 +0200
+
rafkill (1.2.1-1) unstable; urgency=low
* New upstream release.
Modified: unstable/rafkill/debian/rafkill.postinst
===================================================================
--- unstable/rafkill/debian/rafkill.postinst 2006-05-29 13:36:05 UTC (rev 21)
+++ unstable/rafkill/debian/rafkill.postinst 2006-06-26 09:09:55 UTC (rev 22)
@@ -1,9 +1,11 @@
#! /bin/sh
-if [ -d /usr/share/doc/rafkill ]; then
- rmdir --ignore-fail-on-non-empty /usr/share/doc/rafkill
- if [ ! -d /usr/share/doc/rafkill ]; then
- ln -s rafkill-data /usr/share/doc/rafkill
+DOCDIR="/usr/share/doc/rafkill"
+
+if [ -d "$DOCDIR" -a ! -L "$DOCDIR" ]; then
+ rmdir --ignore-fail-on-non-empty "$DOCDIR"
+ if [ ! -d "$DOCDIR" ]; then
+ ln -s rafkill-data "$DOCDIR"
fi
fi
Modified: unstable/rafkill/debian/rules
===================================================================
--- unstable/rafkill/debian/rules 2006-05-29 13:36:05 UTC (rev 21)
+++ unstable/rafkill/debian/rules 2006-06-26 09:09:55 UTC (rev 22)
@@ -19,6 +19,8 @@
rm -f build-stamp
scons --clean
rm -Rf install bin
+ rm -f rafkill.conf .sconsign.dblite
+ rm -Rf .sconf_temp
QUILT_PATCHES=debian/patches quilt pop -a -R || test $$? = 2
dh_clean
More information about the Pkg-allegro-commits
mailing list