From e59ade44a337394d1ec8ab860c468e79376b53ea Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 10:53:39 +0000 Subject: [PATCH 1/6] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- zipper.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zipper.spec b/zipper.spec index 564557c..645b0b4 100644 --- a/zipper.spec +++ b/zipper.spec @@ -1,7 +1,7 @@ Name: zipper Summary: C++ wrapper around minizip compression library Version: 1.0.3 -Release: 8%{?dist} +Release: 9%{?dist} URL: https://github.com/sebastiandev/zipper ## Source archive from github obtained by @@ -92,6 +92,9 @@ rm -f %{buildroot}%{_bindir}/Zipper-test %{_libdir}/libZipper-static.a %changelog +* Sat Jul 20 2024 Fedora Release Engineering - 1.0.3-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Sun Mar 17 2024 Antonio Trande - 1.0.3-8 - Patched for GCC-14 From 0045d949ccf604e4d74d14295eb88022a421db27 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 16:47:59 +0000 Subject: [PATCH 2/6] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- zipper.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zipper.spec b/zipper.spec index 645b0b4..c94a933 100644 --- a/zipper.spec +++ b/zipper.spec @@ -1,7 +1,7 @@ Name: zipper Summary: C++ wrapper around minizip compression library Version: 1.0.3 -Release: 9%{?dist} +Release: 10%{?dist} URL: https://github.com/sebastiandev/zipper ## Source archive from github obtained by @@ -92,6 +92,9 @@ rm -f %{buildroot}%{_bindir}/Zipper-test %{_libdir}/libZipper-static.a %changelog +* Sun Jan 19 2025 Fedora Release Engineering - 1.0.3-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Sat Jul 20 2024 Fedora Release Engineering - 1.0.3-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 36273643dae035a2f2368523e18765b3d722ecb2 Mon Sep 17 00:00:00 2001 From: Antonio Trande Date: Fri, 25 Jul 2025 21:47:23 +0200 Subject: [PATCH 3/6] Fix rhbz#2381650 rhbz#2381687 --- zipper.spec | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/zipper.spec b/zipper.spec index c94a933..e5723ac 100644 --- a/zipper.spec +++ b/zipper.spec @@ -1,7 +1,7 @@ Name: zipper Summary: C++ wrapper around minizip compression library Version: 1.0.3 -Release: 10%{?dist} +Release: 11%{?dist} URL: https://github.com/sebastiandev/zipper ## Source archive from github obtained by @@ -64,7 +64,10 @@ This package provides static library file of %{name}. -DCMAKE_VERBOSE_MAKEFILE:BOOL=TRUE -DCMAKE_COLOR_MAKEFILE:BOOL=ON \ -DCMAKE_SKIP_INSTALL_RPATH:BOOL=YES -DCMAKE_SKIP_RPATH:BOOL=YES \ -DINSTALL_PKGCONFIG_DIR:PATH=%{_libdir}/pkgconfig \ - -DZLIB_INCLUDE_DIR:PATH=%{_includedir} -DZLIB_LIBRARY_RELEASE:FILEPATH=%{_libdir}/libz.so + -DZLIB_INCLUDE_DIR:PATH=%{_includedir} -DZLIB_LIBRARY_RELEASE:FILEPATH=%{_libdir}/libz.so \ +%if "%{?_lib}" == "lib64" + %{?_cmake_lib_suffix64} +%endif %cmake_build %install @@ -92,6 +95,9 @@ rm -f %{buildroot}%{_bindir}/Zipper-test %{_libdir}/libZipper-static.a %changelog +* Fri Jul 25 2025 Antonio Trande - 1.0.3-11 +- Fix rhbz#2381650 rhbz#2381687 + * Sun Jan 19 2025 Fedora Release Engineering - 1.0.3-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 33653298995d6a29a617accd57ea3f9e63461f28 Mon Sep 17 00:00:00 2001 From: Cristian Le Date: Wed, 30 Jul 2025 17:53:41 +0200 Subject: [PATCH 4/6] Add temporary fix for CMake 4.0 --- zipper.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/zipper.spec b/zipper.spec index e5723ac..589f7fc 100644 --- a/zipper.spec +++ b/zipper.spec @@ -1,7 +1,7 @@ Name: zipper Summary: C++ wrapper around minizip compression library Version: 1.0.3 -Release: 11%{?dist} +Release: 12%{?dist} URL: https://github.com/sebastiandev/zipper ## Source archive from github obtained by @@ -59,6 +59,8 @@ This package provides static library file of %{name}. %autosetup -n %{name} -p1 %build +# TODO: remove CMAKE_POLICY_VERSION_MINIMUM if the new upstream source is used +export CMAKE_POLICY_VERSION_MINIMUM=3.5 %cmake -Wno-cpp -Wno-dev \ -DCMAKE_INSTALL_PREFIX:PATH=%{_prefix} -DBUILD_SHARED_VERSION:BOOL=ON -DBUILD_STATIC_VERSION:BOOL=ON \ -DCMAKE_VERBOSE_MAKEFILE:BOOL=TRUE -DCMAKE_COLOR_MAKEFILE:BOOL=ON \ @@ -95,6 +97,9 @@ rm -f %{buildroot}%{_bindir}/Zipper-test %{_libdir}/libZipper-static.a %changelog +* Wed Jul 30 2025 Cristian Le - 1.0.3-12 +- Add temporary fix for CMake 4.0 (rhbz#2381650) + * Fri Jul 25 2025 Antonio Trande - 1.0.3-11 - Fix rhbz#2381650 rhbz#2381687 From c879e988af1928b656103246149792c9993062b5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 17 Jan 2026 21:08:59 +0000 Subject: [PATCH 5/6] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- zipper.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zipper.spec b/zipper.spec index 589f7fc..aa3a224 100644 --- a/zipper.spec +++ b/zipper.spec @@ -1,7 +1,7 @@ Name: zipper Summary: C++ wrapper around minizip compression library Version: 1.0.3 -Release: 12%{?dist} +Release: 13%{?dist} URL: https://github.com/sebastiandev/zipper ## Source archive from github obtained by @@ -97,6 +97,9 @@ rm -f %{buildroot}%{_bindir}/Zipper-test %{_libdir}/libZipper-static.a %changelog +* Sat Jan 17 2026 Fedora Release Engineering - 1.0.3-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Wed Jul 30 2025 Cristian Le - 1.0.3-12 - Add temporary fix for CMake 4.0 (rhbz#2381650) From 7e8c03eddf455d59d055bb113d02b0a21ddefa87 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 09:41:21 +0000 Subject: [PATCH 6/6] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild --- zipper.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zipper.spec b/zipper.spec index aa3a224..4db6a1e 100644 --- a/zipper.spec +++ b/zipper.spec @@ -1,7 +1,7 @@ Name: zipper Summary: C++ wrapper around minizip compression library Version: 1.0.3 -Release: 13%{?dist} +Release: 14%{?dist} URL: https://github.com/sebastiandev/zipper ## Source archive from github obtained by @@ -97,6 +97,9 @@ rm -f %{buildroot}%{_bindir}/Zipper-test %{_libdir}/libZipper-static.a %changelog +* Fri Jul 17 2026 Fedora Release Engineering - 1.0.3-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild + * Sat Jan 17 2026 Fedora Release Engineering - 1.0.3-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild