Hello community,

here is the log from the commit of package aaa_base for openSUSE:Factory 
checked in at 2017-08-29 11:35:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/aaa_base (Old)
 and      /work/SRC/openSUSE:Factory/.aaa_base.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "aaa_base"

Tue Aug 29 11:35:22 2017 rev:437 rq:517816 version:13.2+git20170814.cc9e34e

Changes:
--------
--- /work/SRC/openSUSE:Factory/aaa_base/aaa_base.changes        2017-08-02 
11:27:03.699563982 +0200
+++ /work/SRC/openSUSE:Factory/.aaa_base.new/aaa_base.changes   2017-08-29 
11:35:23.505685446 +0200
@@ -1,0 +2,7 @@
+Sun Aug 20 22:41:01 UTC 2017 - [email protected]
+
+- Update to version 13.2+git20170814.cc9e34e:
+  * Unset id in csh.cshrc instead of profile.csh (bsc#1049577)
+  * Restore the is variable within /etc/profile
+
+-------------------------------------------------------------------

Old:
----
  aaa_base-13.2+git20170731.c10ca77.tar.xz

New:
----
  aaa_base-13.2+git20170814.cc9e34e.tar.xz

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

Other differences:
------------------
++++++ aaa_base.spec ++++++
--- /var/tmp/diff_new_pack.iUTzGG/_old  2017-08-29 11:35:24.845497197 +0200
+++ /var/tmp/diff_new_pack.iUTzGG/_new  2017-08-29 11:35:24.857495511 +0200
@@ -18,7 +18,7 @@
 
 
 Name:           aaa_base
-Version:        13.2+git20170731.c10ca77
+Version:        13.2+git20170814.cc9e34e
 Release:        0
 Url:            https://github.com/openSUSE/aaa_base
 Provides:       aaa_skel = %{version}-%{release}

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.iUTzGG/_old  2017-08-29 11:35:25.009474157 +0200
+++ /var/tmp/diff_new_pack.iUTzGG/_new  2017-08-29 11:35:25.013473595 +0200
@@ -1,4 +1,4 @@
 <servicedata>
 <service name="tar_scm">
             <param name="url">git://github.com/openSUSE/aaa_base.git</param>
-          <param 
name="changesrevision">c10ca77e8ecd9de00b061d3f328c28d234d02fc1</param></service></servicedata>
\ No newline at end of file
+          <param 
name="changesrevision">cc9e34e45854d7313e07a0f4b2cc41b720a16003</param></service></servicedata>
\ No newline at end of file

++++++ aaa_base-13.2+git20170731.c10ca77.tar.xz -> 
aaa_base-13.2+git20170814.cc9e34e.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/aaa_base-13.2+git20170731.c10ca77/files/etc/bash.bashrc 
new/aaa_base-13.2+git20170814.cc9e34e/files/etc/bash.bashrc
--- old/aaa_base-13.2+git20170731.c10ca77/files/etc/bash.bashrc 2017-07-31 
16:04:09.000000000 +0200
+++ new/aaa_base-13.2+git20170814.cc9e34e/files/etc/bash.bashrc 2017-08-14 
15:33:23.000000000 +0200
@@ -11,6 +11,7 @@
 #
 noprofile=false
 restricted=false
+: ${_is_save:=unset}
 if test -z "$is" ; then
  if test -f /proc/mounts ; then
   if ! is=$(readlink /proc/$$/exe 2>/dev/null) ; then
@@ -362,7 +363,9 @@
 ash)  test -s /etc/ash.ashrc.local   && . /etc/ash.ashrc.local
 esac
 test -s /etc/sh.shrc.local && . /etc/sh.shrc.local
-unset is
+if test "$_is_save" = "unset" ; then
+    unset is _is_save
+fi
 
 if test "$restricted" = true -a -z "$PROFILEREAD" ; then
     PATH=/usr/lib/restricted/bin
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/aaa_base-13.2+git20170731.c10ca77/files/etc/csh.cshrc 
new/aaa_base-13.2+git20170814.cc9e34e/files/etc/csh.cshrc
--- old/aaa_base-13.2+git20170731.c10ca77/files/etc/csh.cshrc   2017-07-31 
16:04:09.000000000 +0200
+++ new/aaa_base-13.2+git20170814.cc9e34e/files/etc/csh.cshrc   2017-08-14 
15:33:23.000000000 +0200
@@ -44,6 +44,7 @@
 #
 if (! ${?UID}  ) set -r  UID=${uid}
 if (! ${?EUID} ) set -r EUID="`${id} -u`"
+unset id
 
 #
 # Avoid trouble with Emacs shell mode
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base-13.2+git20170731.c10ca77/files/etc/profile 
new/aaa_base-13.2+git20170814.cc9e34e/files/etc/profile
--- old/aaa_base-13.2+git20170731.c10ca77/files/etc/profile     2017-07-31 
16:04:09.000000000 +0200
+++ new/aaa_base-13.2+git20170814.cc9e34e/files/etc/profile     2017-08-14 
15:33:23.000000000 +0200
@@ -339,7 +339,10 @@
     # Note that ksh always reads /etc/ksh.kshrc
     #
     if test "$is" != ksh -a "$is" != zsh ; then
+       _is_save=$is
        test -r /etc/bash.bashrc && . /etc/bash.bashrc
+       is=$_is_save
+       unset _is_save
     fi
     if test "$restricted" = true ; then
        readonly _HOMEBASHRC=true
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/aaa_base-13.2+git20170731.c10ca77/files/etc/profile.d/profile.csh 
new/aaa_base-13.2+git20170814.cc9e34e/files/etc/profile.d/profile.csh
--- old/aaa_base-13.2+git20170731.c10ca77/files/etc/profile.d/profile.csh       
2017-07-31 16:04:09.000000000 +0200
+++ new/aaa_base-13.2+git20170814.cc9e34e/files/etc/profile.d/profile.csh       
2017-08-14 15:33:23.000000000 +0200
@@ -157,7 +157,7 @@
     endif
 endif
 
-unset val arr id
+unset val arr
 unset noglob
 #
 # end of profile.csh


Reply via email to