commit aaa_base for openSUSE:11.4
Hello community, here is the log from the commit of package aaa_base for openSUSE:11.4 checked in at Tue May 10 17:32:15 CEST 2011. -------- --- old-versions/11.4/UPDATES/all/aaa_base/aaa_base.changes 2011-04-21 12:49:33.000000000 +0200 +++ 11.4/aaa_base/aaa_base.changes 2011-05-10 17:06:16.000000000 +0200 @@ -1,0 +2,9 @@ +Tue May 10 16:57:39 CEST 2011 - ro@suse.de + +- rc.status: in rc_wait test for existance of binary first + (bnc#671292) +- incorrect tab completion for variables (bash) (bnc#681687) +- bash completion for 'cd ~/DIR' fails to provide trailing '/' + (bnc#691883) + +------------------------------------------------------------------- calling whatdependson for 11.4-i586 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ aaa_base.spec ++++++ --- /var/tmp/diff_new_pack.CtD1Ec/_old 2011-05-10 17:31:56.000000000 +0200 +++ /var/tmp/diff_new_pack.CtD1Ec/_new 2011-05-10 17:31:56.000000000 +0200 @@ -21,7 +21,7 @@ Name: aaa_base Version: 11.4 -Release: 54.<RELEASE64> +Release: 54.<RELEASE66> License: GPLv2+ Group: System/Fhs Provides: bin bootutls etc skeleng skelger ++++++ aaa_base.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base/etc/profile.d/complete.bash new/aaa_base/etc/profile.d/complete.bash --- old/aaa_base/etc/profile.d/complete.bash 2011-03-11 12:14:41.000000000 +0100 +++ new/aaa_base/etc/profile.d/complete.bash 2011-05-10 17:04:13.000000000 +0200 @@ -82,22 +82,53 @@ case "$(complete -p ${1##*/} 2> /dev/null)" in mkdir) ;; - *) s="-S/" + *) s="-S/" esac case "$c" in *[*?[]*) COMPREPLY=() # use bashdefault test $g -eq 0 && shopt -u extglob return 0 ;; - \$\(*\)) eval COMPREPLY=\(${c}\) ;; - \$\(*) COMPREPLY=($(compgen -c -P '$(' -S ')' -- ${c#??})) ;; - \`*\`) eval COMPREPLY=\(${c}\) ;; - \`*) COMPREPLY=($(compgen -c -P '\`' -S '\`' -- ${c#?})) ;; + \$\(*\)) eval COMPREPLY=\(${c}\) + compopt +o plusdirs ;; + \$\(*) COMPREPLY=($(compgen -c -P '$(' -S ')' -- ${c#??})) + if ((${#COMPREPLY[@]} > 0)) ; then + compopt +o plusdirs + let isdir++ + fi ;; + \`*\`) eval COMPREPLY=\(${c}\) + compopt +o plusdirs ;; + \`*) COMPREPLY=($(compgen -c -P '\`' -S '\`' -- ${c#?})) + if ((${#COMPREPLY[@]} > 0)) ; then + compopt +o plusdirs + let isdir++ + fi ;; \$\{*\}) eval COMPREPLY=\(${c}\) ;; - \$\{*) COMPREPLY=($(compgen -v -P '${' -S '}' -- ${c#??})) ;; - \$*) COMPREPLY=($(compgen -v -P '$' $s -- ${c#?})) ;; + \$\{*) COMPREPLY=($(compgen -v -P '${' -S '}' -- ${c#??})) + if ((${#COMPREPLY[@]} > 0)) ; then + compopt +o plusdirs + if ((${#COMPREPLY[@]} > 1)) ; then + test $g -eq 0 && shopt -u extglob + return 0 + fi + let isdir++ + eval COMPREPLY=\(${COMPREPLY[@]}\) + fi ;; + \$*) COMPREPLY=($(compgen -v -P '$' $s -- ${c#?})) + if ((${#COMPREPLY[@]} > 0)) ; then + compopt +o plusdirs + if ((${#COMPREPLY[@]} > 1)) ; then + test $g -eq 0 && shopt -u extglob + return 0 + fi + let isdir++ + eval COMPREPLY=\(${COMPREPLY[@]}\) + fi ;; \~*/*) COMPREPLY=($(compgen -d $s -- "${c}")) - ((${#COMPREPLY[@]} == 0)) || let isdir++ ;; + if ((${#COMPREPLY[@]} > 0)) ; then + compopt +o plusdirs + let isdir++ + fi ;; \~*) COMPREPLY=($(compgen -u $s -- "${c}")) ;; *\:*) if [[ $COMP_WORDBREAKS =~ : ]] ; then x=${c%"${c##*[^\\]:}"} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base/etc/rc.status new/aaa_base/etc/rc.status --- old/aaa_base/etc/rc.status 2011-02-18 17:41:17.000000000 +0100 +++ new/aaa_base/etc/rc.status 2011-05-10 16:57:29.000000000 +0200 @@ -369,6 +369,7 @@ parent_processes="${parent_processes:+$parent_processes:}${ppid}" done for comm ; do + test -s $comm || continue ppid="$(/sbin/pidofproc $comm 2> /dev/null)" || continue parent_processes="${parent_processes:+$parent_processes:}${ppid}" done ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de