[Bash-completion-devel] Ubuntu bash-completion 20060301-4ubuntu2

Ubuntu Merge-o-Matic mom at ubuntu.com
Tue Nov 25 02:33:50 UTC 2008


This e-mail has been sent due to an upload to Ubuntu that contains Ubuntu
changes.  It contains the difference between the new version and the
previous version of the same source package in Ubuntu.
-------------- next part --------------
Format: 1.7
Date: Thu, 14 Aug 2008 15:10:20 +0100
Source: bash-completion
Binary: bash-completion
Architecture: source
Version: 20060301-4ubuntu2
Distribution: jaunty
Urgency: low
Maintainer: Ubuntu MOTU Developers <ubuntu-motu at lists.ubuntu.com>
Changed-By: Terence Simpson <tsimpson at ubuntu.com>
Description: 
 bash-completion - programmable completion for the bash shell
Changes: 
 bash-completion (20060301-4ubuntu2) jaunty; urgency=low
 .
   * Added qdbus completion (LP: 257903)
Files: 
 07e3db45f320f8de150dd73d19b66225 1125 shells standard bash-completion_20060301-4ubuntu2.dsc
 4419c58830f463c17e34ec335e25369c 20564 shells standard bash-completion_20060301-4ubuntu2.diff.gz
Original-Maintainer: Luk Claes <luk at debian.org>
-------------- next part --------------
diff -pruN 20060301-4ubuntu1/bash_completion 20060301-4ubuntu2/bash_completion
--- 20060301-4ubuntu1/bash_completion	2008-11-25 02:20:02.000000000 +0000
+++ 20060301-4ubuntu2/bash_completion	2008-11-25 02:20:02.000000000 +0000
@@ -6010,6 +6010,24 @@ _dcop()
 } &&
 complete -F _dcop dcop
 
+# Qt qdbus completion
+#
+have qdbus &&
+_qdbus()
+{
+        local cur compstr
+
+        COMPREPLY=()
+        cur=`_get_cword`
+        if [ -z $cur ]; then
+            compstr=${COMP_WORDS[*]}
+        else
+            compstr=$( command echo ${COMP_WORDS[*]} | sed "s/ ${cur/\//\\/}$//" )
+        fi
+        COMPREPLY=( $( compgen -W '$( command $compstr | sed s/\(.*\)// )'  -- $cur ) )
+} &&
+complete -F _qdbus qdbus
+
 # wvdial(1) completion
 #
 have wvdial &&
diff -pruN 20060301-4ubuntu1/debian/changelog 20060301-4ubuntu2/debian/changelog
--- 20060301-4ubuntu1/debian/changelog	2008-11-25 02:20:02.000000000 +0000
+++ 20060301-4ubuntu2/debian/changelog	2008-11-25 02:20:02.000000000 +0000
@@ -1,3 +1,9 @@
+bash-completion (20060301-4ubuntu2) jaunty; urgency=low
+
+  * Added qdbus completion (LP: 257903)
+
+ -- Terence Simpson <tsimpson at ubuntu.com>  Thu, 14 Aug 2008 15:10:20 +0100
+
 bash-completion (20060301-4ubuntu1) intrepid; urgency=low
 
   * Merge from debian unstable, remaining changes:


More information about the Bash-completion-devel mailing list