[openwrt/openwrt] tools/coreutils: fix wrong PKG_HASH after update to version 9.6

LEDE Commits lede-commits at lists.infradead.org
Sat Mar 15 02:21:40 PDT 2025


ynezz pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/c2a58fe875ff04ce956c7da8f42412053bfc7597

commit c2a58fe875ff04ce956c7da8f42412053bfc7597
Author: Petr Štetiar <ynezz at true.cz>
AuthorDate: Sat Mar 15 09:15:22 2025 +0000

    tools/coreutils: fix wrong PKG_HASH after update to version 9.6
    
    Currently macOS builds are failing due to hash mismatch. Lets fix it by
    using proper hash:
    
     Here are the SHA1 and SHA256 checksums:
    
       File: coreutils-9.6.tar.gz
       SHA1 sum:   1da82e96486e0eedbd5257c8190f2cf9fcb71c2e
       SHA256 sum: 2bec616375002c92c1ed5ead32a092b174fe44c14bc736d32e5961053b821d84
    
    References: https://lists.gnu.org/archive/html/coreutils/2025-01/msg00049.html
    Fixes: 160e0b7ad866 ("tools/coreutils: update to 9.6")
    Reported-by: Mieczyslaw Nalewaj <namiltd at yahoo.com>
    Signed-off-by: Petr Štetiar <ynezz at true.cz>
---
 tools/coreutils/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/coreutils/Makefile b/tools/coreutils/Makefile
index 862f4d8bcb..2ffa052330 100644
--- a/tools/coreutils/Makefile
+++ b/tools/coreutils/Makefile
@@ -12,7 +12,7 @@ PKG_VERSION:=9.6
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
 PKG_SOURCE_URL:=@GNU/coreutils
-PKG_HASH:=7a0124327b398fd9eb1a6abde583389821422c744ffa10734b24f557610d3283
+PKG_HASH:=2bec616375002c92c1ed5ead32a092b174fe44c14bc736d32e5961053b821d84
 
 HOST_BUILD_PARALLEL := 1
 




More information about the lede-commits mailing list