Your message dated Sun, 18 Sep 2005 08:02:05 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#321934: fixed in deborphan 1.7.17
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; 8 Aug 2005 10:32:26 +0000
>From [EMAIL PROTECTED] Mon Aug 08 03:32:26 2005
Return-path: <[EMAIL PROTECTED]>
Received: from smtp06.web.de [217.72.192.224] 
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1E24vi-0005t5-00; Mon, 08 Aug 2005 03:32:26 -0700
Received: from [84.59.35.60] (helo=localhost)
        by smtp06.web.de with asmtp (TLSv1:DES-CBC3-SHA:168)
        (WEB.DE 4.105 #314)
        id 1E24vC-0008Qq-00; Mon, 08 Aug 2005 12:31:54 +0200
Received: from jens by localhost with local (Exim 4.52)
        id 1E24wB-0001VR-Ry; Mon, 08 Aug 2005 12:32:56 +0200
Content-Type: multipart/mixed; boundary="===============1983958744=="
MIME-Version: 1.0
From: Jens Nachtigall <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: please add bash completion
X-Mailer: reportbug 3.15
Date: Mon, 08 Aug 2005 12:32:54 +0200
Message-Id: <[EMAIL PROTECTED]>
Sender: [EMAIL PROTECTED]
X-Sender: [EMAIL PROTECTED]
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-Level: 
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

This is a multi-part MIME message sent by reportbug.

--===============1983958744==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Package: deborphan
Version: 1.7.16
Severity: wishlist
Tags: patch

the attached file needs to end up in /etc/bash_completion.d/

Please include it in one of the next releases.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.8-2-686
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages deborphan depends on:
ii  bash                      3.0-15         The GNU Bourne Again SHell
ii  dialog                    1.0-20050306-1 Displays user-friendly dialog boxe
ii  gettext-base              0.14.5-2       GNU Internationalization utilities
ii  libc6                     2.3.2.ds1-22   GNU C Library: Shared libraries an

Versions of packages deborphan recommends:
ii  apt                           0.6.38     Advanced front-end for dpkg

-- no debconf information

--===============1983958744==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="deborphan"

have deborphan &&
_deborphan()
{

  local last_item_in_list 
  local cur=$2 prev=$3
  local options='--help -h --version -v --status-file -f 
    --show-deps -d --show-priority -P --show-size -z 
    --show-section -s --no-show-section --nice-mode -n 
    --all-packages -a --libdevel --exclude -e --priority -p 
    --force-hold -H --find-config --add-keep -A --del-keep -R 
    --list-keep -L --zero-keep -Z --keep-file -k 
    --guess-perl --guess-python --guess-pike 
    --guess-ruby --guess-interpreters
    --guess-section --guess-dev --guess-debug
    --guess-common --guess-data --guess-doc --guess-dummy
    --guess-all --guess-only
    '
 
  COMPREPLY=()
 
  case "$prev" in 
    # previous option asks for a file
    -@(-status-file|f|-keep-file|k))
      _filedir
      return 0
      ;;
    # previous option asks for a package or "-"
    # if there's more than 1 package listed, use the default below
    # for package completion
    # could maybe use /var/lib/deborphan/keep for -R|--del-keep
    # but tricky if -f|--status-file is given
    -@(-add-keep|A|-del-keep|R))
      COMPREPLY=( $( compgen -W "$( _comp_dpkg_installed_packages $cur ) -" -- 
$cur ) )
      return 0
      ;;
    # previous option asks for a priority
    -@(-priority|p))
      COMPREPLY=( $( compgen -W '1 2 3 4 5 required important standard optional 
extra' -- $cur) )
      return 0
      ;;
    # previous option asks for a commaseparated list of packages
    -@(-exclude|e))
      last_item_in_list="${cur##*,}"
      list_before_item="${cur%$last_item_in_list}"
      #add "," to the list and take care of already existing listed packages
      COMPREPLY=(
                  $( 
                   compgen -S "," -P "$list_before_item" -W "$( 
_comp_dpkg_installed_packages $last_item_in_list )"
                  )
                )

      return 0
      ;;
  esac

        if [[ "$cur" == -* ]]; then
                # return one of the possible options
    COMPREPLY=( $( compgen -W "$options" -- $cur ) )
        else
          # return matching installed packages
    # (default and for -A or -R package list    
    COMPREPLY=( $( _comp_dpkg_installed_packages $cur ) )
        fi

  return 0
}
[ -n "${have:-}" ] && complete -F _deborphan $filenames deborphan


--===============1983958744==--

---------------------------------------
Received: (at 321934-close) by bugs.debian.org; 18 Sep 2005 15:08:08 +0000
>From [EMAIL PROTECTED] Sun Sep 18 08:08:08 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
        id 1EH0g9-0000Dh-00; Sun, 18 Sep 2005 08:02:05 -0700
From: Peter Palfrader <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#321934: fixed in deborphan 1.7.17
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sun, 18 Sep 2005 08:02:05 -0700
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-Level: 
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-CrossAssassin-Score: 2

Source: deborphan
Source-Version: 1.7.17

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

deborphan_1.7.17.dsc
  to pool/main/d/deborphan/deborphan_1.7.17.dsc
deborphan_1.7.17.tar.gz
  to pool/main/d/deborphan/deborphan_1.7.17.tar.gz
deborphan_1.7.17_i386.deb
  to pool/main/d/deborphan/deborphan_1.7.17_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.
Peter Palfrader <[EMAIL PROTECTED]> (supplier of updated deborphan 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, 18 Sep 2005 16:28:14 +0200
Source: deborphan
Binary: deborphan
Architecture: source i386
Version: 1.7.17
Distribution: unstable
Urgency: low
Maintainer: Peter Palfrader <[EMAIL PROTECTED]>
Changed-By: Peter Palfrader <[EMAIL PROTECTED]>
Description: 
 deborphan  - Find orphaned libraries
Closes: 320243 321934 328886
Changes: 
 deborphan (1.7.17) unstable; urgency=low
 .
   * Make sure that even with section names that are very long (i.e.
     broken) we always separate the section and the package name with
     at least one space (closes: #328886).
   * Increase standards version from 3.6.1 to 3.6.2 - no changes needed.
   * Minor whitespace change in menu file.
   * Add a lintian override for menu-command-not-in-package.  We
     call orphaner with an argument (-a) which confuses lintian.
   * Add the file provided by Jens Nachtigall <[EMAIL PROTECTED]> to
     /etc/bash_completion.d/ (closes: #321934).
   * Slightly change spacing in deborphan.1 manpage - this was also
     part of Julien Louis' patch.
   * Add french translation of manpages by Julien Louis <[EMAIL PROTECTED]>,
     using po4a (closes: #320243).
   * Build depend on po4a.
Files: 
 41000dce4eee5e2b2348503e33fd12a8 503 admin optional deborphan_1.7.17.dsc
 c09f2be30cc34812b13a88006b41e885 227847 admin optional deborphan_1.7.17.tar.gz
 82a5d1bd7546e5ed89cfa22a29e0d0e0 62056 admin optional deborphan_1.7.17_i386.deb

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

iD8DBQFDLX+Dz/ccs6+kS90RAmknAKCPS4ZO+M0LLRK8dsbX1yTtrU2N7gCgmgVu
8/RJwnVpB/P/PHzU/p/X25w=
=eSZ/
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to