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

Martin Dickopp mdickopp-guest@costa.debian.org
Fri, 01 Jul 2005 17:29:05 +0000


Author: mdickopp-guest
Date: 2005-07-01 17:29:04 +0000 (Fri, 01 Jul 2005)
New Revision: 26

Added:
   trunk/www/package/usbmount_0.0.12.dsc
   trunk/www/package/usbmount_0.0.12.tar.gz
   trunk/www/package/usbmount_0.0.12_all.deb
   trunk/www/package/usbmount_0.0.12_amd64.changes
Removed:
   trunk/www/package/usbmount_0.0.11.dsc
   trunk/www/package/usbmount_0.0.11.tar.gz
   trunk/www/package/usbmount_0.0.11_all.deb
   trunk/www/package/usbmount_0.0.11_amd64.changes
Modified:
   trunk/usbmount/debian/changelog
   trunk/usbmount/usbmount
   trunk/www/index.html.in
Log:
* Search additional files in the /sys filesystem for vendor and model
  name.
* New package (version 0.0.12).


Modified: trunk/usbmount/debian/changelog
===================================================================
--- trunk/usbmount/debian/changelog	2005-06-21 23:08:21 UTC (rev 25)
+++ trunk/usbmount/debian/changelog	2005-07-01 17:29:04 UTC (rev 26)
@@ -1,9 +1,12 @@
 usbmount (0.0.12) unstable; urgency=low
 
+  * Upload sponsored by Rafael Laboissiere.
   * debian/control: update 'Standards-Version' to 3.6.2. No changes to the
     package necessary.
+  * Search additional files in the /sys filesystem for vendor and model
+    name (closes: #315192).
 
- --
+ -- Martin Dickopp <martin@zero-based.org>  Fri,  1 Jul 2005 19:11:44 +0200
 
 usbmount (0.0.11) unstable; urgency=low
 

Modified: trunk/usbmount/usbmount
===================================================================
--- trunk/usbmount/usbmount	2005-06-21 23:08:21 UTC (rev 25)
+++ trunk/usbmount/usbmount	2005-07-01 17:29:04 UTC (rev 26)
@@ -127,6 +127,10 @@
 			vendor="`cat \"/sys$DEVPATH/device/vendor\"`"
 		    elif test -r "/sys$DEVPATH/../device/vendor"; then
 			vendor="`cat \"/sys$DEVPATH/../device/vendor\"`"
+		    elif test -r "/sys$DEVPATH/device/../manufacturer"; then
+			vendor="`cat \"/sys$DEVPATH/device/../manufacturer\"`"
+		    elif test -r "/sys$DEVPATH/../device/../manufacturer"; then
+			vendor="`cat \"/sys$DEVPATH/../device/../manufacturer\"`"
 		    fi
 		    vendor="`echo \"$vendor\" | sed 's/^ *//; s/ *$//'`"
 		    model=
@@ -134,6 +138,10 @@
 			model="`cat \"/sys$DEVPATH/device/model\"`"
 		    elif test -r "/sys$DEVPATH/../device/model"; then
 			model="`cat \"/sys$DEVPATH/../device/model\"`"
+		    elif test -r "/sys$DEVPATH/device/../product"; then
+			model="`cat \"/sys$DEVPATH/device/../product\"`"
+		    elif test -r "/sys$DEVPATH/../device/../product"; then
+			model="`cat \"/sys$DEVPATH/../device/../product\"`"
 		    fi
 		    model="`echo \"$model\" | sed 's/^ *//; s/ *$//'`"
 

Modified: trunk/www/index.html.in
===================================================================
--- trunk/www/index.html.in	2005-06-21 23:08:21 UTC (rev 25)
+++ trunk/www/index.html.in	2005-07-01 17:29:04 UTC (rev 26)
@@ -67,18 +67,18 @@
     <ul>
       <li>Source:
       <ul>
-	<li><a href="package/usbmount_0.0.11.dsc">usbmount_0.0.11.dsc</a></li>
-	<li><a href="package/usbmount_0.0.11.tar.gz">usbmount_0.0.11.tar.gz</a></li>
+	<li><a href="package/usbmount_0.0.12.dsc">usbmount_0.0.12.dsc</a></li>
+	<li><a href="package/usbmount_0.0.12.tar.gz">usbmount_0.0.12.tar.gz</a></li>
       </ul></li>
 
       <li>Binary:
       <ul>
-	<li><a href="package/usbmount_0.0.11_all.deb">usbmount_0.0.11_all.deb</a></li>
+	<li><a href="package/usbmount_0.0.12_all.deb">usbmount_0.0.12_all.deb</a></li>
       </ul></li>
 
       <li>Changes:
       <ul>
-	<li><a href="package/usbmount_0.0.11_amd64.changes">usbmount_0.0.11_amd64.changes</a></li>
+	<li><a href="package/usbmount_0.0.12_amd64.changes">usbmount_0.0.12_amd64.changes</a></li>
       </ul></li>
     </ul>
 
@@ -94,8 +94,17 @@
     <h2><a name="history" class="invlink">History</a></h2>
 
     <ul>
-      <li>Version 0.0.11 (02-May-2005, latest release):
+      <li>Version 0.0.12 (01-Jul-2005, latest release):
       <ul>
+	<li>The <span class="command">Standards-Version</span> field in
+	<span class="filename">debian/control</span> has been updated to
+	<span class="command">3.6.2</span>. No changes to the package were necessary.</li>
+	<li>Search additional files in the <span class="filename">/sys</span>
+	filesystem for vendor and model name.</li>
+      </ul></li>
+
+      <li>Version 0.0.11 (02-May-2005):
+      <ul>
 	<li>If a device is not readable, wait up to 20&nbsp;seconds for it to become so.
 	Some devices apparently need a few seconds initialization time before they can be
 	accessed. Thanks to Peter Stelmachovic for his help with debugging this issue.</li>

Deleted: trunk/www/package/usbmount_0.0.11.dsc
===================================================================
--- trunk/www/package/usbmount_0.0.11.dsc	2005-06-21 23:08:21 UTC (rev 25)
+++ trunk/www/package/usbmount_0.0.11.dsc	2005-07-01 17:29:04 UTC (rev 26)
@@ -1,11 +0,0 @@
-Format: 1.0
-Source: usbmount
-Version: 0.0.11
-Binary: usbmount
-Maintainer: Martin Dickopp <martin@zero-based.org>
-Architecture: all
-Standards-Version: 3.6.1
-Build-Depends-Indep: cdbs, debhelper (>= 4.1.0)
-Uploaders: Rafael Laboissiere <rafael@debian.org>
-Files: 
- 62c9f1417c6a4907f6cf9099c9c4dbd5 7402 usbmount_0.0.11.tar.gz

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

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

Deleted: trunk/www/package/usbmount_0.0.11_amd64.changes
===================================================================
--- trunk/www/package/usbmount_0.0.11_amd64.changes	2005-06-21 23:08:21 UTC (rev 25)
+++ trunk/www/package/usbmount_0.0.11_amd64.changes	2005-07-01 17:29:04 UTC (rev 26)
@@ -1,25 +0,0 @@
-Format: 1.7
-Date: Mon,  2 May 2005 14:19:15 +0200
-Source: usbmount
-Binary: usbmount
-Architecture: source all
-Version: 0.0.11
-Distribution: unstable
-Urgency: low
-Maintainer: Martin Dickopp <martin@zero-based.org>
-Changed-By: Martin Dickopp <martin@zero-based.org>
-Description: 
- usbmount   - automatically mount and unmount USB mass storage devices
-Closes: 305672
-Changes: 
- usbmount (0.0.11) unstable; urgency=low
- .
-   * Upload sponsored by Rafael Laboissiere.
-   * If a device is not readable, wait up to 20 seconds for it to become
-     so (closes: #305672). Some devices apparently need a few seconds
-     initialization time before they can be accessed. Thanks to Peter
-     Stelmachovic for his help with debugging this issue.
-Files: 
- a9fb186b0368e07885b06062a0420170 324 admin extra usbmount_0.0.11.dsc
- 62c9f1417c6a4907f6cf9099c9c4dbd5 7402 admin extra usbmount_0.0.11.tar.gz
- 87b5304799777b74cddccd818515ba49 9162 admin extra usbmount_0.0.11_all.deb

Added: trunk/www/package/usbmount_0.0.12.dsc
===================================================================
--- trunk/www/package/usbmount_0.0.12.dsc	2005-06-21 23:08:21 UTC (rev 25)
+++ trunk/www/package/usbmount_0.0.12.dsc	2005-07-01 17:29:04 UTC (rev 26)
@@ -0,0 +1,11 @@
+Format: 1.0
+Source: usbmount
+Version: 0.0.12
+Binary: usbmount
+Maintainer: Martin Dickopp <martin@zero-based.org>
+Architecture: all
+Standards-Version: 3.6.2
+Build-Depends-Indep: cdbs, debhelper (>= 4.1.0)
+Uploaders: Rafael Laboissiere <rafael@debian.org>
+Files: 
+ 7ee75a169868708d89d54851c8751691 7529 usbmount_0.0.12.tar.gz

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


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

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


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

Added: trunk/www/package/usbmount_0.0.12_amd64.changes
===================================================================
--- trunk/www/package/usbmount_0.0.12_amd64.changes	2005-06-21 23:08:21 UTC (rev 25)
+++ trunk/www/package/usbmount_0.0.12_amd64.changes	2005-07-01 17:29:04 UTC (rev 26)
@@ -0,0 +1,25 @@
+Format: 1.7
+Date: Fri,  1 Jul 2005 19:11:44 +0200
+Source: usbmount
+Binary: usbmount
+Architecture: source all
+Version: 0.0.12
+Distribution: unstable
+Urgency: low
+Maintainer: Martin Dickopp <martin@zero-based.org>
+Changed-By: Martin Dickopp <martin@zero-based.org>
+Description: 
+ usbmount   - automatically mount and unmount USB mass storage devices
+Closes: 315192
+Changes: 
+ usbmount (0.0.12) unstable; urgency=low
+ .
+   * Upload sponsored by Rafael Laboissiere.
+   * debian/control: update 'Standards-Version' to 3.6.2. No changes to the
+     package necessary.
+   * Search additional files in the /sys filesystem for vendor and model
+     name (closes: #315192).
+Files: 
+ be83dcb92cec5b4e29d9b079c0377bf2 324 admin extra usbmount_0.0.12.dsc
+ 7ee75a169868708d89d54851c8751691 7529 admin extra usbmount_0.0.12.tar.gz
+ 7bd1512c03bd71378624b4a29d4c59e8 9382 admin extra usbmount_0.0.12_all.deb