fuse-overlayfs/fuse-overlayfs.spec
Dirk Mueller 9ecacca01e - update to 1.10:
* main: use /proc/self/fd to read xattrs.
  * main: inherit ACLs for new files/dirs.
  * main: fix passing noatime.
  * main: add checks for valid /proc mount.
  * main: fix copy_file_range for deleted files.
  * main: fix creating links of just deleted files.
  * main: fix setting attributes on file without permissions.
  * main: ignore EOVERFLOW when copying xattrs.
  * main: set the correct value for RENAME_NOREPLACE when it is not already
    defined in the system headers.
  * main: create source whiteout only when needed
  * main: fix missing source whiteout when destination is whiteout
  * main: fix lookup if underlying path is a symlink, but a directory on a
    upper directory.
  * main: fix race when looking up an inode that was renamed.
  * main: fix type used for ioctl.
  * main: honor user.overlay. xattrs.  Native overlay uses user.overlay to
    store the overlay metadata instead of trusted.overlay.
  * main: add a mount flag to disable ACLs.

OBS-URL: https://build.opensuse.org/package/show/filesystems/fuse-overlayfs?expand=0&rev=33
2022-12-04 21:48:28 +00:00

55 lines
1.5 KiB
RPMSpec

#
# spec file for package fuse-overlayfs
#
# Copyright (c) 2022 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.10
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