mirror of
https://github.com/openwrt/packages.git
synced 2026-04-15 10:51:55 +00:00
squashfs-tools: bump to 4.7.5
Changes since 4.7.2: - Fix potential corruption in Squashfs filesystems containing sparse files - Fix pseudo file creation failures with large blocks of contiguous zeros - Fix duplicate file detection for files exceeding available buffer space - Add -numeric-owner option to mksquashfs/sqfstar - Fix segfault when using pseudo file root definitions with only Xattr metadata - Fix conflict between -offset and -stream options - Fix directory modification timestamp issues in pseudo file hierarchy - Fix -max-depth incorrectly marking empty directories as excluded Full release notes: https://github.com/plougher/squashfs-tools/releases/tag/4.7.5 Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
This commit is contained in:
committed by
Alexandru Ardelean
parent
c59d9b2476
commit
a01d2a9440
@@ -8,7 +8,7 @@
|
|||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=squashfs-tools
|
PKG_NAME:=squashfs-tools
|
||||||
PKG_VERSION:=4.7.2
|
PKG_VERSION:=4.7.5
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
PKG_LICENSE:=GPL-2.0-only
|
PKG_LICENSE:=GPL-2.0-only
|
||||||
@@ -18,7 +18,7 @@ PKG_CPE_ID:=cpe:/a:squashfs-tools_project:squashfs-tools
|
|||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=https://codeload.github.com/plougher/squashfs-tools/tar.gz/${PKG_VERSION}?
|
PKG_SOURCE_URL:=https://codeload.github.com/plougher/squashfs-tools/tar.gz/${PKG_VERSION}?
|
||||||
PKG_HASH:=4672b5c47d9418d3a5ae5b243defc6d9eae8275b9771022247c6a6082c815914
|
PKG_HASH:=547b7b7f4d2e44bf91b6fc554664850c69563701deab9fd9cd7e21f694c88ea6
|
||||||
|
|
||||||
PKG_BUILD_PARALLEL:=1
|
PKG_BUILD_PARALLEL:=1
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|||||||
10
utils/squashfs-tools/test.sh
Normal file
10
utils/squashfs-tools/test.sh
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
squashfs-tools-mksquashfs)
|
||||||
|
mksquashfs -version 2>&1 | grep -F "$2"
|
||||||
|
;;
|
||||||
|
squashfs-tools-unsquashfs)
|
||||||
|
unsquashfs -version 2>&1 | grep -F "$2"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
Reference in New Issue
Block a user