Your message dated Mon, 28 Jan 2008 13:02:09 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#455870: fixed in thunar-volman 0.2.0-2
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)

--- Begin Message ---
Package: thunar-volman
Version: 0.2.0-1scorpi0
Severity: normal
Tags: patch

Hi,

I set gtkpod as the music player command in thunar-volman. Now gtkpod starts
when I:

- plug in my iPod (good)

- plug in my external firewire hard disk (bad)

- plug in my USB card reader with the CF from the camera (bad)

- insert a DVD (bad)

This reason is that the HAL check for the "portable_audio_player" property
is done, but the result is ignored.

I attached a minimal, straightforwarded patch that starts the music player
command only devices that are reported as a "portable_audio_player"

This corresponds to http://bugzilla.xfce.org/show_bug.cgi?id=2856.

Regards,
Tino
-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.23.8 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages thunar-volman depends on:
ii  libatk1.0-0             1.20.0-1         The ATK accessibility toolkit
ii  libc6                   2.7-4            GNU C Library: Shared libraries
ii  libcairo2               1.4.10-1.2       The Cairo 2D vector graphics libra
ii  libdbus-1-3             1.1.2-1          simple interprocess messaging syst
ii  libdbus-glib-1-2        0.74-1           simple interprocess messaging syst
ii  libexo-0.3-0            0.3.4-1          Library with extensions for Xfce
ii  libfontconfig1          2.5.0-2          generic font configuration library
ii  libfreetype6            2.3.5-1+b1       FreeType 2 font engine, shared lib
ii  libglib2.0-0            2.14.4-2         The GLib library of C routines
ii  libgtk2.0-0             2.12.3-1         The GTK+ graphical user interface 
ii  libhal-storage1         0.5.10-4         Hardware Abstraction Layer - share
ii  libhal1                 0.5.10-4         Hardware Abstraction Layer - share
ii  libpango1.0-0           1.18.3-1         Layout and rendering of internatio
ii  libpng12-0              1.2.15~beta5-3   PNG library - runtime
ii  libthunar-vfs-1-2       0.9.0-1scorpi0   VFS abstraction used in thunar
ii  libx11-6                2:1.0.3-7        X11 client-side library
ii  libxfce4util4           4.4.2-1          Utility functions library for Xfce
ii  libxrender1             1:0.9.4-1        X Rendering Extension client libra
ii  thunar                  0.9.0-1scorpi0   File Manager for Xfce
ii  zlib1g                  1:1.2.3.3.dfsg-7 compression library - runtime

thunar-volman recommends no packages.

-- debconf-show failed
--- thunar-volman-0.1.2.orig/thunar-volman/tvm-block-device.c	2007-01-20 11:57:16.000000000 +0100
+++ thunar-volman-0.1.2/thunar-volman/tvm-block-device.c	2007-07-31 08:03:07.664805395 +0200
@@ -88,6 +88,7 @@
 {
   gboolean result = FALSE;
   gboolean autoipod;
+  gboolean is_audio_player = FALSE;
   gchar   *autoipod_command;
   gchar   *autophoto_command;
   gchar   *storage_udi;
@@ -106,6 +107,7 @@
           /* check if we have a portable audio player here */
           if (libhal_device_query_capability (context, storage_udi, "portable_audio_player", NULL))
             {
+	      is_audio_player = TRUE;
               /* check if we have an iPod here */
               product = libhal_device_get_property_string (context, storage_udi, "info.product", NULL);
               if (product != NULL && strcmp (product, "iPod") != 0)
@@ -151,7 +153,8 @@
           else
             {
               /* no photos, so we can manage only music */
-              response = TVM_RESPONSE_MUSIC;
+              if(is_audio_player)
+		      response = TVM_RESPONSE_MUSIC;
             }
 
           /* check what to do */

--- End Message ---
--- Begin Message ---
Source: thunar-volman
Source-Version: 0.2.0-2

We believe that the bug you reported is fixed in the latest version of
thunar-volman, which is due to be installed in the Debian FTP archive:

thunar-volman_0.2.0-2.diff.gz
  to pool/main/t/thunar-volman/thunar-volman_0.2.0-2.diff.gz
thunar-volman_0.2.0-2.dsc
  to pool/main/t/thunar-volman/thunar-volman_0.2.0-2.dsc
thunar-volman_0.2.0-2_amd64.deb
  to pool/main/t/thunar-volman/thunar-volman_0.2.0-2_amd64.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.
Simon Huggins <[EMAIL PROTECTED]> (supplier of updated thunar-volman 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: Mon, 28 Jan 2008 11:24:24 +0000
Source: thunar-volman
Binary: thunar-volman
Architecture: source amd64
Version: 0.2.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian Xfce Maintainers <[EMAIL PROTECTED]>
Changed-By: Simon Huggins <[EMAIL PROTECTED]>
Description: 
 thunar-volman - Thunar extension for volumes management
Closes: 455870
Changes: 
 thunar-volman (0.2.0-2) unstable; urgency=low
 .
   [ Yves-Alexis Perez ]
   * debian/patches:
     - 01_autoipod_command_only_for_music_players added: only run “music
      player” command when a music player is plugged.            closes: #455870
 .
   [ Simon Huggins ]
   * Add dependency on new exo-utils for exo-mount
Files: 
 7f33810688fcbab1af0f448761d76816 1054 x11 optional thunar-volman_0.2.0-2.dsc
 8bfe030a8009b47f80fe8922b577946a 2824 x11 optional 
thunar-volman_0.2.0-2.diff.gz
 95a2ef23675ae433866e0c68514374cf 77176 x11 optional 
thunar-volman_0.2.0-2_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFHndBLMQdl+99c4rQRArg0AKCc7sh91ttdNHGqzl/NE900xDCyKACfdDgh
7u/0Nk5nOfvFJrb4F4WXFG0=
=X7ir
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to