fuse-overlayfs/fuse-overlayfs.spec
Dirk Mueller 884d576a0b Accepting request 921984 from home:kwk:branches:filesystems
- Update to version 1.7.1
  * set FUSE_CAP_POSIX_ACL only when it is supported by FUSE.
  * treat statx failure with EINVAL as ENOSYS, so that the fallback
    is attempted.
- Update to version 1.7.0
  * fix read xattrs for device files
  * don't create whiteout files in opaque dirs.
  * fix reading files when running with euid != 0.
  * enable POSIX ACLs.
- Update to version 1.6.0
  * fix an invalid access when filtering internal xattrs that could
    deal to a segfault.
- Update to version 1.5.0
  * honor FUSE_OVERLAYFS_DISABLE_OVL_WHITEOUT also for renames
  * use strncpy instead of strcpy
  * fix renameat2(RENAME_NOREPLACE) on older kernels that lack
    device whiteouts for unprivileged users.
  * fix creating a symlink on top of a removed file.
  * fix copyup of xattrs longer than 256 bytes.

OBS-URL: https://build.opensuse.org/request/show/921984
OBS-URL: https://build.opensuse.org/package/show/filesystems/fuse-overlayfs?expand=0&rev=32
2021-09-29 09:40:45 +00:00

55 lines
1.5 KiB
RPMSpec

#
# spec file for package fuse-overlayfs
#
# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: fuse-overlayfs
Version: 1.7.1
Release: 0
Summary: FUSE implementation for overlayfs
License: GPL-3.0-only
Group: System/Management
URL: https://github.com/containers/fuse-overlayfs
Source0: https://github.com/containers/fuse-overlayfs/archive/v%{version}.tar.gz
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: fuse3-devel
BuildRequires: gcc
%description
An implementation of overlay+shiftfs in FUSE for rootless containers.
%prep
%setup -q
%build
env NOCONFIGURE=1 ./autogen.sh
%configure --disable-silent-rules
%make_build
%install
%make_install INSTALL="install -p"
%files
# Binaries
%{_bindir}/fuse-overlayfs
%doc README.md
%license COPYING
%doc %{_mandir}/man1/%{name}.1.gz
%changelog