From e374ae03b5cc7f4c99af2b0079f0051e78dbb1ac Mon Sep 17 00:00:00 2001 From: Romain Naour Date: Wed, 18 Jun 2025 23:23:57 +0200 Subject: [PATCH] package/squashfs: update URL to source archive after Github changes The squashfs 4.6.1 archive hash has been changed suddenly two weeks ago by Github without any intended changes from the squashfs maintainer [1]. The orginal squashfs 4.6.1 archive has been manually uploaded again. Update the URL to download the archive that match the expected hash. Since we don't use the github download helper anymore, the squashfs archive name is changed from squashfs-4.6.1.tar.gz to squashfs-tools-4.6.1.tar.gz. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/10355448207 (and many more...) See: [1] https://github.com/plougher/squashfs-tools/issues/313 Signed-off-by: Romain Naour Signed-off-by: Julien Olivain --- package/squashfs/squashfs.hash | 2 +- package/squashfs/squashfs.mk | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/package/squashfs/squashfs.hash b/package/squashfs/squashfs.hash index bc45b4ab5e..c921d638bb 100644 --- a/package/squashfs/squashfs.hash +++ b/package/squashfs/squashfs.hash @@ -1,5 +1,5 @@ # Locally computed -sha256 94201754b36121a9f022a190c75f718441df15402df32c2b520ca331a107511c squashfs-4.6.1.tar.gz +sha256 94201754b36121a9f022a190c75f718441df15402df32c2b520ca331a107511c squashfs-tools-4.6.1.tar.gz # License files sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING diff --git a/package/squashfs/squashfs.mk b/package/squashfs/squashfs.mk index b9fbf54b01..f2cb0ab25e 100644 --- a/package/squashfs/squashfs.mk +++ b/package/squashfs/squashfs.mk @@ -5,7 +5,8 @@ ################################################################################ SQUASHFS_VERSION = 4.6.1 -SQUASHFS_SITE = $(call github,plougher,squashfs-tools,$(SQUASHFS_VERSION)) +SQUASHFS_SOURCE = squashfs-tools-$(SQUASHFS_VERSION).tar.gz +SQUASHFS_SITE = https://github.com/plougher/squashfs-tools/releases/download/$(SQUASHFS_VERSION) SQUASHFS_LICENSE = GPL-2.0+ SQUASHFS_LICENSE_FILES = COPYING SQUASHFS_CPE_ID_VALID = YES