Hello community,

here is the log from the commit of package aaa_base for openSUSE:Factory 
checked in at 2013-12-09 16:51:58
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/aaa_base (Old)
 and      /work/SRC/openSUSE:Factory/.aaa_base.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "aaa_base"

Changes:
--------
--- /work/SRC/openSUSE:Factory/aaa_base/aaa_base.changes        2013-11-14 
10:39:30.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.aaa_base.new/aaa_base.changes   2013-12-09 
16:51:59.000000000 +0100
@@ -1,0 +2,6 @@
+Mon Dec  9 08:16:09 UTC 2013 - [email protected]
+
+- remove {c,}sh.utf8 as testutf8 is a dummy anyways (bnc#849258)
+- fix chkconfig --check (bnc#851374)
+
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ aaa_base.spec ++++++
--- /var/tmp/diff_new_pack.vORWH3/_old  2013-12-09 16:52:01.000000000 +0100
+++ /var/tmp/diff_new_pack.vORWH3/_new  2013-12-09 16:52:01.000000000 +0100
@@ -143,13 +143,11 @@
 %config /etc/profile.d/alljava.csh
 %config /etc/profile.d/alljava.sh
 %config /etc/profile.d/csh.ssh
-%config /etc/profile.d/csh.utf8
 %config /etc/profile.d/lang.csh
 %config /etc/profile.d/lang.sh
 %config /etc/profile.d/profile.csh
 %config /etc/profile.d/profile.sh
 %config /etc/profile.d/sh.ssh
-%config /etc/profile.d/sh.utf8
 %config /etc/profile.d/xdg-environment.csh
 %config /etc/profile.d/xdg-environment.sh
 %config /etc/rc.splash

++++++ aaa_base-13.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base-13.1/files/etc/profile.d/csh.utf8 
new/aaa_base-13.1/files/etc/profile.d/csh.utf8
--- old/aaa_base-13.1/files/etc/profile.d/csh.utf8      2013-11-11 
17:51:38.000000000 +0100
+++ new/aaa_base-13.1/files/etc/profile.d/csh.utf8      1970-01-01 
01:00:00.000000000 +0100
@@ -1,56 +0,0 @@
-#
-# Try to autodetect UTF-8 capable terminal line
-#
-where testutf8 > /dev/null
-if ( $? == 0 ) then
-    testutf8
-    set ret="$?"
-    if ( ${?LANG} ) then
-       if      ( $ret == 2 ) then
-           switch ($LANG)
-           case POSIX:
-           case *.UTF-8:
-               breaksw
-           default:
-               setenv LANG `echo ${LANG}|sed 's/[\.@].*//'`.UTF-8
-               breaksw
-           endsw
-       else if ( $ret == 1 ) then
-           switch ($LANG)
-           case *.UTF-8:
-               setenv LANG `echo ${LANG}|sed 's/[\.@].*//'`
-               breaksw
-           default:
-               breaksw
-           endsw
-       endif
-    endif
-    foreach lc (LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE         \
-               LC_MONETARY LC_MESSAGES LC_PAPER LC_NAME        \
-               LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT          \
-               LC_IDENTIFICATION LC_ALL)
-       eval set val=\${\?$lc}
-       if ( $val == 0 ) continue
-       eval set val=\$$lc
-       if      ( $ret == 2 ) then
-           switch ($val)
-           case POSIX:
-           case *.UTF-8:
-               breaksw
-           default:
-               eval setenv \$lc `echo ${val}|sed 's/[\.@].*//'`.UTF-8
-               breaksw
-           endsw
-       else if ( $ret == 1 ) then
-           switch ($val)
-           case *.UTF-8:
-               eval setenv \$lc `echo ${val}|sed 's/[\.@].*//'`
-               breaksw
-           default:
-               breaksw
-           endsw
-       endif
-    end
-    unset ret lc val
-    setenv LANG $LANG
-endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base-13.1/files/etc/profile.d/sh.utf8 
new/aaa_base-13.1/files/etc/profile.d/sh.utf8
--- old/aaa_base-13.1/files/etc/profile.d/sh.utf8       2013-11-11 
17:51:38.000000000 +0100
+++ new/aaa_base-13.1/files/etc/profile.d/sh.utf8       1970-01-01 
01:00:00.000000000 +0100
@@ -1,41 +0,0 @@
-#
-# Try to autodetect UTF-8 capable terminal line
-#
-if command -v testutf8 > /dev/null 2>&1 ; then
-    testutf8
-    ret="$?"
-    if test -n "$LANG" ; then
-       if   test "$ret" -eq 2 ; then
-           case "$LANG" in
-           POSIX)   ;;
-           *.UTF-8) ;;
-           *)   LANG=${LANG%[.@]*}.UTF-8
-           esac
-       elif test "$ret" -eq 1 ; then
-           case "$LANG" in
-           *.UTF-8) LANG=${LANG%[.@]*} ;;
-           *)       ;;
-           esac
-       fi
-    fi
-    for lc in LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE   \
-             LC_MONETARY LC_MESSAGES LC_PAPER LC_NAME  \
-             LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT    \
-             LC_IDENTIFICATION LC_ALL
-    do
-       eval val="\$$lc"
-       test -n "$val" || continue
-       if   test "$ret" -eq 2 ; then
-           case "$val" in
-           POSIX)      ;;
-           *.UTF-8)    ;;
-           *)          eval $lc=\${val%[.@]*}.UTF-8
-           esac
-       elif test "$ret" -eq 1 ; then
-           case "$val" in
-           *.UTF-8)    eval $lc=\${val%[.@]*} ;;
-           esac
-       fi
-    done
-    unset ret val
-fi
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base-13.1/files/usr/bin/chkconfig 
new/aaa_base-13.1/files/usr/bin/chkconfig
--- old/aaa_base-13.1/files/usr/bin/chkconfig   2013-11-11 17:51:38.000000000 
+0100
+++ new/aaa_base-13.1/files/usr/bin/chkconfig   2013-12-09 09:14:39.000000000 
+0100
@@ -624,7 +624,12 @@
       exit 1 unless getreal_xinetd($s) ne '';
       next;
     }
-    exit 1 unless $links{$l}->{$s};
+    if (is_overriden_by_systemd($s, $root)) {
+       my $r = systemd_get_enabled($s, $root);
+       exit 1 if $r eq "off";
+    } else {
+       exit 1 unless $links{$l}->{$s};
+    }
   }
   exit 0;
 }

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

Reply via email to