Hello community,

here is the log from the commit of package aaa_base for openSUSE:Leap:15.2 
checked in at 2020-03-20 05:52:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/aaa_base (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.aaa_base.new.3160 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "aaa_base"

Fri Mar 20 05:52:39 2020 rev:50 rq:784224 version:84.87+git20180409.04c9dae

Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/aaa_base/aaa_base.changes      2020-02-16 
18:25:33.314631140 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.aaa_base.new.3160/aaa_base.changes    
2020-03-20 05:52:49.968060541 +0100
@@ -1,0 +2,18 @@
+Tue Mar  3 13:42:34 CET 2020 - [email protected]
+
+- Add patch git-16-ed897a1090cafb678f75dbed8802bd671d3c1921.patch
+  get_kernel_version: fix for current kernel on s390x (from azouhr)
+  (bsc#1151023) (bsc#1139939)
+- Add patch git-17-fe967bddbd74af9aba435900878397c0c7ea0b0b.patch 
+  added "-h"/"--help" to "old" command (from Bernhard Lang)
+- Add patch git-18-bb11f02d5dd940803c08d25b0cfd3650d9de7d41.patch
+  change feedback url from http://www.suse.de/feedback to
+  https://github.com/openSUSE/aaa_base/issues
+
+-------------------------------------------------------------------
+Fri Feb  7 15:30:22 CET 2020 - [email protected]
+
+- Add patch git-15-27e2c6180a45cca63d71ffa5de7b32dec749d2cd.patch
+  change rp_filter to 2 to follow the current default (bsc#1160735)
+
+-------------------------------------------------------------------

New:
----
  git-15-27e2c6180a45cca63d71ffa5de7b32dec749d2cd.patch
  git-16-ed897a1090cafb678f75dbed8802bd671d3c1921.patch
  git-17-fe967bddbd74af9aba435900878397c0c7ea0b0b.patch
  git-18-bb11f02d5dd940803c08d25b0cfd3650d9de7d41.patch

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

Other differences:
------------------
++++++ aaa_base.spec ++++++
--- /var/tmp/diff_new_pack.6oKJuR/_old  2020-03-20 05:52:50.928061181 +0100
+++ /var/tmp/diff_new_pack.6oKJuR/_new  2020-03-20 05:52:50.928061181 +0100
@@ -76,6 +76,10 @@
 Patch12:        git-12-80d14205f913cc67a98c562f988ea700a56c369b.patch
 Patch13:        git-13-14003c19eaa863ae9d80a0ebb9b5cab6273a5a9e.patch
 Patch14:        git-14-12023f2e8aae5b2ac3a895301945566b9f5eb9c3.patch
+Patch15:        git-15-27e2c6180a45cca63d71ffa5de7b32dec749d2cd.patch
+Patch16:        git-16-ed897a1090cafb678f75dbed8802bd671d3c1921.patch
+Patch17:        git-17-fe967bddbd74af9aba435900878397c0c7ea0b0b.patch
+Patch18:        git-18-bb11f02d5dd940803c08d25b0cfd3650d9de7d41.patch
 
 %description
 This package installs several important configuration files and central 
scripts.
@@ -128,6 +132,10 @@
 %patch12 -p1
 %patch13 -p1
 %patch14 -p1
+%patch15 -p1
+%patch16 -p1
+%patch17 -p1
+%patch18 -p1
 
 %build
 make CFLAGS="$RPM_OPT_FLAGS" CC="%{__cc}" %{?_smp_mflags}

++++++ git-15-27e2c6180a45cca63d71ffa5de7b32dec749d2cd.patch ++++++
commit 27e2c6180a45cca63d71ffa5de7b32dec749d2cd
Author: Ruediger Oertel <[email protected]>
Date:   Fri Feb 7 15:14:37 2020 +0100

    change rp_filter to 2 to follow the current default (bsc#1160735)

diff --git a/files/usr/lib/sysctl.d/50-default.conf 
b/files/usr/lib/sysctl.d/50-default.conf
index 1527edb..4e931ec 100644
--- a/files/usr/lib/sysctl.d/50-default.conf
+++ b/files/usr/lib/sysctl.d/50-default.conf
@@ -6,7 +6,7 @@
 net.ipv4.icmp_echo_ignore_broadcasts = 1
 
 # enable route verification on all interfaces
-net.ipv4.conf.all.rp_filter = 1
+net.ipv4.conf.all.rp_filter = 2
 
 # avoid deleting secondary IPs on deleting the primary IP
 net.ipv4.conf.default.promote_secondaries = 1
++++++ git-16-ed897a1090cafb678f75dbed8802bd671d3c1921.patch ++++++
commit ed897a1090cafb678f75dbed8802bd671d3c1921
Author: Ruediger Oertel <[email protected]>
Date:   Thu Feb 6 11:20:51 2020 +0100

    get_kernel_version: fix for current kernel on s390x (from azouhr)
    
    keep on searching if only the string "version:" is found but the
    next char is a null.

diff --git a/get_kernel_version.c b/get_kernel_version.c
index 569b67c..236b749 100644
--- a/get_kernel_version.c
+++ b/get_kernel_version.c
@@ -99,7 +99,9 @@ main (int argc, char *argv[])
            buffer[i+6] == 'v' && buffer[i+7] == 'e' &&
            buffer[i+8] == 'r' && buffer[i+9] == 's' &&
            buffer[i+10] == 'i' && buffer[i+11] == 'o' &&
-           buffer[i+12] == 'n' && buffer[i+13] == ' ')
+           buffer[i+12] == 'n' && buffer[i+13] == ' ' &&
+           /* current s390 images have that string without version: */
+           buffer[i+14] != 0)
           {
            int j = i+14;
            int number_dots = 0;
++++++ git-17-fe967bddbd74af9aba435900878397c0c7ea0b0b.patch ++++++
commit fe967bddbd74af9aba435900878397c0c7ea0b0b
Author: Ruediger Oertel <[email protected]>
Date:   Mon Feb 24 11:00:39 2020 +0100

    added "-h"/"--help" to "old" command (from Bernhard Lang)

diff --git a/files/usr/bin/old b/files/usr/bin/old
index ef2e2b7..5c55aa4 100755
--- a/files/usr/bin/old
+++ b/files/usr/bin/old
@@ -5,22 +5,33 @@
 #
 # Copyright (c) 1996-2002 SuSE Linux AG, Nuernberg, Germany.
 #
-# please send bugfixes or comments to http://www.suse.de/feedback.
+# Contributor Bernard Lang
 #
+# please send bugfixes or comments to
+# https://github.com/openSUSE/aaa_base/issues
 #
 # usage - tell user to use program
 #
+# Trick : put a nonexistant file name as first argument if you are worried
+# about the possibility of files called -h or --help
+#
 
 usage() {
     echo usage: "$0" file\|dir [file\|dir ...]
 }
 
-
 if [ $# -eq 0 ] ; then
     usage
     exit
 fi
 
+if [ "$1" = "-h" -o "$1" = "--help" ] ; then
+    echo 'Renames file or directory <name> given in argument list to 
<name>-<date>[<num>]'
+    echo 'adding when necessary a suffix number <num> to avoid already used 
names.'
+    usage
+    exit
+fi
+
 DATESTRING=`date +"%Y%m%d"`
 
 for i in "$@" ; do
@@ -33,6 +44,10 @@ for i in "$@" ; do
             let NUMBER=$NUMBER+1
         done
         echo moving "$i" to "$NEWNAME"
+       if [ "${i:0:1}" = "-" ] ; then
+           i="./$i"
+           NEWNAME="./$NEWNAME"
+       fi
         mv "$i" "$NEWNAME"
     else
         echo "$i" does not exist.
++++++ git-18-bb11f02d5dd940803c08d25b0cfd3650d9de7d41.patch ++++++
commit bb11f02d5dd940803c08d25b0cfd3650d9de7d41
Author: Ruediger Oertel <[email protected]>
Date:   Mon Feb 24 11:03:43 2020 +0100

    change feedback url from http://www.suse.de/feedback to
    
    https://github.com/openSUSE/aaa_base/issues

diff --git a/files/etc/inputrc b/files/etc/inputrc
index 74ebb48..df9a2a1 100644
--- a/files/etc/inputrc
+++ b/files/etc/inputrc
@@ -6,7 +6,7 @@
 ## Copyright: 2007 SuSE  LINUX Products GmbH, Nuernberg, Germany.
 ##
 ## Author: Werner Fink
-## Please send feedback to http://www.suse.de/feedback
+## Please send feedback to https://github.com/openSUSE/aaa_base/issues
 ##
 
################################################################################
 #
diff --git a/files/etc/inputrc.keys b/files/etc/inputrc.keys
index 6dee148..93067f8 100644
--- a/files/etc/inputrc.keys
+++ b/files/etc/inputrc.keys
@@ -4,7 +4,7 @@
 ## Copyright: 2017 SUSE Linux GmbH, Nürnberg, Germany.
 ##
 ## Author: Werner Fink
-## Please send feedback to http://www.suse.de/feedback
+## Please send feedback to https://github.com/openSUSE/aaa_base/issues
 ##
 
################################################################################
 #
diff --git a/files/usr/share/man/man5/defaultdomain.5 
b/files/usr/share/man/man5/defaultdomain.5
index 6a902a7..724e06b 100644
--- a/files/usr/share/man/man5/defaultdomain.5
+++ b/files/usr/share/man/man5/defaultdomain.5
@@ -1,6 +1,7 @@
 .\" Copyright (c) 2002 SuSE Linux AG Nuernberg, Germany.
 .\"
-.\" Author: Thorsten Kukuk (http://www.suse.de/feedback)
+.\" Author: Thorsten Kukuk
+.\"     (https://github.com/openSUSE/aaa_base/issues)
 .\"
 .\" This is free documentation; you can redistribute it and/or
 .\" modify it under the terms of the GNU General Public License

Reply via email to