Your message dated Wed, 03 Aug 2005 14:47:04 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#319764: fixed in jack-audio-connection-kit 0.100.0-4
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; 24 Jul 2005 16:44:57 +0000
>From [EMAIL PROTECTED] Sun Jul 24 09:44:56 2005
Return-path: <[EMAIL PROTECTED]>
Received: from 81-178-119-168.dsl.pipex.com (localhost.localdomain) 
[81.178.119.168] 
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1Dwjax-0001Tg-00; Sun, 24 Jul 2005 09:44:55 -0700
Received: from piem by localhost.localdomain with local (Exim 4.52)
        id 1DwjZw-00086A-LK; Sun, 24 Jul 2005 17:43:52 +0100
Content-Type: multipart/mixed; boundary="===============1886100962=="
MIME-Version: 1.0
From: Paul Brossier <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: jackd: bash completion for jack_connect
Reply-To: Paul Brossier <[EMAIL PROTECTED]>
X-Mailer: reportbug 3.15
Date: Sun, 24 Jul 2005 17:43:52 +0100
Message-Id: <[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.

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

Package: jackd
Version: 0.100.0-2
Severity: wishlist
Tags: patch

The attached file starts bash completion support for jackd, jack_connect
and jack_disconnect when installed in /etc/bash_completion.d.

cheers, piem

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

#-*- mode: shell-script;-*-
# Inputs:
#   $1 -- name of the command whose arguments are being completed
#   $2 -- word being completed
#   $3 -- word preceding the word being completed
#   $COMP_LINE  -- current command line
#   $COMP_PONT  -- cursor position
#   $COMP_WORDS -- array containing individual words in the current
#                  command line
#   $COMP_CWORD -- index into ${COMP_WORDS} of the word containing the
#                  current cursor position
# Output:
#   COMPREPLY array variable contains possible completions

# Syntax:
#   jack_connect <src_port> <dst_port> 
#   jack_disconnect <src_port> <dst_port> 
#   jackd [options] -d backend [backend-parameters]
#   jackstart [options] -d backend [backend-parameters]

# Bugs/Todo:
#   jack_{dis,}connect should support for spaces in port names
#   restrict jack_disconnect completions to existing connections

jack_lsp_type() {
 jack_lsp -p | grep -B1 $1 | \
        grep -v 'properties.*,$' | grep -v ^-- | sed 's/\ /\\\ /g'
}

jackd_driver_help() {
 jackd -d $1 --help 2> /dev/null | grep - | \
        sed 's/-\(.*\), --\([^\ .]*\) *\(.*\)/-\1 --\2/'
}

have jack_connect &&
_jack_connections() {

        local cur prev

        COMPREPLY=()
        cur=${COMP_WORDS[COMP_CWORD]}
        prev=${COMP_WORDS[COMP_CWORD-1]}

        # check if this is the first argument
        if [[ "$1" == "$prev" ]]; then
                COMPREPLY=( $( compgen -W '`jack_lsp_type output`' -- $cur ) )
        else
                COMPREPLY=( $( compgen -W '`jack_lsp_type  input`' -- $cur ) )
        fi

        return 0

}

have jackd &&
_jackd()
{
        local cur prev special

        COMPREPLY=()
        cur=${COMP_WORDS[COMP_CWORD]}
        prev=${COMP_WORDS[COMP_CWORD-1]}

        # check if backend was specified
        for (( i=0; i < [EMAIL PROTECTED]; i++ )); do
                if [[ ${COMP_WORDS[i]} == @(alsa|dummy|oss|coreaudio|portaudio) 
]]; then
                        special=${COMP_WORDS[i]}
                fi
        done

        # list backends 
        if [[ "$prev" == -d || "$prev" == --driver ]]; then
                COMPREPLY=( $( compgen -W 'alsa dummy oss coreaudio portaudio' 
-- $cur ) )
        # list backend specific options
        elif [ -n "$special" ]; then
                COMPREPLY=( $( compgen -W '`jackd_driver_help $special` --help' 
-- $cur ) )
        # list common options
        else
                COMPREPLY=( $( compgen -W '--help -h \
                        --driver -d \
                        --realtime -R \
                        --realtime-priority -P \
                        --name -n \
                        --no-mlock -m \
                        --unlock -u \
                        --timeout -t \
                        --port-max -p \
                        --verbose -v \
                        --silent -s \
                        --version -V' -- $cur ) ) 
        fi

        return 0
}

[ "$have" ] && complete -F _jack_connections $filenames jack_connect 
[ "$have" ] && complete -F _jack_connections $filenames jack_disconnect 
[ "$have" ] && complete -F _jackd $filenames jackd
[ "$have" ] && complete -F _jackd $filenames jackstart

--===============1886100962==--

---------------------------------------
Received: (at 319764-close) by bugs.debian.org; 3 Aug 2005 21:53:27 +0000
>From [EMAIL PROTECTED] Wed Aug 03 14:53:27 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
        id 1E0R4q-0004Uc-00; Wed, 03 Aug 2005 14:47:04 -0700
From: Robert Jordens <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#319764: fixed in jack-audio-connection-kit 0.100.0-4
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Wed, 03 Aug 2005 14:47:04 -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

Source: jack-audio-connection-kit
Source-Version: 0.100.0-4

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

jack-audio-connection-kit_0.100.0-4.diff.gz
  to 
pool/main/j/jack-audio-connection-kit/jack-audio-connection-kit_0.100.0-4.diff.gz
jack-audio-connection-kit_0.100.0-4.dsc
  to 
pool/main/j/jack-audio-connection-kit/jack-audio-connection-kit_0.100.0-4.dsc
jackd_0.100.0-4_powerpc.deb
  to pool/main/j/jack-audio-connection-kit/jackd_0.100.0-4_powerpc.deb
libjack0.100.0-0_0.100.0-4_powerpc.deb
  to 
pool/main/j/jack-audio-connection-kit/libjack0.100.0-0_0.100.0-4_powerpc.deb
libjack0.100.0-dev_0.100.0-4_powerpc.deb
  to 
pool/main/j/jack-audio-connection-kit/libjack0.100.0-dev_0.100.0-4_powerpc.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.
Robert Jordens <[EMAIL PROTECTED]> (supplier of updated 
jack-audio-connection-kit 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: Wed,  3 Aug 2005 23:23:16 +0200
Source: jack-audio-connection-kit
Binary: libjack0.100.0-dev libjack0.100.0-0 jackd
Architecture: source powerpc
Version: 0.100.0-4
Distribution: unstable
Urgency: low
Maintainer: Robert Jordens <[EMAIL PROTECTED]>
Changed-By: Robert Jordens <[EMAIL PROTECTED]>
Description: 
 jackd      - JACK Audio Connection Kit (server and example clients)
 libjack0.100.0-0 - JACK Audio Connection Kit (libraries)
 libjack0.100.0-dev - JACK Audio Connection Kit (development files)
Closes: 319764
Changes: 
 jack-audio-connection-kit (0.100.0-4) unstable; urgency=low
 .
   * debian/bash_completion.d/jackd, debian/jackd.install: closes: #319764
     (jackd: bash completion for jack_connect)
Files: 
 3c91f48ec4b8ee286b18d8433e5ec336 1379 sound optional 
jack-audio-connection-kit_0.100.0-4.dsc
 010211cba089156d91ab90d35e6739b4 28494 sound optional 
jack-audio-connection-kit_0.100.0-4.diff.gz
 583f1c416ce4bc3f55cc0ddc919f79ac 119098 sound optional 
jackd_0.100.0-4_powerpc.deb
 a558b31f68c15e625e46caf3ef861a93 86696 libs optional 
libjack0.100.0-0_0.100.0-4_powerpc.deb
 cbbab6c9cc0f7c54a710d498f60f60d4 100102 libdevel optional 
libjack0.100.0-dev_0.100.0-4_powerpc.deb

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

iD8DBQFC8TfbHSjkv+Av7xERAj3vAJ4yT2fnLSsWDQIz2aHasDVHlCgczwCeJvZE
fwpoL09yNnhP7Vku8ACSWdw=
=WXwg
-----END PGP SIGNATURE-----


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

Reply via email to