On 4/27/2022 7:20 PM, Brian Callahan wrote:
> Hi ports --
> 
> Attached is an update to the GNU coreutils.
> The NEWS file with the major changes is here:
> https://git.savannah.gnu.org/cgit/coreutils.git/tree/NEWS
> 
> All tests pass on amd64. Please test on other archs.
> 
> OK?
> 
> ~Brian

Ping. Diff reattached for convenience.

OK?

~Brian
Index: Makefile
===================================================================
RCS file: /cvs/ports/sysutils/coreutils/Makefile,v
retrieving revision 1.24
diff -u -p -r1.24 Makefile
--- Makefile    11 Mar 2022 19:57:18 -0000      1.24
+++ Makefile    27 Apr 2022 23:17:23 -0000
@@ -1,6 +1,6 @@
 COMMENT =              file, shell and text manipulation utilities
 
-DISTNAME =             coreutils-9.0
+DISTNAME =             coreutils-9.1
 CATEGORIES =           sysutils
 
 MAINTAINER =           Brian Callahan <bcal...@openbsd.org>
Index: distinfo
===================================================================
RCS file: /cvs/ports/sysutils/coreutils/distinfo,v
retrieving revision 1.12
diff -u -p -r1.12 distinfo
--- distinfo    5 Oct 2021 23:26:51 -0000       1.12
+++ distinfo    27 Apr 2022 23:17:23 -0000
@@ -1,2 +1,2 @@
-SHA256 (coreutils-9.0.tar.xz) = zjCs30pBvFuzDdlV6eqnX6IWtOPesIiJ7TJDPHs7l84=
-SIZE (coreutils-9.0.tar.xz) = 5612752
+SHA256 (coreutils-9.1.tar.xz) = YaH0ENeLp+fzelpPUObRMgrKMzdUhKMlXt3xejhYBCM=
+SIZE (coreutils-9.1.tar.xz) = 5712104
Index: patches/patch-Makefile_in
===================================================================
RCS file: /cvs/ports/sysutils/coreutils/patches/patch-Makefile_in,v
retrieving revision 1.12
diff -u -p -r1.12 patch-Makefile_in
--- patches/patch-Makefile_in   11 Mar 2022 19:57:18 -0000      1.12
+++ patches/patch-Makefile_in   27 Apr 2022 23:17:23 -0000
@@ -3,7 +3,7 @@ XXX: Avoid rebuilding coreutils.info; ou
 Index: Makefile.in
 --- Makefile.in.orig
 +++ Makefile.in
-@@ -13254,6 +13254,7 @@ doc/$(am__dirstamp):
+@@ -20801,6 +20801,7 @@ doc/$(am__dirstamp):
        @: > doc/$(am__dirstamp)
  
  $(srcdir)/doc/coreutils.info: doc/coreutils.texi $(srcdir)/doc/version.texi 
$(doc_coreutils_TEXINFOS)
Index: patches/patch-src_ls_c
===================================================================
RCS file: patches/patch-src_ls_c
diff -N patches/patch-src_ls_c
--- patches/patch-src_ls_c      11 Mar 2022 19:57:18 -0000      1.2
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,23 +0,0 @@
-https://github.com/coreutils/coreutils/commit/4cfd48481da0486e2bad193495bc38e7d5ead7e4
-
-Index: src/ls.c
---- src/ls.c.orig
-+++ src/ls.c
-@@ -2273,7 +2273,7 @@ decode_switches (int argc, char **argv)
-       if (linelen < 0)
-         {
-           /* Suppress bogus warning re comparing ws.ws_col to big integer.  */
--# if __GNUC_PREREQ (4, 6)
-+# if 4 < __GNUC__ + (6 <= __GNUC_MINOR__)
- #  pragma GCC diagnostic push
- #  pragma GCC diagnostic ignored "-Wtype-limits"
- # endif
-@@ -2282,7 +2282,7 @@ decode_switches (int argc, char **argv)
-               && 0 <= ioctl (STDOUT_FILENO, TIOCGWINSZ, &ws)
-               && 0 < ws.ws_col)
-             linelen = ws.ws_col <= MIN (PTRDIFF_MAX, SIZE_MAX) ? ws.ws_col : 
0;
--# if __GNUC_PREREQ (4, 6)
-+# if 4 < __GNUC__ + (6 <= __GNUC_MINOR__)
- #  pragma GCC diagnostic pop
- # endif
-         }

Reply via email to