[Debburn-changes] r745 - in cdrkit/trunk: . debian

Eduard Bloch blade at alioth.debian.org
Sat Apr 21 09:04:52 UTC 2007


Author: blade
Date: 2007-04-21 09:04:51 +0000 (Sat, 21 Apr 2007)
New Revision: 745

Added:
   cdrkit/trunk/debian/cdrecord.preinst
   cdrkit/trunk/debian/mkisofs.preinst
Modified:
   cdrkit/trunk/Changelog
   cdrkit/trunk/debian/changelog
   cdrkit/trunk/debian/wodim.preinst
Log:
Changelog improved, added preinst files to remove doc directories cruft

Modified: cdrkit/trunk/Changelog
===================================================================
--- cdrkit/trunk/Changelog	2007-04-21 07:14:45 UTC (rev 744)
+++ cdrkit/trunk/Changelog	2007-04-21 09:04:51 UTC (rev 745)
@@ -1,24 +1,26 @@
-cdrkit (1.1.5) UNRELEASED; urgency=low
+cdrkit (1.1.5) RELEASED; urgency=low
 
-  * always return a value in usal_sense_table(...), from a patch from
-    SUSE (cdrkit-dvd-fix.patch)
-  * explicite warning and more grace time if user specifies a size less than
-    301 sectors, which is likely to be a mistake from copy-pasting of
-    mkisofs/genisoimage -print-size output
-  * Native device name management directly in libusal, -scandev method uses it
-    directly now. If the backend driver does not implement it, the old-style
-    IDs are returned.
-  * ATA is now mapped directly into the b/t/l namespace, with some workarounds
-    to provide backward compatibility
-  * For SCSI devices, use only scd* on kernel 2.6 and sg* on kernel 2.4 until
-    proper locking scheme is established
+  * wodim: explicite warning and more grace time if user manually specifies a size
+    less than 301 sectors, which is likely to be a mistake from copy-pasting
+    of genisoimage -print-size output and omitting the block factor
+  * wodim: Native device name management directly in libusal now, the
+    rewritten device scan method uses it directly. If the backend driver does
+    not implement native names handling, the old-style IDs are displayed.
+  * libusal: native device name management, implemented on Linux and
+    Win32(SPT) for now
+  * libusal: ATA is now mapped directly into the b/t/l namespace, with some
+    workarounds to provide backward compatibility
+  * libusal: For SCSI devices, use only scd* on kernel 2.6 and sg* on kernel
+    2.4 until proper locking scheme is established
+  * libusal: always return a known value in usal_sense_table(...), from a
+    patch from SUSE (cdrkit-dvd-fix.patch)
   * genisoimage: customized the default APPID string in genisoimage
   * genisoimage: restored support for iso9660 file sizes up to 4GB-1
   * genisoimage: forced MAGIC_ERROR definition for older version, thanks 
-    to T. Schmidt
-  * genisoimage: avoid pointless warnings on filetype of <root directory>/".."
+    to Thomas Schmidt
+  * genisoimage: avoid pointless warnings on filetype of <root directory>/..
 
- -- Eduard Bloch <blade at debian.org>  Fri, 20 Apr 2007 23:41:13 +0200
+ -- Eduard Bloch <blade at debian.org>  Sat, 21 Apr 2007 10:17:35 +0200
 
 cdrkit (1.1.4) RELEASED; urgency=low
 

Added: cdrkit/trunk/debian/cdrecord.preinst
===================================================================
--- cdrkit/trunk/debian/cdrecord.preinst	2007-04-21 07:14:45 UTC (rev 744)
+++ cdrkit/trunk/debian/cdrecord.preinst	2007-04-21 09:04:51 UTC (rev 745)
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+if [ "$1" = "upgrade" ] ||  [ "$1" = "install" ] ; then
+   rm /usr/share/doc/cdrecord 2>/dev/null || true
+   rmdir /usr/share/doc/cdrecord 2>/dev/null || true
+fi
+
+#DEBHELPER#
+

Modified: cdrkit/trunk/debian/changelog
===================================================================
--- cdrkit/trunk/debian/changelog	2007-04-21 07:14:45 UTC (rev 744)
+++ cdrkit/trunk/debian/changelog	2007-04-21 09:04:51 UTC (rev 745)
@@ -1,6 +1,8 @@
 cdrkit (9:1.1.5-1) unstable; urgency=low
 
   * New upstream release
+  * drop symlink or empty cdrecord directory before unpacking (closes: #418473)
+  * drop symlink or empty mkisofs directory before unpacking (closes: #418474)
 
  -- Eduard Bloch <blade at debian.org>  Fri, 13 Apr 2007 18:40:44 +0200
 

Added: cdrkit/trunk/debian/mkisofs.preinst
===================================================================
--- cdrkit/trunk/debian/mkisofs.preinst	2007-04-21 07:14:45 UTC (rev 744)
+++ cdrkit/trunk/debian/mkisofs.preinst	2007-04-21 09:04:51 UTC (rev 745)
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+if [ "$1" = "upgrade" ] ||  [ "$1" = "install" ] ; then
+    rm /usr/share/doc/mkisofs 2>/dev/null || true
+    rmdir /usr/share/doc/mkisofs 2>/dev/null || true
+fi
+
+#DEBHELPER#
+

Modified: cdrkit/trunk/debian/wodim.preinst
===================================================================
--- cdrkit/trunk/debian/wodim.preinst	2007-04-21 07:14:45 UTC (rev 744)
+++ cdrkit/trunk/debian/wodim.preinst	2007-04-21 09:04:51 UTC (rev 745)
@@ -43,7 +43,8 @@
       esac
    done
    # drop directories but only if empty
-   yes n | rm -r /etc/cdrecord /etc/wodim 2>/dev/null || true
+   test -d /etc/cdrecord && rmdir /etc/cdrecord 2>/dev/null || true
+   test -d /etc/wodim && rmdir /etc/wodim 2>/dev/null || true
 fi
 
 #DEBHELPER#




More information about the Debburn-changes mailing list