Your message dated Sun, 22 May 2005 05:32:22 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#302891: fixed in sane-backends 1.0.15-10
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--------------------------------------
Received: (at submit) by bugs.debian.org; 3 Apr 2005 16:23:44 +0000
>From [EMAIL PROTECTED] Sun Apr 03 09:23:44 2005
Return-path: <[EMAIL PROTECTED]>
Received: from gluck.debian.org [192.25.206.10]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DI7t2-0000ER-00; Sun, 03 Apr 2005 09:23:44 -0700
Received: from smtp-3.hut.fi [130.233.228.93]
by gluck.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DI7t1-0002TC-00; Sun, 03 Apr 2005 10:23:43 -0600
Received: from localhost (putosiko.hut.fi [130.233.228.114])
by smtp-3.hut.fi (8.12.10/8.12.10) with ESMTP id j33GJoOf007452
for <[EMAIL PROTECTED]>; Sun, 3 Apr 2005 19:19:50 +0300
Received: from smtp-3.hut.fi ([130.233.228.93])
by localhost (putosiko.hut.fi [130.233.228.114]) (amavisd-new, port 10024)
with LMTP id 05877-16 for <[EMAIL PROTECTED]>;
Sun, 3 Apr 2005 19:19:49 +0300 (EEST)
Received: from st6-9.tky.hut.fi (st6-9.tky.hut.fi [130.233.28.9])
by smtp-3.hut.fi (8.12.10/8.12.10) with ESMTP id j33GIbRS007288
for <[EMAIL PROTECTED]>; Sun, 3 Apr 2005 19:18:37 +0300
Received: from amiranto by st6-9.tky.hut.fi with local (Exim 4.50)
id 1DI7o5-00014v-ER
for [EMAIL PROTECTED]; Sun, 03 Apr 2005 19:18:37 +0300
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Antti Miranto <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: libsane: Fails to set access rights to /proc/bus/usb/XXX/YYY
X-Mailer: reportbug 3.8
Date: Sun, 03 Apr 2005 19:18:37 +0300
Message-Id: <[EMAIL PROTECTED]>
X-TKK-Virus-Scanned: by amavisd-new-2.1.2-hutcc at putosiko.hut.fi
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
Package: libsane
Version: 1.0.15-8
Severity: important
Tags: patch
Often a pseudo file /proc/bus/usb/XXX/YYY for usb device is not created before
chmod & chown is run in script /etc/hotplug.d/usb/libsane.hotplug resulting
chmod & chown to fail and wrong access premissions to pseudo file.
I made and tested a lousy hack which stops until file is created and
premissions can be set.
$ diff -u /etc/hotplug.d/usb/libsane.hotplug~ \
/etc/hotplug.d/usb/libsane.hotplug
--- /etc/hotplug.d/usb/libsane.hotplug~ 2005-04-03 13:22:29.000000000 +0300
+++ /etc/hotplug.d/usb/libsane.hotplug 2005-04-03 18:44:43.138016424 +0300
@@ -18,6 +18,13 @@
set $DEVCONF
+N=0
+while test ! -e $DEVICE && test "$N" -lt 120
+ do
+ sleep 1
+ N=$[N+1]
+done
+
chown $3 $DEVICE && chmod $4 $DEVICE
if [ ! -z $5 -a -x $5 ]; then
$
-- System Information:
Debian Release: 3.1
APT prefers testing
APT policy: (900, 'testing'), (400, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-k7
Locale: LANG=en_US, [EMAIL PROTECTED] (charmap=ISO-8859-15)
Versions of packages libsane depends on:
ii adduser 3.63 Add and remove users and groups
ii debconf 1.4.30.11 Debian configuration management sy
ii libc6 2.3.2.ds1-20 GNU C Library: Shared libraries an
ii libgphoto2-2 2.1.5-4 gphoto2 digital camera library
ii libgphoto2-port0 2.1.5-4 gphoto2 digital camera port librar
ii libieee1284-3 0.2.9-3 cross-platform library for paralle
ii libjpeg62 6b-9 The Independent JPEG Group's JPEG
ii libusb-0.1-4 2:0.1.10a-6 userspace USB programming library
ii makedev 2.3.1-77 creates device files in /dev
ii sane-utils 1.0.15-8 API library for scanners -- utilit
-- no debconf information
---------------------------------------
Received: (at 302891-close) by bugs.debian.org; 22 May 2005 09:38:06 +0000
>From [EMAIL PROTECTED] Sun May 22 02:38:06 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DZmuL-0007wd-00; Sun, 22 May 2005 02:38:05 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1DZmoo-0006LS-00; Sun, 22 May 2005 05:32:22 -0400
From: Julien BLACHE <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.55 $
Subject: Bug#302891: fixed in sane-backends 1.0.15-10
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sun, 22 May 2005 05:32:22 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
Source: sane-backends
Source-Version: 1.0.15-10
We believe that the bug you reported is fixed in the latest version of
sane-backends, which is due to be installed in the Debian FTP archive:
libsane-dev_1.0.15-10_i386.deb
to pool/main/s/sane-backends/libsane-dev_1.0.15-10_i386.deb
libsane_1.0.15-10_i386.deb
to pool/main/s/sane-backends/libsane_1.0.15-10_i386.deb
sane-backends_1.0.15-10.diff.gz
to pool/main/s/sane-backends/sane-backends_1.0.15-10.diff.gz
sane-backends_1.0.15-10.dsc
to pool/main/s/sane-backends/sane-backends_1.0.15-10.dsc
sane-utils_1.0.15-10_i386.deb
to pool/main/s/sane-backends/sane-utils_1.0.15-10_i386.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Julien BLACHE <[EMAIL PROTECTED]> (supplier of updated sane-backends package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Sun, 22 May 2005 11:09:19 +0200
Source: sane-backends
Binary: libsane-dev sane-utils libsane
Architecture: source i386
Version: 1.0.15-10
Distribution: unstable
Urgency: low
Maintainer: Julien BLACHE <[EMAIL PROTECTED]>
Changed-By: Julien BLACHE <[EMAIL PROTECTED]>
Description:
libsane - API library for scanners
libsane-dev - API development library for scanners [development files]
sane-utils - API library for scanners -- utilities
Closes: 302891 305993 306458 307952 308867
Changes:
sane-backends (1.0.15-10) unstable; urgency=low
.
* debian/patches/01_hotplug_usbids.dpatch:
+ Updated; added Genius ColorPage Vivid3XE (closes: #305993).
+ Added Microtek ScanMaker 3700 (closes: #307952).
+ Added Epson Stylus RX620 (closes: #308867).
* debian/patches/11_hotplug_wait_for_device.dpatch:
+ Added; try to wait for the device to appear in the FS (closes: #302891).
* debian/patches/30_misc_fixes.dpatch:
+ Updated; fixed "device model referenced not duplicated" in the v4l
backend (closes: #306458).
* debian/control.in:
+ Build-Depend on a fixed libusb.
Files:
4b6f36d288de6abc730cd4584558886b 831 graphics optional
sane-backends_1.0.15-10.dsc
277266e61cbbe46678b24f3554a809f6 65990 graphics optional
sane-backends_1.0.15-10.diff.gz
d48c2d5fdf71e9077cd74246b775d135 113270 graphics optional
sane-utils_1.0.15-10_i386.deb
5f92d4e68808c2e040f2005ece0481da 2540902 libs optional
libsane_1.0.15-10_i386.deb
f70d3028bed9dfb016290a8efc4d1f49 2090358 libdevel optional
libsane-dev_1.0.15-10_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFCkE8CzWFP1/XWUWkRApNhAJ9T0NsfQqLIFcjVyW8E6DxY1bGpTACfUjoO
SX8hi89MqfewyjIab75BxZo=
=DdrA
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]