Hello community,

here is the log from the commit of package aaa_base for openSUSE:Factory 
checked in at 2013-04-24 16:03:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/aaa_base (Old)
 and      /work/SRC/openSUSE:Factory/.aaa_base.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "aaa_base", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/aaa_base/aaa_base.changes        2013-04-02 
11:36:31.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.aaa_base.new/aaa_base.changes   2013-04-24 
16:03:23.000000000 +0200
@@ -1,0 +2,10 @@
+Tue Apr 23 16:26:29 UTC 2013 - [email protected]
+
+- Require xz at build time (Who has removed xz from default?) 
+
+-------------------------------------------------------------------
+Tue Apr 23 15:54:14 UTC 2013 - [email protected]
+
+- Personal bash completion and bash ls alias (bnc811030, bnc#799241)
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ aaa_base.spec ++++++
--- /var/tmp/diff_new_pack.1sPhTj/_old  2013-04-24 16:03:26.000000000 +0200
+++ /var/tmp/diff_new_pack.1sPhTj/_new  2013-04-24 16:03:26.000000000 +0200
@@ -40,6 +40,7 @@
 Requires:       filesystem
 # for symlink check to /bin/hostname
 BuildRequires:  net-tools
+BuildRequires:  xz
 Recommends:     cron logrotate netcfg udev net-tools aaa_base-extras
 PreReq:         /usr/bin/sed /usr/bin/grep /bin/mv /bin/cat /bin/ls /bin/date 
/usr/bin/cmp /bin/fillup
 Summary:        openSUSE Base Package

++++++ aaa_base-13.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base-13.1/files/etc/bash.bashrc 
new/aaa_base-13.1/files/etc/bash.bashrc
--- old/aaa_base-13.1/files/etc/bash.bashrc     2013-03-28 16:28:47.000000000 
+0100
+++ new/aaa_base-13.1/files/etc/bash.bashrc     2013-04-23 17:49:36.000000000 
+0200
@@ -263,9 +263,7 @@
        # Complete builtin of the bash 2.0 and higher
        case "$BASH_VERSION" in
        [2-9].*)
-           if test -e $HOME/.bash_completion ; then
-               . $HOME/.bash_completion
-           elif test -e /etc/bash_completion ; then
+           if test -e /etc/bash_completion ; then
                . /etc/bash_completion
            elif test -s /etc/profile.d/bash_completion.sh ; then
                . /etc/profile.d/bash_completion.sh
@@ -275,6 +273,9 @@
            for s in /etc/bash_completion.d/*.sh ; do
                test -r $s && . $s
            done
+           if test -e $HOME/.bash_completion ; then
+               . $HOME/.bash_completion
+           fi
            if test -f /etc/bash_command_not_found ; then
                . /etc/bash_command_not_found
            fi
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base-13.1/files/etc/profile.d/ls.bash 
new/aaa_base-13.1/files/etc/profile.d/ls.bash
--- old/aaa_base-13.1/files/etc/profile.d/ls.bash       2013-03-28 
16:28:47.000000000 +0100
+++ new/aaa_base-13.1/files/etc/profile.d/ls.bash       2013-04-23 
17:49:36.000000000 +0200
@@ -44,9 +44,31 @@
        unalias ls 2>/dev/null
     fi
     case "$is" in
-       bash) alias ls='ls $LS_OPTIONS'      ;;
-       zsh)  alias ls='\ls $=LS_OPTIONS'    ;;
-       *)    alias ls='/bin/ls $LS_OPTIONS' ;;
+       bash|dash|ash)
+           _ls ()
+           {
+               local IFS=' '
+               command ls $LS_OPTIONS ${1+"$@"}
+           }
+           alias ls=_ls
+           ;;
+       zsh)
+           _ls ()
+           {
+               local IFS=' '
+               command \ls $=LS_OPTIONS ${1+"$@"}
+           }
+           alias ls=_ls
+           ;;
+       ksh)
+           _ls ()
+           {
+               typeset IFS=' '
+               command ls $LS_OPTIONS ${1+"$@"}
+           }
+           alias ls=_ls
+           ;;
+       *)  alias ls='/bin/ls $LS_OPTIONS' ;;
     esac
     alias dir='ls -l'
     alias ll='ls -l'

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to