r3147 - general/nvram-wakeup/trunk/debian

Thomas Schmidt tschmidt at costa.debian.org
Tue Aug 15 20:41:19 UTC 2006


Author: tschmidt
Date: 2006-08-15 20:41:18 +0000 (Tue, 15 Aug 2006)
New Revision: 3147

Modified:
   general/nvram-wakeup/trunk/debian/changelog
   general/nvram-wakeup/trunk/debian/control
   general/nvram-wakeup/trunk/debian/copyright
   general/nvram-wakeup/trunk/debian/postinst
Log:
nvram-wakeup:
  * Fixed call to MAKEDEV in debian/postinst to not fail on systems
    using udev
  * Bumped Standards-Version to 3.7.2


Modified: general/nvram-wakeup/trunk/debian/changelog
===================================================================
--- general/nvram-wakeup/trunk/debian/changelog	2006-08-15 20:33:05 UTC (rev 3146)
+++ general/nvram-wakeup/trunk/debian/changelog	2006-08-15 20:41:18 UTC (rev 3147)
@@ -1,3 +1,11 @@
+nvram-wakeup (0.97-12) UNRELEASED; urgency=low
+
+  * Fixed call to MAKEDEV in debian/postinst to not fail on systems 
+    using udev
+  * Bumped Standards-Version to 3.7.2
+
+ -- Thomas Schmidt <tschmidt at debian.org>  Tue, 15 Aug 2006 07:43:56 +0200
+
 nvram-wakeup (0.97-11) unstable; urgency=low
 
   * Tobias Grimm <tg at e-tobi.net>

Modified: general/nvram-wakeup/trunk/debian/control
===================================================================
--- general/nvram-wakeup/trunk/debian/control	2006-08-15 20:33:05 UTC (rev 3146)
+++ general/nvram-wakeup/trunk/debian/control	2006-08-15 20:41:18 UTC (rev 3147)
@@ -4,7 +4,7 @@
 Maintainer: Debian VDR Team <pkg-vdr-dvb-devel at lists.alioth.debian.org>
 Uploaders: Tobias Grimm <tg at e-tobi.net>, Thomas Schmidt <tschmidt at debian.org>
 Build-Depends: debhelper (>> 4.1.16), dpatch (>= 2.0.9)
-Standards-Version: 3.6.2.1
+Standards-Version: 3.7.2
 
 Package: nvram-wakeup
 Architecture: i386 amd64

Modified: general/nvram-wakeup/trunk/debian/copyright
===================================================================
--- general/nvram-wakeup/trunk/debian/copyright	2006-08-15 20:33:05 UTC (rev 3146)
+++ general/nvram-wakeup/trunk/debian/copyright	2006-08-15 20:41:18 UTC (rev 3147)
@@ -5,6 +5,11 @@
 
 Upstream Author: Sergei Haller <Sergei.Haller at math.uni-giessen.de>
 
+Debian Maintainers:
+
+  Tobias Grimm <tg at e-tobi.net>
+  Thomas Schmidt <tschmidt at debian.org>
+
 Copyright:
 
   This program is free software; you can redistribute it and/or modify

Modified: general/nvram-wakeup/trunk/debian/postinst
===================================================================
--- general/nvram-wakeup/trunk/debian/postinst	2006-08-15 20:33:05 UTC (rev 3146)
+++ general/nvram-wakeup/trunk/debian/postinst	2006-08-15 20:41:18 UTC (rev 3147)
@@ -27,11 +27,8 @@
 #     installation fails and the `postinst' is called with `abort-upgrade',
 #     `abort-remove' or `abort-deconfigure'.
 
-if [ ! -e /dev/.devfsd ]
-then
-	cd /dev && /dev/MAKEDEV nvram
-	cd /dev && /dev/MAKEDEV rtc
-fi
+cd /dev && ./MAKEDEV nvram || true
+cd /dev && ./MAKEDEV rtc || true
 
 case "$1" in
     configure)




More information about the pkg-vdr-dvb-changes mailing list