Hello community,

here is the log from the commit of package aaa_base for openSUSE:Factory 
checked in at 2012-10-12 07:39:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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        2012-10-08 
07:09:53.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.aaa_base.new/aaa_base.changes   2012-10-12 
07:40:43.000000000 +0200
@@ -1,0 +2,11 @@
+Mon Oct  8 08:21:47 UTC 2012 - [email protected]
+
+- Update from git:
+  * Fix typo in /usr/lib/tmpfiles.d/loop.conf
+
+-------------------------------------------------------------------
+Mon Oct  8 05:12:36 UTC 2012 - [email protected]
+
+- update from git to get the latest change too
+
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ aaa_base-12.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base-12.3/files/etc/profile.d/complete.bash 
new/aaa_base-12.3/files/etc/profile.d/complete.bash
--- old/aaa_base-12.3/files/etc/profile.d/complete.bash 2012-10-04 
10:26:43.000000000 +0200
+++ new/aaa_base-12.3/files/etc/profile.d/complete.bash 2012-10-08 
10:21:38.000000000 +0200
@@ -1,10 +1,10 @@
-# /etc/profile.d/complete.bash for SuSE Linux
+# /etc/profile.d/complete.bash for SUSE Linux and openSUSE
 #
 #
 # This feature has its own file because some other shells
 # do not like the way how the bash assigns arrays
 #
-# REQUIRES bash 4.0 and higher
+# REQUIRES bash 4.2 and higher
 #
 
  _def="-o default -o bashdefault"
@@ -313,7 +313,7 @@
     gs|ghostview)      e='!*.+(eps|EPS|ps|PS|pdf|PDF)'         ;;
     gv|kghostview)     e='!*.+(eps|EPS|ps|PS|ps.gz|pdf|PDF)'   ;;
     acroread|[xk]pdf)  e='!*.+(fdf|pdf|FDF|PDF)'               ;;
-    evince)            e='!*.+(ps|PS|pdf|PDF)'                 ;;
+    evince)            e='!*.+(ps|PS|pdf|PDF)'                 ;;
     dvips)             e='!*.+(dvi|DVI)'                       ;;
     rpm|zypper)                e='!*.+(rpm|you)'                       ;;
     [xk]dvi)           e='!*.+(dvi|dvi.gz|DVI|DVI.gz)'         ;;
@@ -342,7 +342,7 @@
     \`*)               COMPREPLY=($(compgen -c -P '\`' -S '\`' -- ${c#?}))     
;;
     \$\{*\})      eval COMPREPLY=\(${c}\) ;;
     \$\{*)             COMPREPLY=($(compgen -v -P '${' -S '}'  -- ${c#??}))    
;;
-    \$*)               COMPREPLY=($(compgen -v -P '$'          -- ${c#?}))     
;;
+    \$*)               COMPREPLY=($(compgen -v -P '$'          -- ${c#?}))     
;;
     \~*/*)             COMPREPLY=($(compgen -f -X "$e" +o plusdirs -- ${c}))   
;;
     \~*)               COMPREPLY=($(compgen -u ${s}            -- ${c}))       
;;
     *@*)               COMPREPLY=($(compgen -A hostname -P '@' -S ':' -- 
${c#*@})) ;;
@@ -570,6 +570,105 @@
 
 complete ${_def} -F _rootpath_                 sudo
 
+_ls_ ()
+{
+    local c=${COMP_WORDS[COMP_CWORD]}
+    local IFS=$'\n'
+    local s x
+    local -i glob=0
+    local -i isdir=0
+    local -i quoted=0
+    local -i variable=0
+
+    if [[ "${c:0:1}" == '"' ]] ; then
+       let quoted++
+       compopt -o plusdirs
+    fi
+    if [[ "${c:0:1}" == '$' ]] ; then
+       let variable++
+       compopt -o dirnames +o filenames
+    else
+       compopt +o dirnames -o filenames
+    fi
+
+    if test -d "$c" ; then
+       compopt -o nospace
+    else
+       compopt +o nospace
+    fi
+
+    shopt -q extglob && let glob++
+    ((glob == 0)) && shopt -s extglob
+
+    case "$c" in
+    *[*?[]*)   COMPREPLY=()                            # use bashdefault
+               ((glob == 0)) && shopt -u extglob
+               return 0                                                ;;
+    \$\(*\))    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#??}))
+               if ((${#COMPREPLY[@]} > 0)) ; then
+                   compopt +o plusdirs
+                   if ((${#COMPREPLY[@]} > 1)) ; then
+                       ((glob == 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
+                       ((glob == 0)) && shopt -u extglob
+                       return 0
+                   fi
+                   let isdir++
+                   eval COMPREPLY=\(${COMPREPLY[@]}\)
+               fi                                                      ;;
+    \~*/*)     COMPREPLY=($(compgen -d $s +o plusdirs  -- "${c}"))
+               if ((${#COMPREPLY[@]} > 0)) ; then
+                   compopt +o plusdirs
+                   let isdir++
+               fi                                                      ;;
+    \~*)       COMPREPLY=($(compgen -u $s              -- "${c}"))
+               if ((${#COMPREPLY[@]} > 0)) ; then
+                   compopt +o plusdirs
+                   let isdir++
+               fi                                                      ;;
+    *\:*)      if [[ $COMP_WORDBREAKS =~ : ]] ; then
+                   x=${c%"${c##*[^\\]:}"}
+                   COMPREPLY=($(compgen -d $s +o plusdirs -- "${c}"))
+                   COMPREPLY=(${COMPREPLY[@]#"$x"})
+                   ((${#COMPREPLY[@]} == 0)) || let isdir++
+               fi
+               ((glob == 0)) && shopt -u extglob
+               return 0                                                ;;
+    *)         COMPREPLY=()                        # use (bash)default
+               ((glob == 0)) && shopt -u extglob
+               return 0                                                ;;
+    esac
+
+    ((quoted)) || _compreply_ $isdir
+
+    ((glob == 0)) && shopt -u extglob
+}
+
+complete ${_def} ${_file}  -F _ls_             ls ll la l ls-l lf
+
 unset _def _dir _file _nosp
 
 #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base-12.3/files/usr/lib/tmpfiles.d/loop.conf 
new/aaa_base-12.3/files/usr/lib/tmpfiles.d/loop.conf
--- old/aaa_base-12.3/files/usr/lib/tmpfiles.d/loop.conf        2012-10-04 
10:26:43.000000000 +0200
+++ new/aaa_base-12.3/files/usr/lib/tmpfiles.d/loop.conf        2012-10-08 
10:21:38.000000000 +0200
@@ -1,7 +1,7 @@
 # Static loop device nodes (bnc#661715)
 # See tmpfiles.d(5) for details
 
-Type Path        Mode UID  GID  Age Argument
+# Type Path        Mode UID  GID  Age Argument
 b    /dev/loop0  0660 root disk - 7:0
 b    /dev/loop1  0660 root disk - 7:1
 b    /dev/loop2  0660 root disk - 7:2

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

Reply via email to