diff --git a/SPECS/drpm.spec b/SPECS/drpm.spec index 128b8a5..7e2bc77 100644 --- a/SPECS/drpm.spec +++ b/SPECS/drpm.spec @@ -1,5 +1,5 @@ -# Do not build with zstd for RHEL -%if 0%{?rhel} || (0%{?suse_version} && 0%{?suse_version} < 1500) +# Do not build with zstd for RHEL < 8 +%if (0%{?rhel} && 0%{?rhel} < 8) || (0%{?suse_version} && 0%{?suse_version} < 1500) %bcond_with zstd %else %bcond_without zstd @@ -7,7 +7,7 @@ Name: drpm Version: 0.4.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A library for making, reading and applying deltarpm packages # the entire source code is LGPLv2+, except src/drpm_diff.c and src/drpm_search.c which are BSD License: LGPLv2+ and BSD @@ -85,6 +85,9 @@ popd %{_libdir}/pkgconfig/drpm.pc %changelog +* Tue Jun 02 2020 Ales Matej 0.4.1-2 +- Rebuild with zstd support (RhBug:1842036) + * Wed Oct 23 2019 Ales Matej 0.4.1-1 - Update to 0.4.1 - Relicense to LGPLv2+