Accepting request 774116 from zypp:Head
Softwarestack update OBS-URL: https://build.opensuse.org/request/show/774116 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libzypp?expand=0&rev=422
This commit is contained in:
commit
6f8171c8f8
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:6342eadfbc9f28264a038563d9f125009dc78ce8fbc8ffc0942270202d1ee46f
|
|
||||||
size 4724466
|
|
3
libzypp-17.22.1.tar.bz2
Normal file
3
libzypp-17.22.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f8e3deb0ce5ac39843c0bdec63e6552845a6a777ceed27233ec5126d5f9850bc
|
||||||
|
size 4754455
|
@ -1,3 +1,18 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Feb 7 14:56:40 CET 2020 - ma@suse.de
|
||||||
|
|
||||||
|
- update translations
|
||||||
|
- Replace mongoose/webrick with nginx in test suite.
|
||||||
|
This patch makes use of nginx to replace the current WebServer
|
||||||
|
mongoose implementation. Also adds support for registering
|
||||||
|
callback functions for certain URL requests via FCGI, making it
|
||||||
|
possible to mock HTTP responses and test more complex HTTP setups.
|
||||||
|
- boost: Fix deprecated auto_unit_test.hpp includes.
|
||||||
|
- Disable zchunk on Leap-15.0 and SLE15-* while there is no libzck.
|
||||||
|
- Fix decision whether to download ZCHUNK files.
|
||||||
|
libzypp and libsolv must both be able to read the format.
|
||||||
|
- version 17.22.1 (22)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jan 23 16:30:19 CET 2020 - ma@suse.de
|
Thu Jan 23 16:30:19 CET 2020 - ma@suse.de
|
||||||
|
|
||||||
|
21
libzypp.spec
21
libzypp.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package libzypp
|
# spec file for package libzypp
|
||||||
#
|
#
|
||||||
# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2020 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -23,9 +23,9 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: libzypp
|
Name: libzypp
|
||||||
Version: 17.22.0
|
Version: 17.22.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Url: https://github.com/openSUSE/libzypp
|
URL: https://github.com/openSUSE/libzypp
|
||||||
Summary: Library for package, patch, pattern and product management
|
Summary: Library for package, patch, pattern and product management
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
Group: System/Packages
|
Group: System/Packages
|
||||||
@ -85,8 +85,11 @@ BuildRequires: libsolv-tools
|
|||||||
Requires: libsolv-tools
|
Requires: libsolv-tools
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
# required for testsuite, webrick
|
BuildRequires: glib2-devel
|
||||||
BuildRequires: ruby
|
BuildRequires: libsigc++2-devel
|
||||||
|
|
||||||
|
# required for testsuite
|
||||||
|
BuildRequires: nginx
|
||||||
|
|
||||||
Requires: rpm
|
Requires: rpm
|
||||||
|
|
||||||
@ -95,20 +98,22 @@ BuildRequires: rpm-devel > 4.4
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if 0%{?fedora_version} || 0%{?rhel_version} >= 600 || 0%{?centos_version} >= 600
|
%if 0%{?fedora_version} || 0%{?rhel_version} >= 600 || 0%{?centos_version} >= 600
|
||||||
BuildRequires: glib2-devel
|
|
||||||
BuildRequires: popt-devel
|
BuildRequires: popt-devel
|
||||||
BuildRequires: rpm-devel > 4.4
|
BuildRequires: rpm-devel > 4.4
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if 0%{?mandriva_version}
|
%if 0%{?mandriva_version}
|
||||||
BuildRequires: glib2-devel
|
|
||||||
BuildRequires: librpm-devel > 4.4
|
BuildRequires: librpm-devel > 4.4
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if 0%{?suse_version}
|
%if 0%{?suse_version}
|
||||||
BuildRequires: libgpgme-devel
|
BuildRequires: libgpgme-devel
|
||||||
|
#testsuite
|
||||||
|
BuildRequires: FastCGI-devel
|
||||||
%else
|
%else
|
||||||
BuildRequires: gpgme-devel
|
BuildRequires: gpgme-devel
|
||||||
|
#testsuite
|
||||||
|
BuildRequires: fcgi-devel
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%define min_curl_version 7.19.4
|
%define min_curl_version 7.19.4
|
||||||
@ -273,7 +278,7 @@ cd ..
|
|||||||
|
|
||||||
%check
|
%check
|
||||||
pushd build/tests
|
pushd build/tests
|
||||||
LD_LIBRARY_PATH="%{buildroot}/%{_libdir}:$LD_LIBRARY_PATH" ctest --output-on-failure .
|
LD_LIBRARY_PATH="$(pwd)/../zypp:$LD_LIBRARY_PATH" ctest --output-on-failure .
|
||||||
popd
|
popd
|
||||||
|
|
||||||
%post
|
%post
|
||||||
|
Loading…
Reference in New Issue
Block a user