|
|
@ -1,23 +1,24 @@
|
|
|
|
%global git0 https://github.com/containers/%{name}
|
|
|
|
%global git0 https://github.com/containers/%{name}
|
|
|
|
%global commit0 f55aa8ef5606c69bedf6512c06eff800ba831eea
|
|
|
|
|
|
|
|
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
|
|
|
|
%{!?_modulesloaddir:%global _modulesloaddir %{_usr}/lib/modules-load.d}
|
|
|
|
|
|
|
|
|
|
|
|
Name: fuse-overlayfs
|
|
|
|
Name: fuse-overlayfs
|
|
|
|
Version: 0.7.8
|
|
|
|
Version: 1.13
|
|
|
|
Release: 1%{?dist}
|
|
|
|
Release: 1%{?dist}
|
|
|
|
Summary: FUSE overlay+shiftfs implementation for rootless containers
|
|
|
|
Summary: FUSE overlay+shiftfs implementation for rootless containers
|
|
|
|
License: GPLv3+
|
|
|
|
License: GPLv3+
|
|
|
|
URL: %{git0}
|
|
|
|
URL: %{git0}
|
|
|
|
ExclusiveArch: aarch64 %{arm} ppc64le s390x x86_64
|
|
|
|
ExclusiveArch: aarch64 %{arm} ppc64le s390x x86_64
|
|
|
|
Source0: %{git0}/archive/%{commit0}/%{name}-%{shortcommit0}.tar.gz
|
|
|
|
Source0: %{git0}/archive/v%{version}.tar.gz
|
|
|
|
BuildRequires: autoconf
|
|
|
|
BuildRequires: autoconf
|
|
|
|
BuildRequires: automake
|
|
|
|
BuildRequires: automake
|
|
|
|
BuildRequires: fuse3-devel
|
|
|
|
BuildRequires: fuse3-devel
|
|
|
|
BuildRequires: gcc
|
|
|
|
BuildRequires: gcc
|
|
|
|
BuildRequires: git
|
|
|
|
BuildRequires: git
|
|
|
|
BuildRequires: go-md2man
|
|
|
|
BuildRequires: /usr/bin/go-md2man
|
|
|
|
BuildRequires: make
|
|
|
|
BuildRequires: make
|
|
|
|
Provides: bundled(gnulib) = cb634d40c7b9bbf33fa5198d2e27fdab4c0bf143
|
|
|
|
Requires: kmod
|
|
|
|
|
|
|
|
Requires: fuse3
|
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
%description
|
|
|
|
%{summary}.
|
|
|
|
%{summary}.
|
|
|
@ -34,15 +35,22 @@ building other packages which use import path with
|
|
|
|
%{import_path} prefix.
|
|
|
|
%{import_path} prefix.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%prep
|
|
|
|
%autosetup -Sgit -n %{name}-%{commit0}
|
|
|
|
%autosetup -Sgit
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%build
|
|
|
|
|
|
|
|
export CFLAGS="%{optflags} -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64"
|
|
|
|
|
|
|
|
export LDFLAGS="-pie -Wl,-z,relro -Wl,-z,now"
|
|
|
|
./autogen.sh
|
|
|
|
./autogen.sh
|
|
|
|
./configure --prefix=%{_usr} --libdir=%{_libdir}
|
|
|
|
./configure --prefix=%{_usr} --libdir=%{_libdir}
|
|
|
|
%{__make} generate-man
|
|
|
|
%{__make} generate-man
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
%install
|
|
|
|
make DESTDIR=%{buildroot} install install-man
|
|
|
|
make DESTDIR=%{buildroot} install install-man
|
|
|
|
|
|
|
|
install -d %{buildroot}%{_modulesloaddir}
|
|
|
|
|
|
|
|
echo fuse > %{buildroot}%{_modulesloaddir}/fuse-overlayfs.conf
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%post
|
|
|
|
|
|
|
|
modprobe fuse > /dev/null 2>&1 || :
|
|
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
%check
|
|
|
|
|
|
|
|
|
|
|
@ -53,42 +61,111 @@ make DESTDIR=%{buildroot} install install-man
|
|
|
|
%license COPYING
|
|
|
|
%license COPYING
|
|
|
|
%doc README.md
|
|
|
|
%doc README.md
|
|
|
|
%{_bindir}/%{name}
|
|
|
|
%{_bindir}/%{name}
|
|
|
|
%{_mandir}/man1/%{name}.1.gz
|
|
|
|
%{_mandir}/man1/*
|
|
|
|
|
|
|
|
%{_modulesloaddir}/fuse-overlayfs.conf
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
%changelog
|
|
|
|
* Tue Apr 07 2020 Jindrich Novy <jnovy@redhat.com> - 0.7.8-1
|
|
|
|
* Wed Aug 30 2023 Jindrich Novy <jnovy@redhat.com> - 1.13-1
|
|
|
|
- update to https://github.com/containers/fuse-overlayfs/releases/tag/v0.7.8
|
|
|
|
- update to https://github.com/containers/fuse-overlayfs/releases/tag/v1.13
|
|
|
|
- Related: #1821193
|
|
|
|
- Related: #2176063
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu May 11 2023 Jindrich Novy <jnovy@redhat.com> - 1.12-1
|
|
|
|
|
|
|
|
- update to https://github.com/containers/fuse-overlayfs/releases/tag/v1.12
|
|
|
|
|
|
|
|
- Related: #2176063
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sun Mar 26 2023 Jindrich Novy <jnovy@redhat.com> - 1.11-1
|
|
|
|
|
|
|
|
- update to https://github.com/containers/fuse-overlayfs/releases/tag/v1.11
|
|
|
|
|
|
|
|
- Related: #2176063
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Feb 07 2023 Jindrich Novy <jnovy@redhat.com> - 1.10-2
|
|
|
|
|
|
|
|
- rebuild
|
|
|
|
|
|
|
|
- Resolves: #2130975
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Dec 02 2022 Jindrich Novy <jnovy@redhat.com> - 1.10-1
|
|
|
|
|
|
|
|
- update to https://github.com/containers/fuse-overlayfs/releases/tag/v1.10
|
|
|
|
|
|
|
|
- Related: #2124478
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jun 10 2022 Jindrich Novy <jnovy@redhat.com> - 1.9-1
|
|
|
|
|
|
|
|
- update to https://github.com/containers/fuse-overlayfs/releases/tag/v1.9
|
|
|
|
|
|
|
|
- Related: #2061316
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed May 11 2022 Jindrich Novy <jnovy@redhat.com> - 1.8.2-2
|
|
|
|
|
|
|
|
- BuildRequires: /usr/bin/go-md2man
|
|
|
|
|
|
|
|
- Related: #2061316
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Feb 02 2022 Jindrich Novy <jnovy@redhat.com> - 1.8.2-1
|
|
|
|
|
|
|
|
- update to https://github.com/containers/fuse-overlayfs/releases/tag/v1.8.2
|
|
|
|
|
|
|
|
- Related: #2000051
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Jan 19 2022 Jindrich Novy <jnovy@redhat.com> - 1.8.1-1
|
|
|
|
|
|
|
|
- update to https://github.com/containers/fuse-overlayfs/releases/tag/v1.8.1
|
|
|
|
|
|
|
|
- Related: #2000051
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Dec 22 2021 Jindrich Novy <jnovy@redhat.com> - 1.8-1
|
|
|
|
|
|
|
|
- update to https://github.com/containers/fuse-overlayfs/releases/tag/v1.8
|
|
|
|
|
|
|
|
- Related: #2000051
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Oct 01 2021 Jindrich Novy <jnovy@redhat.com> - 1.7.1-3
|
|
|
|
|
|
|
|
- perform only sanity/installability tests for now
|
|
|
|
|
|
|
|
- Related: #2000051
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Mar 18 2020 Jindrich Novy <jnovy@redhat.com> - 0.7.2-5
|
|
|
|
* Wed Sep 29 2021 Jindrich Novy <jnovy@redhat.com> - 1.7.1-2
|
|
|
|
- latest iteration of segfault fix patch, thanks to Giuseppe Scrivano
|
|
|
|
- add gating.yaml
|
|
|
|
- Resolves: #1805015
|
|
|
|
- Related: #2000051
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Mar 06 2020 Jindrich Novy <jnovy@redhat.com> - 0.7.2-4
|
|
|
|
* Fri Sep 03 2021 Jindrich Novy <jnovy@redhat.com> - 1.7.1-1
|
|
|
|
- replace "fuse-overlayfs segfault" patch with improved one
|
|
|
|
- update to https://github.com/containers/fuse-overlayfs/releases/tag/v1.7.1
|
|
|
|
due to application to a different context
|
|
|
|
- Related: #2000051
|
|
|
|
- Resolves: #1805015
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Feb 20 2020 Jindrich Novy <jnovy@redhat.com> - 0.7.2-3
|
|
|
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.7-2
|
|
|
|
- fix "fuse-overlayfs segfault"
|
|
|
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
|
- Resolves: #1805015
|
|
|
|
Related: rhbz#1991688
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Feb 17 2020 Jindrich Novy <jnovy@redhat.com> - 0.7.2-2
|
|
|
|
* Thu Jul 29 2021 Jindrich Novy <jnovy@redhat.com> - 1.7-1
|
|
|
|
- fix "useradd and groupadd fail under rootless Buildah and podman"
|
|
|
|
- update to https://github.com/containers/fuse-overlayfs/releases/tag/v1.7
|
|
|
|
- Resolves: #1803494
|
|
|
|
- Related: #1970747
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Dec 04 2019 Jindrich Novy <jnovy@redhat.com> - 0.7.2-1
|
|
|
|
* Wed Jun 23 2021 Jindrich Novy <jnovy@redhat.com> - 1.6-1
|
|
|
|
- update to 0.7.2
|
|
|
|
- update to https://github.com/containers/fuse-overlayfs/releases/tag/v1.6
|
|
|
|
- Related: RHELPLAN-25139
|
|
|
|
- Related: #1970747
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Nov 18 2019 Jindrich Novy <jnovy@redhat.com> - 0.7-1
|
|
|
|
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 1.5.0-2
|
|
|
|
- update to 0.7
|
|
|
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
|
- apply patch to fix build on RHEL-8
|
|
|
|
|
|
|
|
- Related: RHELPLAN-25139
|
|
|
|
* Thu Mar 25 2021 Jindrich Novy <jnovy@redhat.com> - 1.5.0-1
|
|
|
|
|
|
|
|
- update to https://github.com/containers/fuse-overlayfs/releases/tag/v1.5.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Jan 26 2021 Jindrich Novy <jnovy@redhat.com> - 1.4.0-1
|
|
|
|
|
|
|
|
- update to https://github.com/containers/fuse-overlayfs/releases/tag/v1.4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Nov 26 2020 Jindrich Novy <jnovy@redhat.com> - 1.3.0-1
|
|
|
|
|
|
|
|
- update to https://github.com/containers/fuse-overlayfs/releases/tag/v1.3.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Nov 09 2020 Jindrich Novy <jnovy@redhat.com> - 1.2.0-4
|
|
|
|
|
|
|
|
- be sure to harden the linked binary
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Oct 29 2020 Jindrich Novy <jnovy@redhat.com> - 1.2.0-3
|
|
|
|
|
|
|
|
- ensure fuse module is loaded
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Oct 09 2020 Jindrich Novy <jnovy@redhat.com> - 1.2.0-2
|
|
|
|
|
|
|
|
- use 1.2.0 tarball from the release, not tag
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Oct 09 2020 Jindrich Novy <jnovy@redhat.com> - 1.2.0-1
|
|
|
|
|
|
|
|
- update to https://github.com/containers/fuse-overlayfs/releases/tag/v1.2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Sep 17 2020 Jindrich Novy <jnovy@redhat.com> - 1.1.2-2
|
|
|
|
|
|
|
|
- sync with rhel8-8.3.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Sep 17 2020 Jindrich Novy <jnovy@redhat.com> - 1.1.2-1
|
|
|
|
|
|
|
|
- use proper CFLAGS
|
|
|
|
|
|
|
|
- Related: #1821193
|
|
|
|
|
|
|
|
|
|
|
|
* Sat Jun 15 2019 Lokesh Mandvekar <lsm5@redhat.com> - 0.4.1-1
|
|
|
|
* Sat Jun 15 2019 Lokesh Mandvekar <lsm5@redhat.com> - 0.4.1-1
|
|
|
|
- Resolves: #1720654 - rebase to v0.4.1
|
|
|
|
- Resolves: #1720654 - rebase to v0.4.1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Feb 20 2019 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.3-4.dev.gitd760789
|
|
|
|
|
|
|
|
- rebase
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Jan 16 2019 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.3-2
|
|
|
|
* Wed Jan 16 2019 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.3-2
|
|
|
|
- rebase
|
|
|
|
- rebase
|
|
|
|
- Resolves:#1666510
|
|
|
|
- Resolves:#1666510
|
|
|
|