Hello community,

here is the log from the commit of package health-check for openSUSE:Factory 
checked in at 2017-10-30 21:18:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/health-check (Old)
 and      /work/SRC/openSUSE:Factory/.health-check.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "health-check"

Mon Oct 30 21:18:54 2017 rev:3 rq:537435 version:0.02.08

Changes:
--------
--- /work/SRC/openSUSE:Factory/health-check/health-check.changes        
2017-06-01 16:31:49.194861213 +0200
+++ /work/SRC/openSUSE:Factory/.health-check.new/health-check.changes   
2017-10-30 21:19:03.449947876 +0100
@@ -1,0 +2,6 @@
+Fri Oct 20 13:39:47 UTC 2017 - [email protected]
+
+- update to version 0.02.08
+  * Update to Standards-Version: 4.1.1
+
+-------------------------------------------------------------------

Old:
----
  health-check-0.02.06.tar.gz

New:
----
  health-check-0.02.08.tar.gz

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

Other differences:
------------------
++++++ health-check.spec ++++++
--- /var/tmp/diff_new_pack.UspLQF/_old  2017-10-30 21:19:04.153922280 +0100
+++ /var/tmp/diff_new_pack.UspLQF/_new  2017-10-30 21:19:04.165921844 +0100
@@ -18,7 +18,7 @@
 
 
 Name:           health-check
-Version:        0.02.06
+Version:        0.02.08
 Release:        0
 Summary:        Process monitoring tool
 License:        GPL-2.0+

++++++ health-check-0.02.06.tar.gz -> health-check-0.02.08.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/health-check-0.02.06/Makefile 
new/health-check-0.02.08/Makefile
--- old/health-check-0.02.06/Makefile   2017-04-15 09:32:55.000000000 +0200
+++ new/health-check-0.02.08/Makefile   2017-10-19 19:25:49.000000000 +0200
@@ -15,7 +15,7 @@
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 
USA.
 #
-VERSION=0.02.06
+VERSION=0.02.08
 #
 # Codename "Where have all my cycles gone?"
 #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/health-check-0.02.06/health-check.8 
new/health-check-0.02.08/health-check.8
--- old/health-check-0.02.06/health-check.8     2017-04-15 09:32:55.000000000 
+0200
+++ new/health-check-0.02.08/health-check.8     2017-10-19 19:25:49.000000000 
+0200
@@ -2,7 +2,7 @@
 .\" First parameter, NAME, should be all caps
 .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
 .\" other parameters are allowed: see man(7), man(1)
-.TH HEALTH-CHECK 8 "April 15, 2017"
+.TH HEALTH-CHECK 8 "May 24, 2017"
 .\" Please adjust this date whenever revising the manpage.
 .\"
 .\" Some roff macros, for reference:
@@ -22,7 +22,6 @@
 .SH SYNOPSIS
 .B health-check
 .RI [options]
-.RI [ command \ [ options ]]
 .br
 
 .SH DESCRIPTION
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/health-check-0.02.06/health-check.h 
new/health-check-0.02.08/health-check.h
--- old/health-check-0.02.06/health-check.h     2017-04-15 09:32:55.000000000 
+0200
+++ new/health-check-0.02.08/health-check.h     2017-10-19 19:25:49.000000000 
+0200
@@ -38,6 +38,21 @@
 #define FLOAT_TINY                     (0.0000001)
 #define FLOAT_CMP(a, b)                        (fabs((a) - (b)) < FLOAT_TINY)
 
+#define _VER_(major, minor, patchlevel)        \
+       ((major * 10000) + (minor * 100) + patchlevel)
+
+#if defined(__GNUC__) && defined(__GNUC_MINOR__)
+#if defined(__GNUC_PATCHLEVEL__)
+#define NEED_GNUC(major, minor, patchlevel)                     \
+       _VER_(major, minor, patchlevel) <= _VER_(__GNUC__, __GNUC_MINOR__, 
__GNUC_PATCHLEVEL__)
+#else
+#define NEED_GNUC(major, minor, patchlevel)                     \
+       _VER_(major, minor, patchlevel) <= _VER_(__GNUC__, __GNUC_MINOR__, 0)
+#endif
+#else
+#define NEED_GNUC(major, minor, patchlevel)     (0)
+#endif
+
 extern void health_check_exit(const int status) __attribute__ ((noreturn));
 extern void health_check_out_of_memory(const char *msg);
 extern int pid_max_digits(void);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/health-check-0.02.06/syscall.c 
new/health-check-0.02.08/syscall.c
--- old/health-check-0.02.06/syscall.c  2017-04-15 09:32:55.000000000 +0200
+++ new/health-check-0.02.08/syscall.c  2017-10-19 19:25:49.000000000 +0200
@@ -2469,6 +2469,9 @@
                        return;
                }
                /* assume it is a return, but it may not be, fall through to 
SYSCALL_RETURN.. */
+#if NEED_GNUC(7, 0, 0)
+               __attribute__((fallthrough));
+#endif
 
        case SYSCALL_RETURN:
                if (ctxt->syscall_info != NULL) {


Reply via email to