Hello community,

here is the log from the commit of package mcelog for openSUSE:Factory checked 
in at 2017-07-28 09:43:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/mcelog (Old)
 and      /work/SRC/openSUSE:Factory/.mcelog.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "mcelog"

Fri Jul 28 09:43:04 2017 rev:46 rq:512296 version:1.53

Changes:
--------
--- /work/SRC/openSUSE:Factory/mcelog/mcelog.changes    2017-04-07 
13:52:12.500787082 +0200
+++ /work/SRC/openSUSE:Factory/.mcelog.new/mcelog.changes       2017-07-28 
09:43:41.157702839 +0200
@@ -1,0 +2,15 @@
+Fri Jul 07 13:59:28 UTC 2017 - [email protected]
+
+- Update to version 1.53:
+  * Add service file
+  * dmi: Handle NULL DMI string
+  * Compress some fields in mempage.
+  * Add coverity fixes
+  * Fix typo in man page
+  * mcelog: Check whether we successfully changed directory for trigger.
+  * mcelog version: Add ability for OS to define version
+  * Document .os_release in README
+  * Set SO_PASSCRED on listen sockets
+  * memutil.h: add missing include for va_list
+
+-------------------------------------------------------------------

Old:
----
  mcelog-1.48.tar.gz

New:
----
  _service
  _servicedata
  mcelog-1.53.tar.xz

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

Other differences:
------------------
++++++ mcelog.spec ++++++
--- /var/tmp/diff_new_pack.rKzk3y/_old  2017-07-28 09:43:42.773475266 +0200
+++ /var/tmp/diff_new_pack.rKzk3y/_new  2017-07-28 09:43:42.777474703 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package mcelog
 #
-# Copyright (c) 2017 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,13 @@
 
 
 Name:           mcelog
-Version:        1.48
+Version:        1.53
 Release:        0
 Summary:        Log Machine Check Events
 License:        GPL-2.0
 Group:          System/Monitoring
 Url:            http://www.mcelog.org/
-Source:         
https://github.com/andikleen/mcelog/archive/v148.tar.gz#/%{name}-%{version}.tar.gz
+Source:         %{name}-%{version}.tar.xz
 Source2:        mcelog.sysconfig
 Source3:        mcelog.systemd
 Source5:        mcelog.tmpfiles
@@ -58,7 +58,7 @@
 In addition, it allows decoding machine check kernel panic messages.
 
 %prep
-%setup -q -n %{name}-148
+%setup -q
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1

++++++ _service ++++++
<services>
  <service name="tar_scm" mode="disabled">
    <param name="scm">git</param>
    <param name="url">https://github.com/andikleen/mcelog</param>
    <param name="subdir"></param>
    <param name="filename">mcelog</param>
    <param name="versionformat">1.53</param>
    <param name="changesgenerate">enable</param>
    <param name="revision">refs/tags/v153</param>
  </service>
  <service name="recompress" mode="disabled">
    <param name="file">mcelog*.tar</param>
    <param name="compression">xz</param>
  </service>
  <service name="set_version" mode="disabled"/>
</services>
++++++ _servicedata ++++++
<servicedata>
<service name="tar_scm">
                <param name="url">https://github.com/andikleen/mcelog</param>
              <param 
name="changesrevision">524ed1cd16de5adcb4a5015777d3dfc63afda1fe</param></service></servicedata>++++++
 email.patch ++++++
--- /var/tmp/diff_new_pack.rKzk3y/_old  2017-07-28 09:43:42.913455550 +0200
+++ /var/tmp/diff_new_pack.rKzk3y/_new  2017-07-28 09:43:42.913455550 +0200
@@ -7,10 +7,10 @@
  msg.c    |    8 ++
  6 files changed, 343 insertions(+), 2 deletions(-)
 
-Index: mcelog-1.46/Makefile
+Index: mcelog-1.53/Makefile
 ===================================================================
---- mcelog-1.46.orig/Makefile
-+++ mcelog-1.46/Makefile
+--- mcelog-1.53.orig/Makefile
++++ mcelog-1.53/Makefile
 @@ -1,3 +1,4 @@
 +CONFIG_EMAIL := 1
  CFLAGS := -g -Os
@@ -49,11 +49,11 @@
 +      $(CC) -c $(CFLAGS) $(CPPFLAGS) $(WARNINGS) $(ADD_DEFINES) $< -o $@
  
  version.tmp: FORCE
-       ( echo -n "char version[] = \"" ;       \
-Index: mcelog-1.46/email.c
+       ( printf "char version[] = \"" ;                        \
+Index: mcelog-1.53/email.c
 ===================================================================
 --- /dev/null
-+++ mcelog-1.46/email.c
++++ mcelog-1.53/email.c
 @@ -0,0 +1,200 @@
 +#include <unistd.h>
 +#include <signal.h>
@@ -255,10 +255,10 @@
 +      smtp_destroy_session (session);
 +      return 0;
 +}
-Index: mcelog-1.46/email.h
+Index: mcelog-1.53/email.h
 ===================================================================
 --- /dev/null
-+++ mcelog-1.46/email.h
++++ mcelog-1.53/email.h
 @@ -0,0 +1,34 @@
 +#ifndef _MCELOG_EMAIL_H_
 +#define _MCELOG_EMAIL_H_
@@ -294,10 +294,10 @@
 +#endif
 +
 +#endif
-Index: mcelog-1.46/mcelog.c
+Index: mcelog-1.53/mcelog.c
 ===================================================================
---- mcelog-1.46.orig/mcelog.c
-+++ mcelog-1.46/mcelog.c
+--- mcelog-1.53.orig/mcelog.c
++++ mcelog-1.53/mcelog.c
 @@ -37,6 +37,7 @@
  #include <assert.h>
  #include <signal.h>
@@ -325,7 +325,7 @@
  static char *inputfile;
  char *processor_flags;
  static int foreground;
-@@ -980,6 +984,7 @@ void usage(void)
+@@ -983,6 +987,7 @@ void usage(void)
  "--no-imc-log      Disable extended iMC logging\n"
  "--is-cpu-supported  Exit with return code indicating whether the CPU is 
supported\n"
                );
@@ -333,7 +333,7 @@
        printf("\n");
        print_cputypes();
        exit(1);
-@@ -1048,6 +1053,7 @@ static struct option options[] = {
+@@ -1051,6 +1056,7 @@ static struct option options[] = {
        { "debug-numerrors", 0, NULL, O_DEBUG_NUMERRORS }, /* undocumented: for 
testing */
        { "no-imc-log", 0, NULL, O_NO_IMC_LOG },
        { "is-cpu-supported", 0, NULL, O_IS_CPU_SUPPORTED },
@@ -341,7 +341,7 @@
        {}
  };
  
-@@ -1226,11 +1232,86 @@ static void drop_cred(void)
+@@ -1229,11 +1235,86 @@ static void drop_cred(void)
        }
  }
  
@@ -428,7 +428,7 @@
  
        if (recordlen == 0) {
                Wprintf("no data in mce record\n");
-@@ -1257,12 +1338,16 @@ static void process(int fd, unsigned rec
+@@ -1260,12 +1341,16 @@ static void process(int fd, unsigned rec
                        finish = 1;
                if (!mce_filter(mce, recordlen)) 
                        continue;
@@ -445,7 +445,7 @@
                flushlog();
        }
  
-@@ -1371,6 +1456,8 @@ int main(int ac, char **av)
+@@ -1374,6 +1459,8 @@ int main(int ac, char **av)
                        noargs(ac, av);
                        fprintf(stderr, "mcelog %s\n", MCELOG_VERSION);
                        exit(0);
@@ -454,7 +454,7 @@
                } else if (opt == 0)
                        break;              
        } 
-@@ -1403,6 +1490,10 @@ int main(int ac, char **av)
+@@ -1406,6 +1493,10 @@ int main(int ac, char **av)
                logfn = av[optind++];
        if (av[optind])
                usage();
@@ -465,11 +465,11 @@
        checkdmi();
        general_setup();
                
-Index: mcelog-1.46/mcelog.h
+Index: mcelog-1.53/mcelog.h
 ===================================================================
---- mcelog-1.46.orig/mcelog.h
-+++ mcelog-1.46/mcelog.h
-@@ -138,6 +138,7 @@ enum cputype {
+--- mcelog-1.53.orig/mcelog.h
++++ mcelog-1.53/mcelog.h
+@@ -141,6 +141,7 @@ enum cputype {
  enum option_ranges {
        O_COMMON = 500,
        O_DISKDB = 1000,
@@ -477,10 +477,10 @@
  };
  
  enum syslog_opt { 
-Index: mcelog-1.46/msg.c
+Index: mcelog-1.53/msg.c
 ===================================================================
---- mcelog-1.46.orig/msg.c
-+++ mcelog-1.46/msg.c
+--- mcelog-1.53.orig/msg.c
++++ mcelog-1.53/msg.c
 @@ -8,10 +8,13 @@
  #include "mcelog.h"
  #include "msg.h"


Reply via email to