Your message dated Sat, 30 Sep 2006 15:48:43 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#390049: fixed in zsh 4.3.2-18
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: zsh
Version: 4.3.2-17
Severity: wishlist
Tags: patch

Hi!

The enclosed patch makes the fusermount completion use
_canonical_paths and _fuse_values, introduced by Bug# 389801
(Generic completion for FUSE programs). Hence, this patch should be
applied after resolving the aforesaid bug. The patch also improves
the descriptions provided, fixes a bug with one of the options and
also corrects the indentation to conform with the zsh coding style.

Regards,
Ramkumar.

--- _fusermount.orig	2006-09-29 04:09:30.667141912 +0530
+++ _fusermount	2006-09-28 00:16:45.192984904 +0530
@@ -4,21 +4,23 @@
 typeset -A opt_args
 
 _arguments \
-	'-h[help]' \
-	'-v[version]' \
-	'-o[options]:mount options:_values -s , "mount options" default_permissions allow_other allow_root kernel_cache large_read direct_io max_read=:size: hard_remove debug fsname=:name: use_ino readdir_ino nonempty umask=:umask: uid=:uid: gid=:gid:' \
-	'-u[unmount]' \
-	'-q[quiet]' \
-	'-z[lazy unmount]' \
-	':mountpoint:->mountpoint' && return 0
+  '-h[display help information]' \
+  '-V[display version information]' \
+  '-o[specify mount options]:mount options:_fuse_values "mount options"' \
+  '-u[unmount a fuse mount]' \
+  '-z[unmount lazily (work even when if the resource is still busy)]' \
+  '-q[suppress nonessential output]' \
+  ':mount point:->mountpoint' && return 0
+
+typeset -a mtpts
 
 case "$state" in
-	(mountpoint)
-	if [[ $+opt_args[-u] -eq 0 ]]; then
-	  _files -/
-        else
-	  _wanted mounted expl 'mounted filesystem' \
-	  compadd ${${${"${(f)$(< /etc/mtab)}"}#* }%% *}
-        fi
-	;;
+  (mountpoint)
+  if [[ $+opt_args[-u] -eq 0 ]]; then
+    _files -/
+  else
+    mtpts=(${${${"${(f)$(< /etc/mtab)}"}#* }%% *})
+    _canonical_paths mounted 'mounted filesystem' $mtpts
+  fi
+  ;;
 esac
-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (101, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.16-beyond2
Locale: LANG=en_IN, LC_CTYPE=en_IN (charmap=UTF-8)

Versions of packages zsh depends on:
ii  debconf [debconf-2.0]        1.5.4       Debian configuration management sy
ii  libc6                        2.3.6.ds1-4 GNU C Library: Shared libraries
ii  libncurses5                  5.5-3       Shared libraries for terminal hand

Versions of packages zsh recommends:
ii  libcap1                       1:1.10-14  support for getting/setting POSIX.
ii  libpcre3                      6.4-2      Perl 5 Compatible Regular Expressi

-- no debconf information

-- 
WARN_(accel)("msg null; should hang here to be win compatible\n");
                                   -- WINE source code

--- End Message ---
--- Begin Message ---
Source: zsh
Source-Version: 4.3.2-18

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

zsh-dbg_4.3.2-18_sparc.deb
  to pool/main/z/zsh/zsh-dbg_4.3.2-18_sparc.deb
zsh-dev_4.3.2-18_sparc.deb
  to pool/main/z/zsh/zsh-dev_4.3.2-18_sparc.deb
zsh-doc_4.3.2-18_all.deb
  to pool/main/z/zsh/zsh-doc_4.3.2-18_all.deb
zsh-static_4.3.2-18_sparc.deb
  to pool/main/z/zsh/zsh-static_4.3.2-18_sparc.deb
zsh_4.3.2-18.diff.gz
  to pool/main/z/zsh/zsh_4.3.2-18.diff.gz
zsh_4.3.2-18.dsc
  to pool/main/z/zsh/zsh_4.3.2-18.dsc
zsh_4.3.2-18_sparc.deb
  to pool/main/z/zsh/zsh_4.3.2-18_sparc.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.
Clint Adams <[EMAIL PROTECTED]> (supplier of updated zsh 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: Sat, 30 Sep 2006 17:04:54 -0400
Source: zsh
Binary: zsh zsh-dev zsh-static zsh-dbg zsh-doc
Architecture: source sparc all
Version: 4.3.2-18
Distribution: unstable
Urgency: low
Maintainer: Clint Adams <[EMAIL PROTECTED]>
Changed-By: Clint Adams <[EMAIL PROTECTED]>
Description: 
 zsh        - A shell with lots of features
 zsh-dbg    - A shell with lots of features (debugging symbols)
 zsh-dev    - A shell with lots of features (development files)
 zsh-doc    - zsh documentation - info/HTML format
 zsh-static - A shell with lots of features (static link)
Closes: 389795 389796 389799 389801 390048 390049
Changes: 
 zsh (4.3.2-18) unstable; urgency=low
 .
   * Completion for acpitool.  closes: #389795.
   * Add https protocol to url completion.  closes: #389796.
   * Fix typo in subversion completion.  closes: #389799.
   * Add R. Ramkumar's generic fuse completion support.
     closes: #389801.
   * Cleanup for bittorrent completion.  closes: #390048.
   * Change fusermount completion to use generic fuse
     function.  closes: #390049.
Files: 
 c320b6d6d3b8287926e2f3404814a3fd 739 shells optional zsh_4.3.2-18.dsc
 0d9ad60411ba5ea9be06b560b2fd9e18 424385 shells optional zsh_4.3.2-18.diff.gz
 8d4b7163158fda5a2ae3f6fb5aeb86d6 701120 shells optional 
zsh-doc_4.3.2-18_all.deb
 2f3fad383681b7003db62df9b340ed5d 2236476 shells optional zsh_4.3.2-18_sparc.deb
 0b2976dc9c1627c5a31f3470028d5c50 759614 devel extra zsh-dbg_4.3.2-18_sparc.deb
 13be4bf0e53d564d6a5c4a91943108f3 799850 shells optional 
zsh-static_4.3.2-18_sparc.deb
 50b9e2efeefdd96bf1c26bae06f752a5 63518 libdevel optional 
zsh-dev_4.3.2-18_sparc.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Debian!

iD8DBQFFHvKJ5m0u66uWM3ARAv90AKCF703sKQuaW5KpNAYT0ce5d9u/awCcDUM1
zBqMEKl5P6qGtsP6jW8QRMs=
=8mSO
-----END PGP SIGNATURE-----


--- End Message ---

Reply via email to