Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package logrotate for openSUSE:Factory 
checked in at 2021-10-26 20:13:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/logrotate (Old)
 and      /work/SRC/openSUSE:Factory/.logrotate.new.1890 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "logrotate"

Tue Oct 26 20:13:26 2021 rev:69 rq:927022 version:3.18.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/logrotate/logrotate.changes      2021-06-01 
10:33:48.140439232 +0200
+++ /work/SRC/openSUSE:Factory/.logrotate.new.1890/logrotate.changes    
2021-10-26 20:13:27.998002606 +0200
@@ -1,0 +2,6 @@
+Tue Oct 19 11:36:39 UTC 2021 - Manfred Hollstein <manfre...@gmx.net>
+
+- Add patch:
+  * logrotate-dont_warn_on_size=_syntax.patch (boo#1191816)
+
+-------------------------------------------------------------------

New:
----
  logrotate-dont_warn_on_size=_syntax.patch

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

Other differences:
------------------
++++++ logrotate.spec ++++++
--- /var/tmp/diff_new_pack.eat4YF/_old  2021-10-26 20:13:29.226003256 +0200
+++ /var/tmp/diff_new_pack.eat4YF/_new  2021-10-26 20:13:29.226003256 +0200
@@ -30,6 +30,7 @@
 Source10:       
https://github.com/%{name}/%{name}/releases/download/%{version}/%{name}-%{version}.tar.xz.asc
 Source100:      %{name}-rpmlintrc
 Patch0:         logrotate-3.13.0-systemd_add_home_env.patch
+Patch1:         logrotate-dont_warn_on_size=_syntax.patch
 BuildRequires:  acl
 BuildRequires:  libacl-devel
 BuildRequires:  pkgconfig
@@ -50,6 +51,7 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 
 %build
 %configure \


++++++ logrotate-dont_warn_on_size=_syntax.patch ++++++
commit a98c38bc867ec59e00625b48262bb3334c8f5728
Author: Christian G??ttsche <cgzo...@googlemail.com>
Date:   Mon Jul 26 19:35:00 2021 +0200

    Do not warn on key value pair separated by only an equal sign
    
    Do not warn if a configuration directive is specified with the key and
    value separated by just an equal sign, like:
    
        size=+2048k
    
    The warning is intended for the usage of:
    
        size2048k
    
    Fixes: 2b588b5e ("Log if keyword is not properly separated")
    Fixes: #410

--- a/config.c  2021-10-19 14:09:18.320365539 +0200
+++ b/config.c  2021-10-19 13:52:39.810800011 +0200
@@ -1109,7 +1109,7 @@ static int readConfigFile(const char *co
                                 configFile, lineNum);
                         continue;
                     }
-                    if (!isspace((unsigned char)*start)) {
+                    if (!isspace((unsigned char)*start) && *start != '=') {
                         message(MESS_NORMAL, "%s:%d keyword '%s' not properly"
                                 " separated, found %#x\n",
                                 configFile, lineNum, key, *start);

Reply via email to