Accepting request 835695 from zypp:Head

Softwarestack update

OBS-URL: https://build.opensuse.org/request/show/835695
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libzypp?expand=0&rev=434
This commit is contained in:
Dominique Leuenberger 2020-09-24 14:12:05 +00:00 committed by Git OBS Bridge
commit f448c5e899
4 changed files with 30 additions and 5 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6f48da531debbd5f5b04bbff06e8837b01874a0e5981ae59fd2001964e96f67c
size 4771006

3
libzypp-17.25.0.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5f026d2cc9988312e0c736297015b0aea45f5d4bb9a33446f3a106af3e290006
size 4782743

View File

@ -1,3 +1,17 @@
-------------------------------------------------------------------
Fri Sep 18 16:45:49 CEST 2020 - ma@suse.de
- RepoInfo: Return the type of the local metadata cache as
fallback (bsc#1176435)
- VendorAttr: Fix broken "suse,opensuse" equivalence handling.
Enhance API and testcases. (bsc#1174918)
- Update docs regarding 'opensuse' namepace matching.
- New solver testcase format.
- Link against libzsd to close libsolvs open references
(as we link statically)
- BuildRequires: libsolv-devel >= 0.7.15.
- version 17.25.0 (22)
-------------------------------------------------------------------
Fri Aug 28 17:09:59 CEST 2020 - ma@suse.de

View File

@ -21,11 +21,17 @@
%else
%bcond_with zchunk
%endif
# libsolvs external references require us to link against it:
%if 0%{?sle_version} >= 150000 || 0%{?suse_version} >= 1500
%bcond_without zstd
%else
%bcond_with zstd
%endif
%bcond_without mediabackend_tests
Name: libzypp
Version: 17.24.2
Version: 17.25.0
Release: 0
URL: https://github.com/openSUSE/libzypp
Summary: Library for package, patch, pattern and product management
@ -68,6 +74,7 @@ BuildRequires: gcc-c++ >= 7
BuildRequires: gettext-devel
BuildRequires: graphviz
BuildRequires: libxml2-devel
BuildRequires: yaml-cpp-devel
%if 0%{?suse_version} != 1110
# No libproxy on SLES
BuildRequires: libproxy-devel
@ -79,7 +86,7 @@ BuildRequires: pkgconfig
BuildRequires: pkg-config
%endif
BuildRequires: libsolv-devel >= 0.7.11
BuildRequires: libsolv-devel >= 0.7.15
%if 0%{?suse_version} >= 1100
BuildRequires: libsolv-tools
%requires_eq libsolv-tools
@ -151,6 +158,9 @@ BuildRequires: libxslt-tools
%if %{with zchunk}
BuildRequires: libzck-devel
%endif
%if %{with zstd}
BuildRequires: libzstd-devel
%endif
%description
libzypp is the package management library that powers applications
@ -244,6 +254,7 @@ cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_SKIP_RPATH=1 \
%{?with_zchunk:-DENABLE_ZCHUNK_COMPRESSION=1} \
%{?with_zstd:-DENABLE_ZSTD_COMPRESSION=1} \
%{!?with_mediabackend_tests:-DDISABLE_MEDIABACKEND_TESTS=1} \
${EXTRA_CMAKE_OPTIONS} \
..