Upstream fix for breakage of unsquashfs

This commit is contained in:
Bruno Wolff III 2022-03-08 23:07:14 -06:00
parent c5ff26b19a
commit 6b746e8d48
3 changed files with 9 additions and 5 deletions

1
.gitignore vendored
View File

@ -35,3 +35,4 @@ squashfs-4.1.tar.bz2
/squashfs-tools-2baf12e55af5a519e1285437343d3a606962a4b6.tar.gz
/squashfs-tools-580b4e122471c11dffb7dcf1e392a72c8dcb6512.tar.gz
/squashfs-tools-8b6ee895c763f0b8e2f394d83e93fc5a3e51942f.tar.gz
/squashfs-tools-2ac40ca6d23cad73fb5b5da0c915382eaa31378d.tar.gz

View File

@ -1 +1 @@
SHA512 (squashfs-tools-8b6ee895c763f0b8e2f394d83e93fc5a3e51942f.tar.gz) = 1df0c3209dd7035598f920f6e95ad4224ae525dd5596eab4af3c03c00e7d71bcda042667217ebfe4d761146e75a014b8c0569b6e28891339d48c66750398323d
SHA512 (squashfs-tools-2ac40ca6d23cad73fb5b5da0c915382eaa31378d.tar.gz) = f2f73bf881afe801322d40d8493f98a9fb5dfeaab9006c88997528b62a8ff9d3e17ffbf5843227359d91b7d259ae06dd2debf09a8526a614dd24f3458fd4816d

View File

@ -3,11 +3,11 @@ Version: 4.5
Summary: Utility for the creation of squashfs filesystems
%global forgeurl https://github.com/plougher/%{name}
%global date 20220308
%global commit 8b6ee895c763f0b8e2f394d83e93fc5a3e51942f
%global commit 2ac40ca6d23cad73fb5b5da0c915382eaa31378d
%forgemeta
URL: %{forgeurl}
Source: %{forgesource}
Release: 24%{?dist}
Release: 25%{?dist}
License: GPLv2+
BuildRequires: make
@ -30,7 +30,7 @@ contains the utilities for manipulating squashfs filesystems.
%build
%set_build_flags
pushd squashfs-tools
CFLAGS="%{optflags}" XZ_SUPPORT=1 LZO_SUPPORT=1 LZMA_XZ_SUPPORT=1 LZ4_SUPPORT=1 ZSTD_SUPPORT=1 make %{?_smp_mflags}
CFLAGS="%optflags" XZ_SUPPORT=1 LZO_SUPPORT=1 LZMA_XZ_SUPPORT=1 LZ4_SUPPORT=1 ZSTD_SUPPORT=1 make %{?_smp_mflags}
%install
pushd squashfs-tools
@ -51,7 +51,10 @@ make INSTALL_PREFIX=%{buildroot}/usr INSTALL_DIR=%{buildroot}%{_sbindir} INSTALL
%{_sbindir}/sqfscat
%changelog
* Tue Mar 08 2022 Bruno Wolff III <bruno@wolff.to> - 4.5-24.20220307git8b6ee89
* Tue Mar 08 2022 Bruno Wolff III <bruno@wolff.to> - 4.5-25.20220308git2ac40ca
- Upstream fix for unsquashfs breakage from recent commit
* Tue Mar 08 2022 Bruno Wolff III <bruno@wolff.to> - 4.5-24.20220308git8b6ee89
- Continue testing upstream patches prior to 4.5.1 release.
- Minor fixes
- Man page tweaks