Hello community, here is the log from the commit of package aaa_base for openSUSE:Factory checked in at 2020-08-04 09:10:10 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/aaa_base (Old) and /work/SRC/openSUSE:Factory/.aaa_base.new.3592 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "aaa_base" Tue Aug 4 09:10:10 2020 rev:471 rq: version:84.87+git20200507.e2243a4 Changes: -------- --- /work/SRC/openSUSE:Factory/aaa_base/aaa_base.changes 2020-08-02 12:27:45.887820552 +0200 +++ /work/SRC/openSUSE:Factory/.aaa_base.new.3592/aaa_base.changes 2020-08-04 09:10:15.831866541 +0200 @@ -2,9 +1,0 @@ -Wed Jul 08 10:00:41 UTC 2020 - [email protected] - -- Update to version 84.87+git20200708.f5e90d7: - * check for Packages.db and use this instead of Packages - (boo#1171762) - * Add also support for /usr/etc/profile.d for tcsh - * Do add some support for /usr/etc/profile.d - -------------------------------------------------------------------- @@ -32,5 +22,0 @@ - -------------------------------------------------------------------- -Thu May 07 08:26:51 UTC 2020 - [email protected] - -- Better support of Midnight Commander (bsc#1170527) Old: ---- aaa_base-84.87+git20200708.f5e90d7.tar.xz New: ---- aaa_base-84.87+git20200507.e2243a4.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ aaa_base.spec ++++++ --- /var/tmp/diff_new_pack.naHkfA/_old 2020-08-04 09:10:17.747868597 +0200 +++ /var/tmp/diff_new_pack.naHkfA/_new 2020-08-04 09:10:17.747868597 +0200 @@ -23,7 +23,7 @@ %endif Name: aaa_base -Version: 84.87+git20200708.f5e90d7 +Version: 84.87+git20200507.e2243a4 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.naHkfA/_old 2020-08-04 09:10:17.823868678 +0200 +++ /var/tmp/diff_new_pack.naHkfA/_new 2020-08-04 09:10:17.823868678 +0200 @@ -1,6 +1,4 @@ <servicedata> <service name="tar_scm"> - <param name="url">https://github.com/openSUSE/aaa_base.git</param> - <param name="changesrevision">f5e90d70d119b6aa12d019947029f9337aec378d</param> -</service> -</servicedata> + <param name="url">https://github.com/openSUSE/aaa_base.git</param> + <param name="changesrevision">e2243a4b9f47fa4a51de471811fc32da925a2ffe</param></service></servicedata> \ No newline at end of file ++++++ aaa_base-84.87+git20200708.f5e90d7.tar.xz -> aaa_base-84.87+git20200507.e2243a4.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base-84.87+git20200708.f5e90d7/files/etc/bash.bashrc new/aaa_base-84.87+git20200507.e2243a4/files/etc/bash.bashrc --- old/aaa_base-84.87+git20200708.f5e90d7/files/etc/bash.bashrc 2020-07-08 11:57:32.000000000 +0200 +++ new/aaa_base-84.87+git20200507.e2243a4/files/etc/bash.bashrc 2020-05-07 14:43:18.000000000 +0200 @@ -89,11 +89,7 @@ test -z "$UID" && readonly UID=`path id -ur 2> /dev/null` test -z "$EUID" && readonly EUID=`path id -u 2> /dev/null` -if test -s /etc/profile.d/ls.bash -then . /etc/profile.d/ls.bash -elif test -s /usr/etc/profile.d/ls.bash -then . /usr/etc/profile.d/ls.bash -fi +test -s /etc/profile.d/ls.bash && . /etc/profile.d/ls.bash # # Avoid trouble with Emacs shell mode @@ -286,17 +282,9 @@ # therefore we use functions here. This is a seperate # file because other shells may run into trouble # if they parse this even if they do not expand. - if test -s /etc/profile.d/alias.ash - then . /etc/profile.d/alias.ash - elif test -s /usr/etc/profile.d/alias.ash - then . /usr/etc/profile.d/alias.ash - fi + test -s /etc/profile.d/alias.ash && . /etc/profile.d/alias.ash else - if test -s /etc/profile.d/alias.bash - then . /etc/profile.d/alias.bash - elif -s /usr/etc/profile.d/alias.bash - then . /usr/etc/profile.d/alias.bash - fi + test -s /etc/profile.d/alias.bash && . /etc/profile.d/alias.bash test -s $HOME/.alias && . $HOME/.alias fi @@ -314,30 +302,20 @@ . /etc/bash_completion elif test -s /etc/profile.d/bash_completion.sh ; then . /etc/profile.d/bash_completion.sh - elif test -s /usr/etc/profile.d/bash_completion.sh ; then - . /usr/etc/profile.d/bash_completion.sh elif test -s /etc/profile.d/complete.bash ; then . /etc/profile.d/complete.bash - elif test -s /usr/etc/profile.d/complete.bash ; then - . /usr/etc/profile.d/complete.bash fi # Do not source twice if already handled by bash-completion if [[ -n $BASH_COMPLETION_COMPAT_DIR && $BASH_COMPLETION_COMPAT_DIR != /etc/bash_completion.d ]]; then for s in /etc/bash_completion.d/*.sh ; do test -r $s && . $s done - elif [[ -n $BASH_COMPLETION_COMPAT_DIR && $BASH_COMPLETION_COMPAT_DIR != /usr/etc/bash_completion.d ]]; then - for s in /usr/etc/bash_completion.d/*.sh ; do - test -r $s && . $s - done fi if test -e $HOME/.bash_completion ; then . $HOME/.bash_completion fi - if test -f /etc/bash_command_not_found - then . /etc/bash_command_not_found - elif test -f /usr/etc/bash_command_not_found - then . /usr/etc/bash_command_not_found + if test -f /etc/bash_command_not_found ; then + . /etc/bash_command_not_found fi ;; *) ;; @@ -357,10 +335,8 @@ fi # command not found handler in zsh version if test "$is" = "zsh" ; then - if test -f /etc/zsh_command_not_found - then . /etc/zsh_command_not_found - elif test -f /usr/etc/zsh_command_not_found - then . /usr/etc/zsh_command_not_found + if test -f /etc/zsh_command_not_found ; then + . /etc/zsh_command_not_found fi fi ;; @@ -369,10 +345,8 @@ # Source /etc/profile.d/vte.sh, which improvies usage of VTE based terminals. # It is vte.sh's responsibility to 'not load' when it's not applicable (not inside a VTE term) # If you want to 'disable' this functionality, set the sticky bit on /etc/profile.d/vte.sh -if test -r /etc/profile.d/vte.sh -a ! -k /etc/profile.d/vte.sh -then . /etc/profile.d/vte.sh -elif test -r /usr/etc/profile.d/vte.sh -a ! -k /usr/etc/profile.d/vte.sh -then . /usr/etc/profile.d/vte.sh +if test -r /etc/profile.d/vte.sh -a ! -k /etc/profile.d/vte.sh; then + . /etc/profile.d/vte.sh fi if test "$_is_save" = "unset" ; then diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base-84.87+git20200708.f5e90d7/files/etc/csh.cshrc new/aaa_base-84.87+git20200507.e2243a4/files/etc/csh.cshrc --- old/aaa_base-84.87+git20200708.f5e90d7/files/etc/csh.cshrc 2020-07-08 11:57:32.000000000 +0200 +++ new/aaa_base-84.87+git20200507.e2243a4/files/etc/csh.cshrc 2020-05-07 14:43:18.000000000 +0200 @@ -2,15 +2,15 @@ # (c) System csh.cshrc for tcsh, Werner Fink '93 # and Jörg Stadler '94 # -# This file sources /(usr/)etc/profile.d/complete.tcsh and -# /(usr/)etc/profile.d/bindkey.tcsh used especially by tcsh. +# This file sources /etc/profile.d/complete.tcsh and +# /etc/profile.d/bindkey.tcsh used especially by tcsh. # # PLEASE DO NOT CHANGE /etc/csh.cshrc. There are chances that your changes # will be lost during system upgrades. Instead use /etc/csh.cshrc.local for # your local settings, favourite global aliases, VISUAL and EDITOR # variables, etc ... # USERS may write their own $HOME/.csh.expert to skip sourcing of -# /(usr/)etc/profile.d/complete.tcsh and most parts oft this file. +# /etc/profile.d/complete.tcsh and most parts oft this file. # # @@ -79,13 +79,7 @@ # # Now read in the key bindings of the tcsh # -if ($?tcsh) then - if ( -r /etc/profile.d/bindkey.tcsh ) then - source /etc/profile.d/bindkey.tcsh - else if ( -r /usr/etc/profile.d/bindkey.tcsh ) then - source /usr/etc/profile.d/bindkey.tcsh - endif -endif +if ($?tcsh && -r /etc/profile.d/bindkey.tcsh) source /etc/profile.d/bindkey.tcsh # # Some useful settings @@ -111,15 +105,9 @@ unset autologout unset ignoreeof -foreach _s (ls.tcsh alias.tcsh) - if (-r /etc/profile.d/$_s) then - source /etc/profile.d/$_s - continue - endif - if (-r /usr/etc/profile.d/$_s) source /usr/etc/profile.d/$_s -end -unset _s +if (-r /etc/profile.d/ls.tcsh) source /etc/profile.d/ls.tcsh +if (-r /etc/profile.d/alias.tcsh) source /etc/profile.d/alias.tcsh # # Prompting and Xterm title # @@ -185,12 +173,8 @@ set _rev=${tcsh:r} set _rel=${_rev:e} set _rev=${_rev:r} - if ($_rev > 6 || ($_rev == 6 && $_rel > 1)) then - if (-r /etc/profile.d/complete.tcsh) then - source /etc/profile.d/complete.tcsh - else if (-r /usr/etc/profile.d/complete.tcsh) then - source /usr/etc/profile.d/complete.tcsh - endif + if (($_rev > 6 || ($_rev == 6 && $_rel > 1)) && -r /etc/profile.d/complete.tcsh) then + source /etc/profile.d/complete.tcsh endif # # Enable editing in multibyte encodings for the locales diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base-84.87+git20200708.f5e90d7/files/etc/csh.login new/aaa_base-84.87+git20200507.e2243a4/files/etc/csh.login --- old/aaa_base-84.87+git20200708.f5e90d7/files/etc/csh.login 2020-07-08 11:57:32.000000000 +0200 +++ new/aaa_base-84.87+git20200507.e2243a4/files/etc/csh.login 2020-05-07 14:43:18.000000000 +0200 @@ -233,27 +233,21 @@ # overriding locale variables already present in the environment # if (! ${?CSHRCREAD} ) then - if ( -r /etc/profile.d/csh.ssh ) then - source /etc/profile.d/csh.ssh - else if ( -r /usr/etc/profile.d/csh.ssh ) then - source /usr/etc/profile.d/csh.ssh - endif + if ( -r /etc/profile.d/csh.ssh ) source /etc/profile.d/csh.ssh endif # # Source profile extensions for certain packages, the super # may disable some of them by setting the sticky bit. # -if ((-d /etc/profile.d || -d /usr/etc/profile.d ) && ! ${?CSHRCREAD} ) then +if ( -d /etc/profile.d && ! ${?CSHRCREAD} ) then set _tmp=${?nonomatch} set nonomatch unset noglob - foreach _s ( /usr/etc/profile.d/*.csh ) - if ( -e /etc/profile.d/${_s:t} ) continue - if ( -r $_s && ! -k $_s ) source $_s - end foreach _s ( /etc/profile.d/*.csh ) - if ( -r $_s && ! -k $_s ) source $_s + if ( -r $_s && ! -k $_s ) then + source $_s + endif end set noglob if ( ! ${_tmp} ) unset nonomatch diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base-84.87+git20200708.f5e90d7/files/etc/profile new/aaa_base-84.87+git20200507.e2243a4/files/etc/profile --- old/aaa_base-84.87+git20200708.f5e90d7/files/etc/profile 2020-07-08 11:57:32.000000000 +0200 +++ new/aaa_base-84.87+git20200507.e2243a4/files/etc/profile 2020-05-07 14:43:18.000000000 +0200 @@ -291,22 +291,14 @@ # overriding locale variables already present in the environment # if test -z "$PROFILEREAD" ; then - if test -r /etc/profile.d/sh.ssh - then . /etc/profile.d/sh.ssh - elif test -r /usr/etc/profile.d/sh.ssh - then . /usr/etc/profile.d/sh.ssh - fi + test -r /etc/profile.d/sh.ssh && . /etc/profile.d/sh.ssh fi # # Source profile extensions for certain packages, the super # may disable some of them by setting the sticky bit. # -if test \( -d /etc/profile.d -o -d /usr/etc/profile.d \) -a -z "$PROFILEREAD" ; then - for s in /usr/etc/profile.d/*.sh ; do - test -e /etc/profile.d/${s##*/} && continue - test -r $s -a ! -k $s && . $s - done +if test -d /etc/profile.d -a -z "$PROFILEREAD" ; then for s in /etc/profile.d/*.sh ; do test -r $s -a ! -k $s && . $s done diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base-84.87+git20200708.f5e90d7/files/usr/lib/base-scripts/backup-rpmdb new/aaa_base-84.87+git20200507.e2243a4/files/usr/lib/base-scripts/backup-rpmdb --- old/aaa_base-84.87+git20200708.f5e90d7/files/usr/lib/base-scripts/backup-rpmdb 2020-07-08 11:57:32.000000000 +0200 +++ new/aaa_base-84.87+git20200507.e2243a4/files/usr/lib/base-scripts/backup-rpmdb 2020-05-07 14:43:18.000000000 +0200 @@ -27,9 +27,7 @@ # # PACKAGEDBFILE=packages.rpm -if test -e ${RPMDB_PATH}/Packages.db ; then - PACKAGEDBFILE=Packages.db -elif test -e ${RPMDB_PATH}/Packages ; then +if test -e ${RPMDB_PATH}/Packages ; then PACKAGEDBFILE=Packages fi #
