gitrev b9581e83f (Remove Symbols exported with ZYPP_TESTS, 2024-07-05)

OBS-URL: https://build.opensuse.org/package/show/zypp:Head/libzypp?expand=0&rev=2738
This commit is contained in:
ZYpp Developers 2024-07-08 12:14:57 +00:00 committed by Git OBS Bridge
parent 23ddab41e3
commit 515538d615
2 changed files with 24 additions and 3 deletions

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3d7e0b2b79d63e2130dff8eebd3e5df4aaf65b42b79d6af355c26421d444fe3e
size 5612263
oid sha256:cf6495ca4d3fad29ce26d19806680ac7996d53543f1d3053d27b31ef16167171
size 5614319

View File

@ -20,12 +20,20 @@
%else
%bcond_with zchunk
%endif
# libsolvs external references require us to link against it:
# libsolvs external references might require us to link against zstd, bz2, xz
%if 0%{?sle_version} >= 150000 || 0%{?suse_version} >= 1500
%bcond_without zstd
%else
%bcond_with zstd
%endif
%if 0%{?sle_version} >= 120300 || 0%{?suse_version} >= 1330 || !0%{?suse_version}
%bcond_without bz2
%bcond_without xz
%else
%bcond_with bz2
%bcond_with xz
%endif
%bcond_without mediabackend_tests
@ -187,10 +195,23 @@ BuildRequires: libxslt-tools
%if %{with zchunk}
BuildRequires: libzck-devel
%endif
%if %{with zstd}
BuildRequires: libzstd-devel
%endif
%if %{with bz2}
%if 0%{?suse_version}
BuildRequires: libbz2-devel
%else
BuildRequires: bzip2-devel
%endif
%endif
%if %{with xz}
BuildRequires: xz-devel
%endif
%description
libzypp is the package management library that powers applications
like YaST, zypper and the openSUSE/SLE implementation of PackageKit.