Hello community,

here is the log from the commit of package moreutils for openSUSE:Factory 
checked in at 2020-10-12 13:58:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/moreutils (Old)
 and      /work/SRC/openSUSE:Factory/.moreutils.new.3486 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "moreutils"

Mon Oct 12 13:58:50 2020 rev:7 rq:840905 version:0.64

Changes:
--------
--- /work/SRC/openSUSE:Factory/moreutils/moreutils.changes      2019-04-19 
18:39:50.147295419 +0200
+++ /work/SRC/openSUSE:Factory/.moreutils.new.3486/moreutils.changes    
2020-10-12 13:59:52.578230147 +0200
@@ -1,0 +2,9 @@
+Sat Oct 10 19:39:04 UTC 2020 - Dirk Mueller <[email protected]>
+
+- update to 0.64:
+  * parallel: fix typo in usage message.
+  * Makefile: Propagate compiler and linker flags when building is_utf8.
+  * ts: Fix parsing of ISO-8601 dates.
+  * parallel: Allow compiling with uClibc-ng, which does not have getloadavg.
+ 
+-------------------------------------------------------------------

Old:
----
  moreutils-0.63.tar.gz

New:
----
  moreutils-0.64.tar.gz

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

Other differences:
------------------
++++++ moreutils.spec ++++++
--- /var/tmp/diff_new_pack.1NPJix/_old  2020-10-12 13:59:53.206230409 +0200
+++ /var/tmp/diff_new_pack.1NPJix/_new  2020-10-12 13:59:53.206230409 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package moreutils
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,12 +17,12 @@
 
 
 Name:           moreutils
-Version:        0.63
+Version:        0.64
 Release:        0
 Summary:        Additional Unix Utilities
-License:        GPL-2.0+ and GPL-2.0 and MIT
+License:        GPL-2.0-or-later AND GPL-2.0-only AND MIT
 Group:          Productivity/File utilities
-Url:            https://joeyh.name/code/moreutils/
+URL:            https://joeyh.name/code/moreutils/
 Source:         
https://git.joeyh.name/index.cgi/moreutils.git/snapshot/%{name}-%{version}.tar.gz
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  libxslt

++++++ moreutils-0.63.tar.gz -> moreutils-0.64.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/moreutils-0.63/debian/changelog 
new/moreutils-0.64/debian/changelog
--- old/moreutils-0.63/debian/changelog 2019-01-09 16:14:34.000000000 +0100
+++ new/moreutils-0.64/debian/changelog 2020-08-29 19:59:47.000000000 +0200
@@ -1,3 +1,14 @@
+moreutils (0.64) unstable; urgency=medium
+
+  * parallel: fix typo in usage message.
+  * Makefile: Propagate compiler and linker flags when building is_utf8.
+  * ts: Fix parsing of ISO-8601 dates.
+    Thanks, David Laban.
+  * parallel: Allow compiling with uClibc-ng, which does not have getloadavg.
+    Thanks, Rosen Penev
+
+ -- Joey Hess <[email protected]>  Thu, 20 Aug 2020 13:05:19 -0400
+
 moreutils (0.63) unstable; urgency=medium
 
   * vipe: Clean up temp file even when it exits with an error.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/moreutils-0.63/is_utf8/Makefile 
new/moreutils-0.64/is_utf8/Makefile
--- old/moreutils-0.63/is_utf8/Makefile 2019-01-09 16:14:34.000000000 +0100
+++ new/moreutils-0.64/is_utf8/Makefile 2020-08-29 19:59:47.000000000 +0200
@@ -38,13 +38,13 @@
 REALNAME = $(SONAME).$(MINOR).$(RELEASE)
 
 CC = gcc
-CFLAGS = -O3 -Wextra -Wall -ansi -Wstrict-prototypes
+CFLAGS ?= -O3 -Wextra -Wall -ansi -Wstrict-prototypes
 
 $(NAME): $(OBJ)
-       $(CC) $(CFLAGS) -o $(NAME) $(OBJ)
+       $(CC) $(CFLAGS) -o $(NAME) $(OBJ) $(LDFLAGS)
 
 IS_UTF8_LIB:
-       $(CC) --shared -fPIC $(CFLAGS) $(LIB_SRC) -o $(LINKERNAME)
+       $(CC) --shared -fPIC $(CFLAGS) $(LDFLAGS) $(LIB_SRC) -o $(LINKERNAME)
 
 all:
                @make $(NAME)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/moreutils-0.63/parallel.c 
new/moreutils-0.64/parallel.c
--- old/moreutils-0.63/parallel.c       2019-01-09 16:14:34.000000000 +0100
+++ new/moreutils-0.64/parallel.c       2020-08-29 19:59:47.000000000 +0200
@@ -241,7 +241,7 @@
        return pipe_child(fds[0], orig_fd);
 }
 
-#if defined(__CYGWIN__)
+#if defined(__CYGWIN__) || defined(__UCLIBC__)
 int getloadavg(double loadavg[], int nelem) {
        int fd, n, elem;
        char buf[128];
@@ -328,7 +328,7 @@
        }
        
        if (replace_cb && argsatonce > 1) {
-               fprintf(stderr, "options -i and -n are incomaptible\n");
+               fprintf(stderr, "options -i and -n are incompatible\n");
                exit(2);
        }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/moreutils-0.63/ts new/moreutils-0.64/ts
--- old/moreutils-0.63/ts       2019-01-09 16:14:34.000000000 +0100
+++ new/moreutils-0.64/ts       2020-08-29 19:59:47.000000000 +0200
@@ -170,7 +170,7 @@
                        |
                        \w{3}\s+\d{1,2}\s+\d\d:\d\d:\d\d # syslog form
                        |
-                       \d\d\d[-:]\d\d[-:]\d\dT\d\d:\d\d:\d\d.\d+ # ISO-8601
+                       \d\d\d\d[-:]\d\d[-:]\d\dT\d\d:\d\d:\d\d.\d+Z? # ISO-8601
                        |
                        (?:\w\w\w,?\s+)?        #       (optional Day)
                        \d+\s+\w\w\w\s+\d\d+\s+\d\d:\d\d:\d\d


Reply via email to