Hello community,

here is the log from the commit of package catatonit for openSUSE:Factory 
checked in at 2018-04-22 14:33:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/catatonit (Old)
 and      /work/SRC/openSUSE:Factory/.catatonit.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "catatonit"

Sun Apr 22 14:33:34 2018 rev:4 rq:597941 version:0.1.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/catatonit/catatonit.changes      2018-04-10 
09:52:54.415298743 +0200
+++ /work/SRC/openSUSE:Factory/.catatonit.new/catatonit.changes 2018-04-22 
14:33:46.185712802 +0200
@@ -1,0 +2,6 @@
+Wed Apr 18 13:06:13 UTC 2018 - [email protected]
+
+- Update to catatonit v0.1.3, which includes a fix for docker compatiblity so
+  that dockerd doesn't give spurrious warnings.
+
+-------------------------------------------------------------------

Old:
----
  catatonit-0.1.2.tar.xz
  catatonit-0.1.2.tar.xz.asc

New:
----
  catatonit-0.1.3.tar.xz
  catatonit-0.1.3.tar.xz.asc

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

Other differences:
------------------
++++++ catatonit.spec ++++++
--- /var/tmp/diff_new_pack.93MdRg/_old  2018-04-22 14:33:46.749692391 +0200
+++ /var/tmp/diff_new_pack.93MdRg/_new  2018-04-22 14:33:46.749692391 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           catatonit
-Version:        0.1.2
+Version:        0.1.3
 Release:        0
 Summary:        A signal-forwarding process manager for containers
 License:        GPL-3.0-or-later

++++++ _service ++++++
--- /var/tmp/diff_new_pack.93MdRg/_old  2018-04-22 14:33:46.781691233 +0200
+++ /var/tmp/diff_new_pack.93MdRg/_new  2018-04-22 14:33:46.781691233 +0200
@@ -2,14 +2,14 @@
   <service name="download_url" mode="disabled">
     <param name="protocol">https</param>
        <param name="host">github.com</param>
-       <param 
name="path">openSUSE/catatonit/releases/download/v0.1.2/catatonit.tar.xz</param>
-       <param name="filename">catatonit-0.1.2.tar.xz</param>
+       <param 
name="path">openSUSE/catatonit/releases/download/v0.1.3/catatonit.tar.xz</param>
+       <param name="filename">catatonit-0.1.3.tar.xz</param>
   </service>
   <service name="download_url" mode="disabled">
     <param name="protocol">https</param>
        <param name="host">github.com</param>
-       <param 
name="path">openSUSE/catatonit/releases/download/v0.1.2/catatonit.tar.xz.asc</param>
-       <param name="filename">catatonit-0.1.2.tar.xz.asc</param>
+       <param 
name="path">openSUSE/catatonit/releases/download/v0.1.3/catatonit.tar.xz.asc</param>
+       <param name="filename">catatonit-0.1.3.tar.xz.asc</param>
   </service>
   <service name="set_version" mode="disabled">
     <param name="basename">catatonit</param>

++++++ catatonit-0.1.2.tar.xz -> catatonit-0.1.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/catatonit-0.1.2/catatonit.c 
new/catatonit-0.1.3/catatonit.c
--- old/catatonit-0.1.2/catatonit.c     2018-03-29 11:17:55.000000000 +0200
+++ new/catatonit-0.1.3/catatonit.c     2018-04-18 14:51:12.000000000 +0200
@@ -23,7 +23,9 @@
 #include <stdarg.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <stdbool.h>
 #include <unistd.h>
+#include <getopt.h>
 #include <sys/prctl.h>
 #include <sys/signalfd.h>
 #include <sys/stat.h>
@@ -89,9 +91,9 @@
        usage();
        fprintf(stderr, "\n");
        fprintf(stderr, "options:\n");
-       fprintf(stderr, "  -h   Print this help page.\n");
-       fprintf(stderr, "  -L   Print license information.\n");
-       fprintf(stderr, "  -V   Print version information.\n");
+       fprintf(stderr, "  -h              Print this help page.\n");
+       fprintf(stderr, "  -L              Print license information.\n");
+       fprintf(stderr, "  -V, --version   Print version information.\n");
        fprintf(stderr, "\n");
        fprintf(stderr, "The source code can be found at <%s>.\n", PROGRAM_URL);
        fprintf(stderr, "For bug reporting instructions, please see: <%s>.\n", 
PROGRAM_BUGURL);
@@ -99,12 +101,12 @@
 
 static void version(void)
 {
-       fprintf(stderr, "%s version %s\n", PROGRAM_NAME, PROGRAM_VERSION);
+       fprintf(stdout, "tini version %s_%s\n", PROGRAM_VERSION, PROGRAM_NAME);
 }
 
 static void license(void)
 {
-       fprintf(stderr, "%s", PROGRAM_LICENSE);
+       fprintf(stdout, "%s", PROGRAM_LICENSE);
 }
 
 #define LOG(level, ...) \
@@ -277,7 +279,11 @@
         * first *pid1* argv argument rather than our own.
         */
        int opt;
-       while ((opt = getopt(argc, argv, "hLV")) != -1) {
+       const struct option longopts[] = {
+               {name: "version", has_arg: no_argument, flag: NULL, val: 'V'},
+               {},
+       };
+       while ((opt = getopt_long(argc, argv, "hLV", longopts, NULL)) != -1) {
                switch (opt) {
                case 'L':
                        license();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/catatonit-0.1.2/configure.ac 
new/catatonit-0.1.3/configure.ac
--- old/catatonit-0.1.2/configure.ac    2018-03-29 11:17:55.000000000 +0200
+++ new/catatonit-0.1.3/configure.ac    2018-04-18 14:51:12.000000000 +0200
@@ -15,7 +15,7 @@
 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 AC_PREREQ([2.69])
-AC_INIT([catatonit], [0.1.2], [https://bugs.opensuse.org/], [], 
[https://github.com/openSUSE/catatonit/])
+AC_INIT([catatonit], [0.1.3], [https://bugs.opensuse.org/], [], 
[https://github.com/openSUSE/catatonit/])
 AM_INIT_AUTOMAKE([-Wall foreign])
 
 LT_PREREQ([2.4.2])


Reply via email to