4 Commits

Author SHA256 Message Date
2107d2890d Accepting request 1281869 from filesystems
OBS-URL: https://build.opensuse.org/request/show/1281869
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/squashfuse?expand=0&rev=3
2025-06-02 20:00:59 +00:00
8a7cf5df9f squashfuse 0.6.1
OBS-URL: https://build.opensuse.org/package/show/filesystems/squashfuse?expand=0&rev=5
2025-06-02 10:23:29 +00:00
caf3d1e307 Accepting request 1271072 from filesystems
OBS-URL: https://build.opensuse.org/request/show/1271072
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/squashfuse?expand=0&rev=2
2025-04-22 15:27:06 +00:00
d4ccceaf0b - Update to version 0.6.0:
* Add `.` and `..` in directory listings.
  * Add `--enable-broken-directory-offsets` configure option to
    compensate for a macOS FUSE-T bug.
  * Fix 32-bit builds
  * Add nix as a supported build type
- Add pkgconfig(libzstd) BuildRequires, add zstd support.
- Add pkgconfig(fuse3) BuildRequires, add fuse3 support.
- Drop pkgconfig(fuse) BuildRequires and fuse Requires: fuse3
  support is sufficient.
- Add pkgconfig(liblz4) BuildRequires, add lz4 support.
- Add pkgconfig(lzo2) BuildRequires, add lzo support.
- Replace xz-devel with pkgconfig(liblzma) BuildRequires.

OBS-URL: https://build.opensuse.org/package/show/filesystems/squashfuse?expand=0&rev=3
2025-04-20 13:24:40 +00:00
4 changed files with 43 additions and 20 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d7602c7a3b1d0512764547d27cb8cc99d1b21181e1c9819e76461ee96c2ab4d9
size 434328

3
squashfuse-0.6.1.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7b18a58c40a3161b5c329ae925b72336b5316941f906b446b8ed6c5a90989f8c
size 440684

View File

@@ -1,3 +1,27 @@
-------------------------------------------------------------------
Sat May 17 14:03:02 UTC 2025 - Andreas Stieger <andreas.stieger@gmx.de>
- update to 0.6.1:
* portability changes for other platform
- drop build-time autoconf
-------------------------------------------------------------------
Mon Apr 14 07:16:15 UTC 2025 - Bjørn Lie <bjorn.lie@gmail.com>
- Update to version 0.6.0:
* Add `.` and `..` in directory listings.
* Add `--enable-broken-directory-offsets` configure option to
compensate for a macOS FUSE-T bug.
* Fix 32-bit builds
* Add nix as a supported build type
- Add pkgconfig(libzstd) BuildRequires, add zstd support.
- Add pkgconfig(fuse3) BuildRequires, add fuse3 support.
- Drop pkgconfig(fuse) BuildRequires and fuse Requires: fuse3
support is sufficient (boo#1242079)
- Add pkgconfig(liblz4) BuildRequires, add lz4 support.
- Add pkgconfig(lzo2) BuildRequires, add lzo support.
- Replace xz-devel with pkgconfig(liblzma) BuildRequires.
-------------------------------------------------------------------
Wed Oct 18 16:03:24 UTC 2023 - Egbert Eich <eich@suse.com>

View File

@@ -1,7 +1,8 @@
#
# spec file for package squashfuse
#
# Copyright (c) 2021 SUSE LLC
# Copyright (c) 2025 SUSE LLC
# Copyright (c) 2025 Andreas Stieger <Andreas.Stieger@gmx.de>
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,28 +19,24 @@
%define so_version 0
Name: squashfuse
Version: 0.5.0
Version: 0.6.1
Release: 0
Summary: FUSE module to mount squashfs images
License: BSD-2-Clause
Group: System/Filesystems
URL: https://github.com/vasi/squashfuse
Source: https://github.com/vasi/squashfuse/releases/download/v%{version}/squashfuse-%{version}.tar.gz
BuildRequires: autoconf
BuildRequires: automake
Source: %{url}/releases/download/%{version}/squashfuse-%{version}.tar.gz
BuildRequires: fdupes
BuildRequires: pkgconfig(fuse)
BuildRequires: gcc
BuildRequires: libattr-devel
#BuildRequires: liblzma5
BuildRequires: libtool
BuildRequires: pkgconfig(fuse)
BuildRequires: make
BuildRequires: pkgconfig
BuildRequires: sed
BuildRequires: xz-devel
BuildRequires: pkgconfig(fuse3)
BuildRequires: pkgconfig(liblz4)
BuildRequires: pkgconfig(liblzma)
BuildRequires: pkgconfig(libzstd)
BuildRequires: pkgconfig(lzo2)
BuildRequires: pkgconfig(zlib)
Requires: fuse
%description
Squashfuse is a FUSE filesystem that allows a
@@ -77,11 +74,12 @@ and supports most of the features of the squashfs format.
This package contains development files.
%prep
%setup -q
%autosetup
%build
autoreconf -fi
%configure
%configure \
--disable-static \
%{nil}
%make_build
%install
@@ -100,8 +98,7 @@ install -m 0755 .libs/squashfuse_ls .libs/squashfuse_extract %{buildroot}/%{_bin
%fdupes %{buildroot}%{_includedir}
%fdupes %{buildroot}%{_libdir}
%post -n libsquashfuse%{so_version} -p /sbin/ldconfig
%postun -n libsquashfuse%{so_version} -p /sbin/ldconfig
%ldconfig_scriptlets -n libsquashfuse%{so_version}
%files
%{_mandir}/*/*
@@ -110,10 +107,12 @@ install -m 0755 .libs/squashfuse_ls .libs/squashfuse_extract %{buildroot}/%{_bin
%{_bindir}/squashfuse_ll
%files tools
%license LICENSE
%{_bindir}/squashfuse_ls
%{_bindir}/squashfuse_extract
%files devel
%license LICENSE
%{_libdir}/*.so
%{_libdir}/pkgconfig/*
%{_includedir}/squashfuse