Compare commits

...

No commits in common. "c9-beta" and "c9s" have entirely different histories.
c9-beta ... c9s

6 changed files with 31 additions and 25 deletions

View File

@ -1 +0,0 @@
dc6faa76ba673ce5afa12c1bd81a936ffe56269e SOURCES/composefs-1.0.5.tar.xz

2
.gitignore vendored
View File

@ -1 +1 @@
SOURCES/composefs-1.0.5.tar.xz /*.tar.xz

View File

@ -3,15 +3,15 @@
%endif %endif
Name: composefs Name: composefs
Version: 1.0.5 Version: 1.0.7
Release: 1%{?dist} Release: 1%{?dist}
Summary: Tools to handle creating and mounting composefs images Summary: Tools to handle creating and mounting composefs images
License: GPL-3.0-or-later AND LGPL-2.0-or-later AND Apache-2.0 License: LGPL-2.1-or-later AND (GPL-2.0-only OR Apache-2.0)
URL: https://github.com/containers/composefs URL: https://github.com/containers/composefs
Source0: https://github.com/containers/composefs/releases/download/v%{version}/%{name}-%{version}.tar.xz Source0: https://github.com/containers/composefs/releases/download/v%{version}/%{name}-%{version}.tar.xz
BuildRequires: gcc automake libtool openssl-devel fuse3-devel BuildRequires: gcc meson openssl-devel fuse3-devel
%if %{with man} %if %{with man}
BuildRequires: go-md2man BuildRequires: go-md2man
%endif %endif
@ -36,28 +36,23 @@ Devel files for %{name}.
%package libs %package libs
Summary: Libraries for %{name} Summary: Libraries for %{name}
License: LGPL-2.1-or-later AND (GPL-2.0-only OR Apache-2.0)
%description libs %description libs
Library files for %{name}. Library files for %{name}.
%prep %prep
%autosetup -p1 %autosetup -p1
# for go-md2man patch
autoreconf -fiv
%build %build
%configure \ %meson --default-library=shared -Dfuse=enabled \
--disable-static \ %if %{without man}
%if %{with man} -Dman=disabled
--enable-man \
%endif %endif
--with-fuse %meson_build
%make_build
%install %install
%make_install %meson_install
rm -rf %{buildroot}%{_libdir}/libcomposefs.la rm -v $RPM_BUILD_ROOT/%{_libdir}/libcomposefs*.a
%files devel %files devel
%{_includedir}/libcomposefs %{_includedir}/libcomposefs
@ -65,11 +60,11 @@ rm -rf %{buildroot}%{_libdir}/libcomposefs.la
%{_libdir}/pkgconfig/%{name}.pc %{_libdir}/pkgconfig/%{name}.pc
%files libs %files libs
%license COPYING COPYING.LIB COPYING.LESSERv3 COPYINGv3 LICENSE.Apache-2.0 BSD-2-Clause.txt %license COPYING COPYING.GPL-2.0-only COPYING.GPL-2.0-or-later COPYING.LGPL-2.1-or-later LICENSE.Apache-2.0 BSD-2-Clause.txt
%{_libdir}/libcomposefs.so.* %{_libdir}/libcomposefs.so.*
%files %files
%license COPYING COPYING.LIB COPYING.LESSERv3 COPYINGv3 LICENSE.Apache-2.0 BSD-2-Clause.txt %license COPYING COPYING.GPL-2.0-only COPYING.GPL-2.0-or-later COPYING.LGPL-2.1-or-later LICENSE.Apache-2.0 BSD-2-Clause.txt
%doc README.md %doc README.md
%{_bindir}/mkcomposefs %{_bindir}/mkcomposefs
%{_bindir}/composefs-info %{_bindir}/composefs-info
@ -79,10 +74,6 @@ rm -rf %{buildroot}%{_libdir}/libcomposefs.la
%endif %endif
%changelog %changelog
* Wed Aug 21 2024 Jindrich Novy <jnovy@redhat.com> - 1.0.5-1 * Fri Nov 29 2024 Jindrich Novy <jnovy@redhat.com> - 1.0.7-1
- update to https://github.com/containers/composefs/releases/tag/v1.0.5 - update to https://github.com/containers/composefs/releases/tag/v1.0.7
- Related: RHEL-27608 - Related: RHEL-60277
* Thu Feb 01 2024 Colin Walters <walters@verbum.org> - 1.0.3-2
- Initial fork from c10s
Resolves: #RHELPLAN-169060

6
gating.yaml Normal file
View File

@ -0,0 +1,6 @@
--- !Policy
product_versions:
- rhel-9
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}

1
sources Normal file
View File

@ -0,0 +1 @@
SHA512 (composefs-1.0.7.tar.xz) = ce8a94eb1bff8961922823e1d317595fdd5804a6b05860dbd8f3f4d293dd513449b500148c4c2b7939936e96ead838957e7817c728be1cda0b2d4517ea07d59e

9
tests/tests.yml Normal file
View File

@ -0,0 +1,9 @@
- hosts: localhost
roles:
- role: standard-test-basic
tags:
- classic
tests:
- simple:
dir: .
run: "mkcomposefs --help || true"