Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package aaa_base for openSUSE:Factory checked in at 2021-06-05 23:31:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/aaa_base (Old) and /work/SRC/openSUSE:Factory/.aaa_base.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "aaa_base" Sat Jun 5 23:31:11 2021 rev:479 rq:896866 version:84.87+git20210601.8cb043f Changes: -------- --- /work/SRC/openSUSE:Factory/aaa_base/aaa_base.changes 2021-03-20 21:25:42.285157682 +0100 +++ /work/SRC/openSUSE:Factory/.aaa_base.new.1898/aaa_base.changes 2021-06-05 23:31:47.072464304 +0200 @@ -1,0 +2,6 @@ +Tue Jun 01 15:07:19 UTC 2021 - wer...@suse.de + +- Update to version 84.87+git20210601.8cb043f: + * Use shell builtins for $HOSTTYPE and others (boo#1186296) + +------------------------------------------------------------------- Old: ---- aaa_base-84.87+git20210317.2c04190.tar.xz New: ---- aaa_base-84.87+git20210601.8cb043f.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ aaa_base.spec ++++++ --- /var/tmp/diff_new_pack.wkly2i/_old 2021-06-05 23:31:47.980465883 +0200 +++ /var/tmp/diff_new_pack.wkly2i/_new 2021-06-05 23:31:47.984465890 +0200 @@ -23,7 +23,7 @@ %endif Name: aaa_base -Version: 84.87+git20210317.2c04190 +Version: 84.87+git20210601.8cb043f Release: 0 URL: https://github.com/openSUSE/aaa_base # do not require systemd - aaa_base is in the build environment and we don't ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.wkly2i/_old 2021-06-05 23:31:48.032465973 +0200 +++ /var/tmp/diff_new_pack.wkly2i/_new 2021-06-05 23:31:48.032465973 +0200 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/openSUSE/aaa_base.git</param> - <param name="changesrevision">2c0419023fa841ebf382581ef709fcf68253ecb1</param> + <param name="changesrevision">8cb043fe97c2cf1e4faf3d719f3e562b26b895b6</param> </service> -</servicedata> \ No newline at end of file +</servicedata> ++++++ aaa_base-84.87+git20210317.2c04190.tar.xz -> aaa_base-84.87+git20210601.8cb043f.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base-84.87+git20210317.2c04190/files/etc/csh.login new/aaa_base-84.87+git20210601.8cb043f/files/etc/csh.login --- old/aaa_base-84.87+git20210317.2c04190/files/etc/csh.login 2021-03-17 15:38:34.000000000 +0100 +++ new/aaa_base-84.87+git20210601.8cb043f/files/etc/csh.login 2021-06-01 17:02:03.000000000 +0200 @@ -71,23 +71,18 @@ if ( -x /bin/uname ) then if (! ${?HOST} ) setenv HOST "`/bin/uname -n`" if ( ${HOST} == localhost ) setenv HOST "`/bin/uname -n`" - if (! ${?CPU} ) setenv CPU "`/bin/uname -m`" + if (! ${?CPU} ) setenv CPU "`/bin/uname -p`" endif # Remark: /proc/sys/kernel/domainname and the program domainname # its self will provide the NIS/YP domainname, see domainname(8). if ( -s /etc/HOSTNAME ) then if (! ${?HOSTNAME} ) setenv HOSTNAME `cat /etc/HOSTNAME` -else - if (! ${?HOSTNAME} ) setenv HOSTNAME $HOST endif -if (! ${?LOGNAME} ) set LOGNAME=$USER -if ( ${CPU} =~ i?86 ) then - setenv HOSTTYPE i386 -else - setenv HOSTTYPE "$CPU" -endif -setenv OSTYPE linux -setenv MACHTYPE "${CPU}-suse-${OSTYPE}" +if (! ${?LOGNAME} ) set LOGNAME=$USER +if (! ${?HOSTNAME} ) setenv HOSTNAME $HOST +if (! ${?HOSTTYPE} ) setenv HOSTTYPE $CPU +if (! ${?OSTYPE} ) setenv OSTYPE linux +if (! ${?MACHTYPE} ) setenv MACHTYPE "${CPU}-suse-${OSTYPE}" # # Get message if mail is reached diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base-84.87+git20210317.2c04190/files/etc/profile new/aaa_base-84.87+git20210601.8cb043f/files/etc/profile --- old/aaa_base-84.87+git20210317.2c04190/files/etc/profile 2021-03-17 15:38:34.000000000 +0100 +++ new/aaa_base-84.87+git20210601.8cb043f/files/etc/profile 2021-06-01 17:02:03.000000000 +0200 @@ -128,22 +128,18 @@ if test -x /usr/bin/uname ; then test -z "$HOST" && HOST=`/usr/bin/uname -n` test "$HOST" = "localhost" && HOST=`/usr/bin/uname -n` - test -z "$CPU" && CPU=`/usr/bin/uname -m` + test -z "$CPU" && CPU=`/usr/bin/uname -p` fi # Remark: /proc/sys/kernel/domainname and the program domainname # its self will provide the NIS/YP domainname, see domainname(8). if test -s /etc/HOSTNAME ; then test -z "$HOSTNAME" && HOSTNAME=`cat /etc/HOSTNAME` -else - test -z "$HOSTNAME" && HOSTNAME=$HOST fi test -z "$LOGNAME" && LOGNAME=$USER -case "$CPU" in - i?86) HOSTTYPE=i386 ;; - *) HOSTTYPE=${CPU} ;; -esac - OSTYPE=linux -MACHTYPE=${CPU}-suse-${OSTYPE} +: ${HOSTNAME:=${HOST}} +: ${HOSTTYPE:=${CPU}} +: ${OSTYPE:=linux} +: ${MACHTYPE:=${CPU}-suse-${OSTYPE}} # Do NOT export UID, EUID, USER, and LOGNAME export MAIL HOST CPU HOSTNAME HOSTTYPE OSTYPE MACHTYPE diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base-84.87+git20210317.2c04190/files/usr/lib/sysctl.d/50-default.conf new/aaa_base-84.87+git20210601.8cb043f/files/usr/lib/sysctl.d/50-default.conf --- old/aaa_base-84.87+git20210317.2c04190/files/usr/lib/sysctl.d/50-default.conf 2021-03-17 15:38:34.000000000 +0100 +++ new/aaa_base-84.87+git20210601.8cb043f/files/usr/lib/sysctl.d/50-default.conf 2021-06-01 17:02:03.000000000 +0200 @@ -56,6 +56,9 @@ # enable hard- and symlink protection (bnc#821585) fs.protected_hardlinks = 1 fs.protected_symlinks = 1 +# enable protection fro fifos and regular files (bsc#1183019) +fs.protected_regular = 2 +fs.protected_fifos = 2 # restrict printed kernel ptrs (bnc#833774) kernel.kptr_restrict = 1