From d8723a83e14dd7775b0a45c704a6462758cdf6f0 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sat, 13 Jan 2024 11:40:04 +0100 Subject: coreutils: update to 9.4 --- package/coreutils/Makefile | 6 +++--- package/coreutils/patches/patch-src_ls_c | 20 -------------------- 2 files changed, 3 insertions(+), 23 deletions(-) delete mode 100644 package/coreutils/patches/patch-src_ls_c diff --git a/package/coreutils/Makefile b/package/coreutils/Makefile index a30864aa6..f27fd4f00 100644 --- a/package/coreutils/Makefile +++ b/package/coreutils/Makefile @@ -4,9 +4,9 @@ include $(ADK_TOPDIR)/rules.mk PKG_NAME:= coreutils -PKG_VERSION:= 9.0 -PKG_RELEASE:= 2 -PKG_HASH:= ce30acdf4a41bc5bb30dd955e9eaa75fa216b4e3deb08889ed32433c7b3b97ce +PKG_VERSION:= 9.4 +PKG_RELEASE:= 1 +PKG_HASH:= ea613a4cf44612326e917201bbbcdfbd301de21ffc3b59b6e5c07e040b275e52 PKG_DESCR:= file, shell and text utilities PKG_SECTION:= base/apps PKG_NEEDS:= threads diff --git a/package/coreutils/patches/patch-src_ls_c b/package/coreutils/patches/patch-src_ls_c deleted file mode 100644 index 94cb5b58f..000000000 --- a/package/coreutils/patches/patch-src_ls_c +++ /dev/null @@ -1,20 +0,0 @@ ---- coreutils-9.0.orig/src/ls.c 2021-09-24 13:31:05.000000000 +0200 -+++ coreutils-9.0/src/ls.c 2022-02-24 04:39:40.532579515 +0100 -@@ -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 - } -- cgit v1.2.3