[Usbmount-commit] r35 - in trunk: usbmount usbmount/debian www www/package

Martin Dickopp mdickopp-guest at alioth.debian.org
Sat Jan 27 13:07:05 CET 2007


Author: mdickopp-guest
Date: 2007-01-27 13:07:04 +0100 (Sat, 27 Jan 2007)
New Revision: 35

Added:
   trunk/www/package/usbmount_0.0.14.1.dsc
   trunk/www/package/usbmount_0.0.14.1.tar.gz
   trunk/www/package/usbmount_0.0.14.1_all.deb
   trunk/www/package/usbmount_0.0.14.1_amd64.changes
Removed:
   trunk/www/package/usbmount_0.0.14.dsc
   trunk/www/package/usbmount_0.0.14.tar.gz
   trunk/www/package/usbmount_0.0.14_all.deb
   trunk/www/package/usbmount_0.0.14_amd64.changes
Modified:
   trunk/usbmount/debian/changelog
   trunk/usbmount/debian/control
   trunk/usbmount/usbmount
   trunk/usbmount/usbmount.rules
   trunk/www/index.html.in
   trunk/www/style.css
Log:
Orphan package. Add a warning to the web page that the package is no
longer being maintained.


Modified: trunk/usbmount/debian/changelog
===================================================================
--- trunk/usbmount/debian/changelog	2006-06-16 09:15:54 UTC (rev 34)
+++ trunk/usbmount/debian/changelog	2007-01-27 12:07:04 UTC (rev 35)
@@ -1,15 +1,27 @@
 usbmount (0.0.14.1) unstable; urgency=low
 
-  NOT YET RELEASED!
-
   [Rafael Laboissiere]
   * debian/control:
     - Bumped Standards-Version to 3.7.2 (no changes needed)
     - Moved debhelper and cdbs from Build-Depends-Indep to Build-Depends,
       complying with section 7.6 of the Debian Policy.
+  [Martin Dickopp]
+  * Acknowledge NMU (closes: #361351, #365225).
+  * Orphaning package, setting maintainer to Debian QA Group.
 
- --
+ -- Martin Dickopp <martin at zero-based.org>  Sat, 27 Jan 2007 12:42:44 +0100
 
+usbmount (0.0.14-0.1) unstable; urgency=low
+
+  * Non-Maintainer Upload
+  * Change path of vol_id of udev to the new location in /lib/udev. Thanks to
+    Eric Evans for the patch (Closes: #361351)
+    - Minimum udev dependency now 0.084-2, first version to ship vol_id in
+      that location
+  * Fix udev rule syntax, patch by Eric Evans (Closes: #365225)
+
+ -- Jeroen van Wolffelaar <jeroen at wolffelaar.nl>  Sun, 30 Apr 2006 23:45:57 +0000
+
 usbmount (0.0.14) unstable; urgency=low
 
   * Upload sponsored by Rafael Laboissiere.

Modified: trunk/usbmount/debian/control
===================================================================
--- trunk/usbmount/debian/control	2006-06-16 09:15:54 UTC (rev 34)
+++ trunk/usbmount/debian/control	2007-01-27 12:07:04 UTC (rev 35)
@@ -1,14 +1,13 @@
 Source: usbmount
 Section: admin
 Priority: extra
-Maintainer: Martin Dickopp <martin at zero-based.org>
-Uploaders: Rafael Laboissiere <rafael at debian.org>
+Maintainer: Debian QA Group <packages at qa.debian.org>
 Build-Depends: cdbs, debhelper (>= 4.1.0)
 Standards-Version: 3.7.2
 
 Package: usbmount
 Architecture: all
-Depends: udev (>= 0.060-1), lockfile-progs
+Depends: udev (>= 0.084-2), lockfile-progs
 Description: automatically mount and unmount USB mass storage devices
  This package automatically mounts USB mass storage devices (typically
  USB pens) when they are plugged in, and unmounts them when they are

Modified: trunk/usbmount/usbmount
===================================================================
--- trunk/usbmount/usbmount	2006-06-16 09:15:54 UTC (rev 34)
+++ trunk/usbmount/usbmount	2007-01-27 12:07:04 UTC (rev 35)
@@ -36,8 +36,8 @@
 }
 
 
-# Test if /sbin/vol_id is executable.
-test -x /sbin/vol_id || { log err "cannnot execute /sbin/vol_id"; exit 1; }
+# Test if /lib/udev/vol_id is executable.
+test -x /lib/udev/vol_id || { log err "cannnot execute /lib/udev/vol_id"; exit 1; }
 
 # Default values for configuration variables.
 MOUNTPOINTS=""
@@ -85,10 +85,10 @@
     # Test if the device contains a filesystem.  If it doesn't, no
     # further action is required, but calling vol_id has the side effect
     # that the partition table is read and partition devices are created.
-    if /sbin/vol_id "$DEVNAME" | egrep -q '^ID_FS_USAGE=(filesystem|disklabel)$'; then
+    if /lib/udev/vol_id "$DEVNAME" | egrep -q '^ID_FS_USAGE=(filesystem|disklabel)$'; then
 	log debug "$DEVNAME contains a filesystem or disklabel"
 
-	fstype="`/sbin/vol_id -t \"$DEVNAME\"`"
+	fstype="`/lib/udev/vol_id -t \"$DEVNAME\"`"
 	log debug "$DEVNAME contains filesystem type $fstype"
 
 	# Test if the filesystem type is in the list of filesystem

Modified: trunk/usbmount/usbmount.rules
===================================================================
--- trunk/usbmount/usbmount.rules	2006-06-16 09:15:54 UTC (rev 34)
+++ trunk/usbmount/usbmount.rules	2007-01-27 12:07:04 UTC (rev 35)
@@ -1,6 +1,6 @@
 # Rules for USBmount
 
-KERNEL="sd*", BUS=="usb", ACTION=="add",    RUN+="/usr/share/usbmount/usbmount add"
-KERNEL="ub*", BUS=="usb", ACTION=="add",    RUN+="/usr/share/usbmount/usbmount add"
-KERNEL="sd*",             ACTION=="remove", RUN+="/usr/share/usbmount/usbmount remove"
-KERNEL="ub*",             ACTION=="remove", RUN+="/usr/share/usbmount/usbmount remove"
+KERNEL=="sd*", BUS=="usb", ACTION=="add",    RUN+="/usr/share/usbmount/usbmount add"
+KERNEL=="ub*", BUS=="usb", ACTION=="add",    RUN+="/usr/share/usbmount/usbmount add"
+KERNEL=="sd*",             ACTION=="remove", RUN+="/usr/share/usbmount/usbmount remove"
+KERNEL=="ub*",             ACTION=="remove", RUN+="/usr/share/usbmount/usbmount remove"

Modified: trunk/www/index.html.in
===================================================================
--- trunk/www/index.html.in	2006-06-16 09:15:54 UTC (rev 34)
+++ trunk/www/index.html.in	2007-01-27 12:07:04 UTC (rev 35)
@@ -5,7 +5,7 @@
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="robots" content="index, follow" />
   <meta name="author" content="Martin Dickopp" />
-  <meta name="copyright" content="Copyright &copy; 2004, 2005 Martin Dickopp" />
+  <meta name="copyright" content="Copyright &copy; 2004, 2005, 2007 Martin Dickopp" />
   <meta name="date" content="@METATIME@" />
   <meta name="language" content="en" />
   <meta name="keywords" content="USB, USB storage device, USB mass storage device, USB pen, USB memory pen, mount" />
@@ -22,6 +22,9 @@
     <a href="#history" title="History of USBmount">History</a>&nbsp;|
     <a href="#bugs" title="Report Bugs">Bug Reporting</a>&nbsp;]</p>
 
+    <div id="orphanwarning"><p><strong>Warning:</strong> The original author does not have enough time any more
+    to actively maintain the USBmount package. It is therefore currently unmaintained.</p></div>
+
     <h2><a name="what" class="invlink">What is it?</a></h2>
 
     <p>The USBmount Debian package automatically mounts <acronym title="Universal Serial Bus">USB</acronym>
@@ -67,18 +70,18 @@
     <ul>
       <li>Source:
       <ul>
-	<li><a href="package/usbmount_0.0.14.dsc">usbmount_0.0.14.dsc</a></li>
-	<li><a href="package/usbmount_0.0.14.tar.gz">usbmount_0.0.14.tar.gz</a></li>
+	<li><a href="package/usbmount_0.0.14.1.dsc">usbmount_0.0.14.1.dsc</a></li>
+	<li><a href="package/usbmount_0.0.14.1.tar.gz">usbmount_0.0.14.1.tar.gz</a></li>
       </ul></li>
 
       <li>Binary:
       <ul>
-	<li><a href="package/usbmount_0.0.14_all.deb">usbmount_0.0.14_all.deb</a></li>
+	<li><a href="package/usbmount_0.0.14.1_all.deb">usbmount_0.0.14.1_all.deb</a></li>
       </ul></li>
 
       <li>Changes:
       <ul>
-	<li><a href="package/usbmount_0.0.14_amd64.changes">usbmount_0.0.14_amd64.changes</a></li>
+	<li><a href="package/usbmount_0.0.14.1_amd64.changes">usbmount_0.0.14.1_amd64.changes</a></li>
       </ul></li>
     </ul>
 
@@ -94,8 +97,13 @@
     <h2><a name="history" class="invlink">History</a></h2>
 
     <ul>
-      <li>Version 0.0.14 (10-Jul-2005, latest release):
+      <li>Version 0.0.14.1 (27-Jan-2007, latest release):
       <ul>
+	<li>Orphan package.</li>
+      </ul></li>
+
+      <li>Version 0.0.14 (10-Jul-2005):
+      <ul>
 	<li>Make sure that <span class="filename">/etc/dev.d/block/usbmount.dev</span>
 	is removed when the package is purged.</li>
       </ul></li>
@@ -218,17 +226,11 @@
     <p>If you find a <a href="http://bugs.debian.org/src:usbmount" title="Bug reports for USBmount.">bug in USBmount</a>,
     please <a href="http://www.debian.org/Bugs/Reporting" title="How to report a bug in Debian.">report it to the Debian <acronym title="Bug Tracking System">BTS</acronym></a>.</p>
 
-    <p>Comments (including bug reports) referring to an unreleased <a href="#svn" title="USBmount Subversion repository">Subversion</a>
-    snapshot of the package should be mailed directly to the maintainer
-    &lt;<a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#109;&#97;&#114;&#116;&#105;&#110;&#64;&#122;&#101;&#114;&#111;&#45;&#98;&#97;&#115;&#101;&#100;&#46;&#111;&#114;&#103;" title="Contact the maintainer of USBmount.">&#109;&#97;&#114;&#116;&#105;&#110;&#64;&#122;&#101;&#114;&#111;&#45;&#98;&#97;&#115;&#101;&#100;&#46;&#111;&#114;&#103;</a>&gt;.
-    Please note that there is no promise that Subversion snapshots work correctly, work at all, or can even be built.
-    <img src="smiley.png" alt=":-)" width="11" height="11" /></p>
-
     <p class="toplink">[&nbsp;<a href="#top" title="Return to the top of this page.">Top of Page</a>&nbsp;]</p>
   </div>
 
   <div class="footer">
-    <p>Copyright &copy; 2004, 2005 <a href="http://www.zero-based.org/" title="Homepage of Martin Dickopp">Martin Dickopp</a>.<br />
+    <p>Copyright &copy; 2004, 2005, 2007 <a href="http://www.zero-based.org/" title="Homepage of Martin Dickopp">Martin Dickopp</a>.<br />
     The copyright holder gives unlimited permission to copy and/or distribute this file, with or without modifications, as long as this notice is preserved.<br />
     Last modified @MODTIME at .</p>
 

Added: trunk/www/package/usbmount_0.0.14.1.dsc
===================================================================
--- trunk/www/package/usbmount_0.0.14.1.dsc	2006-06-16 09:15:54 UTC (rev 34)
+++ trunk/www/package/usbmount_0.0.14.1.dsc	2007-01-27 12:07:04 UTC (rev 35)
@@ -0,0 +1,10 @@
+Format: 1.0
+Source: usbmount
+Version: 0.0.14.1
+Binary: usbmount
+Maintainer: Debian QA Group <packages at qa.debian.org>
+Architecture: all
+Standards-Version: 3.7.2
+Build-Depends: cdbs, debhelper (>= 4.1.0)
+Files: 
+ 23b40d793ea93d6fbbd89ecd62410677 8764 usbmount_0.0.14.1.tar.gz

Added: trunk/www/package/usbmount_0.0.14.1.tar.gz
===================================================================
(Binary files differ)


Property changes on: trunk/www/package/usbmount_0.0.14.1.tar.gz
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/www/package/usbmount_0.0.14.1_all.deb
===================================================================
(Binary files differ)


Property changes on: trunk/www/package/usbmount_0.0.14.1_all.deb
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/www/package/usbmount_0.0.14.1_amd64.changes
===================================================================
--- trunk/www/package/usbmount_0.0.14.1_amd64.changes	2006-06-16 09:15:54 UTC (rev 34)
+++ trunk/www/package/usbmount_0.0.14.1_amd64.changes	2007-01-27 12:07:04 UTC (rev 35)
@@ -0,0 +1,28 @@
+Format: 1.7
+Date: Sat, 27 Jan 2007 12:42:44 +0100
+Source: usbmount
+Binary: usbmount
+Architecture: source all
+Version: 0.0.14.1
+Distribution: unstable
+Urgency: low
+Maintainer: Debian QA Group <packages at qa.debian.org>
+Changed-By: Martin Dickopp <martin at zero-based.org>
+Description: 
+ usbmount   - automatically mount and unmount USB mass storage devices
+Closes: 361351 365225
+Changes: 
+ usbmount (0.0.14.1) unstable; urgency=low
+ .
+   [Rafael Laboissiere]
+   * debian/control:
+     - Bumped Standards-Version to 3.7.2 (no changes needed)
+     - Moved debhelper and cdbs from Build-Depends-Indep to Build-Depends,
+       complying with section 7.6 of the Debian Policy.
+   [Martin Dickopp]
+   * Acknowledge NMU (closes: #361351, #365225).
+   * Orphaning package, setting maintainer to Debian QA Group.
+Files: 
+ 2c268b9a3ddc9f5b37e15f4e75cc7401 274 admin extra usbmount_0.0.14.1.dsc
+ 23b40d793ea93d6fbbd89ecd62410677 8764 admin extra usbmount_0.0.14.1.tar.gz
+ baa2547afd5d07dc0612d732cdd415db 10656 admin extra usbmount_0.0.14.1_all.deb

Deleted: trunk/www/package/usbmount_0.0.14.dsc
===================================================================
--- trunk/www/package/usbmount_0.0.14.dsc	2006-06-16 09:15:54 UTC (rev 34)
+++ trunk/www/package/usbmount_0.0.14.dsc	2007-01-27 12:07:04 UTC (rev 35)
@@ -1,11 +0,0 @@
-Format: 1.0
-Source: usbmount
-Version: 0.0.14
-Binary: usbmount
-Maintainer: Martin Dickopp <martin at zero-based.org>
-Architecture: all
-Standards-Version: 3.6.2
-Build-Depends-Indep: cdbs, debhelper (>= 4.1.0)
-Uploaders: Rafael Laboissiere <rafael at debian.org>
-Files: 
- 3130014b77837dea1d19b96c8adfe006 8413 usbmount_0.0.14.tar.gz

Deleted: trunk/www/package/usbmount_0.0.14.tar.gz
===================================================================
(Binary files differ)

Deleted: trunk/www/package/usbmount_0.0.14_all.deb
===================================================================
(Binary files differ)

Deleted: trunk/www/package/usbmount_0.0.14_amd64.changes
===================================================================
--- trunk/www/package/usbmount_0.0.14_amd64.changes	2006-06-16 09:15:54 UTC (rev 34)
+++ trunk/www/package/usbmount_0.0.14_amd64.changes	2007-01-27 12:07:04 UTC (rev 35)
@@ -1,22 +0,0 @@
-Format: 1.7
-Date: Sun, 10 Jul 2005 22:17:00 +0200
-Source: usbmount
-Binary: usbmount
-Architecture: source all
-Version: 0.0.14
-Distribution: unstable
-Urgency: low
-Maintainer: Martin Dickopp <martin at zero-based.org>
-Changed-By: Martin Dickopp <martin at zero-based.org>
-Description: 
- usbmount   - automatically mount and unmount USB mass storage devices
-Changes: 
- usbmount (0.0.14) unstable; urgency=low
- .
-   * Upload sponsored by Rafael Laboissiere.
-   * Make sure that /etc/dev.d/block/usbmount.dev is removed when the
-     package is purged.
-Files: 
- 92f2080723d23c7096a2d1e8869627a5 324 admin extra usbmount_0.0.14.dsc
- 3130014b77837dea1d19b96c8adfe006 8413 admin extra usbmount_0.0.14.tar.gz
- 8f6665e871279249391eb70367938b50 10272 admin extra usbmount_0.0.14_all.deb

Modified: trunk/www/style.css
===================================================================
--- trunk/www/style.css	2006-06-16 09:15:54 UTC (rev 34)
+++ trunk/www/style.css	2007-01-27 12:07:04 UTC (rev 35)
@@ -1,10 +1,10 @@
 /*
- *  Copyright (C) 2003, 2004, 2005 Martin Dickopp.
+ *  Copyright (C) 2003, 2004, 2005, 2007 Martin Dickopp.
  *  The copyright holder gives unlimited permission to copy and/or
  *  distribute this file, with or without modifications, as long as
  *  this notice is preserved.
  *
- *  Last modified 09-Mar-2005.
+ *  Last modified 27-Jan-2007.
  */
 
 html, body {
@@ -112,3 +112,16 @@
 
 	margin-top:	3em;
 }
+
+div#orphanwarning {
+	width:			50%;
+	border:			4px solid #e00;
+	padding:		2ex;
+	margin:			auto;
+	color:			#000;
+	background-color:	#ccc;
+}
+
+div#orphanwarning p {
+	margin:		0;
+}




More information about the Usbmount-commit mailing list