Hello community, here is the log from the commit of package aaa_base for openSUSE:Factory checked in at 2020-01-18 12:14:48 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/aaa_base (Old) and /work/SRC/openSUSE:Factory/.aaa_base.new.26092 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "aaa_base" Sat Jan 18 12:14:48 2020 rev:460 rq:764921 version:84.87+git20200116.59482ba Changes: -------- --- /work/SRC/openSUSE:Factory/aaa_base/aaa_base.changes 2019-12-11 11:59:12.548889663 +0100 +++ /work/SRC/openSUSE:Factory/.aaa_base.new.26092/aaa_base.changes 2020-01-18 12:16:30.315086592 +0100 @@ -1,0 +2,14 @@ +Thu Jan 16 10:22:27 UTC 2020 - [email protected] + +- Update to version 84.87+git20200116.59482ba: + * drop dev.cdrom.autoclose = 0 from sysctl config (bsc#1160970) + * Call binaries in /usr only, /bin is legacy + +------------------------------------------------------------------- +Wed Jan 08 10:16:27 UTC 2020 - [email protected] + +- Update to version 84.87+git20200108.0da43d3: + * generalize testing for JVMs when creating the java path + to support sapjvm and others (boo#1157794) + +------------------------------------------------------------------- Old: ---- aaa_base-84.87+git20191206.1cb88e3.tar.xz New: ---- aaa_base-84.87+git20200116.59482ba.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ aaa_base.spec ++++++ --- /var/tmp/diff_new_pack.oMt9TW/_old 2020-01-18 12:16:32.347087683 +0100 +++ /var/tmp/diff_new_pack.oMt9TW/_new 2020-01-18 12:16:32.351087684 +0100 @@ -1,7 +1,7 @@ # # spec file for package aaa_base # -# Copyright (c) 2019 SUSE LLC +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -23,7 +23,7 @@ %endif Name: aaa_base -Version: 84.87+git20191206.1cb88e3 +Version: 84.87+git20200116.59482ba 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.oMt9TW/_old 2020-01-18 12:16:32.407087714 +0100 +++ /var/tmp/diff_new_pack.oMt9TW/_new 2020-01-18 12:16:32.407087714 +0100 @@ -1,4 +1,4 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/openSUSE/aaa_base.git</param> - <param name="changesrevision">cf9c05a891de5dbb55a336b6788e3ee5163e33d1</param></service></servicedata> \ No newline at end of file + <param name="changesrevision">59482ba32863a74633654e883ccab7501327be08</param></service></servicedata> \ No newline at end of file ++++++ aaa_base-84.87+git20191206.1cb88e3.tar.xz -> aaa_base-84.87+git20200116.59482ba.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base-84.87+git20191206.1cb88e3/files/etc/profile new/aaa_base-84.87+git20200116.59482ba/files/etc/profile --- old/aaa_base-84.87+git20191206.1cb88e3/files/etc/profile 2019-12-06 08:26:35.000000000 +0100 +++ new/aaa_base-84.87+git20200116.59482ba/files/etc/profile 2020-01-16 11:21:36.000000000 +0100 @@ -120,10 +120,10 @@ test -z "$EUID" && readonly EUID=`path id -u 2> /dev/null` test -z "$USER" && USER=`path id -un 2> /dev/null` test -z "$MAIL" && MAIL=/var/spool/mail/$USER -if test -x /bin/uname ; then - test -z "$HOST" && HOST=`/bin/uname -n` - test "$HOST" = "localhost" && HOST=`/bin/uname -n` - test -z "$CPU" && CPU=`/bin/uname -m` +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` fi # Remark: /proc/sys/kernel/domainname and the program domainname # its self will provide the NIS/YP domainname, see domainname(8). diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base-84.87+git20191206.1cb88e3/files/etc/profile.d/alias.bash new/aaa_base-84.87+git20200116.59482ba/files/etc/profile.d/alias.bash --- old/aaa_base-84.87+git20191206.1cb88e3/files/etc/profile.d/alias.bash 2019-12-06 08:26:35.000000000 +0100 +++ new/aaa_base-84.87+git20200116.59482ba/files/etc/profile.d/alias.bash 2020-01-16 11:21:36.000000000 +0100 @@ -9,7 +9,7 @@ } /usr/bin/startx ${1+"$@"} 2>&1 | tee $HOME/.xsession-errors } - remount () { /bin/mount -o remount,${1+"$@"} ; } + remount () { /usr/bin/mount -o remount,${1+"$@"} ; } fi # @@ -29,7 +29,7 @@ alias grep='grep --color=auto' alias ip='ip --color=auto' alias md='mkdir -p' -if test "$is" = "bash" -a ! -x /bin/which -a ! -x /usr/bin/which ; then +if test "$is" = "bash" -a ! -x /usr/bin/which ; then # # Other shells use the which command in path (e.g. ash) or # their own builtin for the which command (e.g. ksh and zsh). diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base-84.87+git20191206.1cb88e3/files/etc/profile.d/alias.tcsh new/aaa_base-84.87+git20200116.59482ba/files/etc/profile.d/alias.tcsh --- old/aaa_base-84.87+git20191206.1cb88e3/files/etc/profile.d/alias.tcsh 2019-12-06 08:26:35.000000000 +0100 +++ new/aaa_base-84.87+git20200116.59482ba/files/etc/profile.d/alias.tcsh 2020-01-16 11:21:36.000000000 +0100 @@ -6,4 +6,4 @@ alias md 'mkdir -p' alias startx 'if ( ! -x /usr/bin/startx ) echo "No startx installed";\ if ( -x /usr/bin/startx ) /usr/bin/startx |& tee ${HOME}/.xsession-error' -alias remount '/bin/mount -o remount,\!*' +alias remount '/usr/bin/mount -o remount,\!*' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base-84.87+git20191206.1cb88e3/files/etc/profile.d/alljava.csh new/aaa_base-84.87+git20200116.59482ba/files/etc/profile.d/alljava.csh --- old/aaa_base-84.87+git20191206.1cb88e3/files/etc/profile.d/alljava.csh 2019-12-06 08:26:35.000000000 +0100 +++ new/aaa_base-84.87+git20200116.59482ba/files/etc/profile.d/alljava.csh 2020-01-16 11:21:36.000000000 +0100 @@ -13,7 +13,7 @@ if ( ! -d $JDIR ) continue - foreach JPATH ( $JDIR $JDIR/java $JDIR/java-[a-z]* $JDIR/java-[0-9]* $JDIR/jre $JDIR/jre-[a-z]* $JDIR/jre-[0-9]* ) + foreach JPATH ( $JDIR $JDIR/* ) if ( ! -d $JPATH ) continue diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base-84.87+git20191206.1cb88e3/files/etc/profile.d/alljava.sh new/aaa_base-84.87+git20200116.59482ba/files/etc/profile.d/alljava.sh --- old/aaa_base-84.87+git20191206.1cb88e3/files/etc/profile.d/alljava.sh 2019-12-06 08:26:35.000000000 +0100 +++ new/aaa_base-84.87+git20200116.59482ba/files/etc/profile.d/alljava.sh 2020-01-16 11:21:36.000000000 +0100 @@ -15,7 +15,7 @@ continue fi - for JPATH in $JDIR $JDIR/java $JDIR/java-[a-z]* $JDIR/java-[0-9]* $JDIR/jre $JDIR/jre-[a-z]* $JDIR/jre-[0-9]*; do + for JPATH in $JDIR $JDIR/*; do if ! test -d $JPATH; then continue diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base-84.87+git20191206.1cb88e3/files/etc/profile.d/ls.bash new/aaa_base-84.87+git20200116.59482ba/files/etc/profile.d/ls.bash --- old/aaa_base-84.87+git20191206.1cb88e3/files/etc/profile.d/ls.bash 2019-12-06 08:26:35.000000000 +0100 +++ new/aaa_base-84.87+git20200116.59482ba/files/etc/profile.d/ls.bash 2020-01-16 11:21:36.000000000 +0100 @@ -63,7 +63,7 @@ } alias ls=_ls ;; - *) alias ls='/bin/ls $LS_OPTIONS' ;; + *) alias ls='/usr/bin/ls $LS_OPTIONS' ;; esac alias dir='ls -l' alias ll='ls -l' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base-84.87+git20191206.1cb88e3/files/etc/profile.d/profile.csh new/aaa_base-84.87+git20200116.59482ba/files/etc/profile.d/profile.csh --- old/aaa_base-84.87+git20191206.1cb88e3/files/etc/profile.d/profile.csh 2019-12-06 08:26:35.000000000 +0100 +++ new/aaa_base-84.87+git20200116.59482ba/files/etc/profile.d/profile.csh 2020-01-16 11:21:36.000000000 +0100 @@ -23,7 +23,7 @@ unset sys set val="" -foreach line ( "`/bin/grep -vh '^#' $sysconf`" ) +foreach line ( "`/usr/bin/grep -vh '^#' $sysconf`" ) set val="${line:q:s/=/ /}" set arr=( $val ) eval set val="${arr[2-]}" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base-84.87+git20191206.1cb88e3/files/etc/profile.d/profile.sh new/aaa_base-84.87+git20200116.59482ba/files/etc/profile.d/profile.sh --- old/aaa_base-84.87+git20191206.1cb88e3/files/etc/profile.d/profile.sh 2019-12-06 08:26:35.000000000 +0100 +++ new/aaa_base-84.87+git20200116.59482ba/files/etc/profile.d/profile.sh 2020-01-16 11:21:36.000000000 +0100 @@ -145,7 +145,7 @@ /dev/tty*) if test "$TERM" = "linux" -a -t ; then # Use /bin/echo due ksh can not do that - /bin/echo -en "\033$CONSOLE_MAGIC" + /usr/bin/echo -en "\033$CONSOLE_MAGIC" fi esac fi diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base-84.87+git20191206.1cb88e3/files/usr/lib/sysctl.d/50-default.conf new/aaa_base-84.87+git20200116.59482ba/files/usr/lib/sysctl.d/50-default.conf --- old/aaa_base-84.87+git20191206.1cb88e3/files/usr/lib/sysctl.d/50-default.conf 2019-12-06 08:26:35.000000000 +0100 +++ new/aaa_base-84.87+git20200116.59482ba/files/usr/lib/sysctl.d/50-default.conf 2020-01-16 11:21:36.000000000 +0100 @@ -45,9 +45,6 @@ # default 184 = 128+32+16+8 kernel.sysrq = 184 -# Disable auto-closing of cd tray bnc#659153 -dev.cdrom.autoclose = 0 - # enable hard- and symlink protection (bnc#821585) fs.protected_hardlinks = 1 fs.protected_symlinks = 1
