Accepting request 1249276 from zypp:Head

Softwarestack update

OBS-URL: https://build.opensuse.org/request/show/1249276
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libzypp?expand=0&rev=509
This commit is contained in:
2025-03-01 18:16:16 +00:00
committed by Git OBS Bridge
4 changed files with 43 additions and 5 deletions

BIN
libzypp-17.36.2.tar.bz2 (Stored with Git LFS)

Binary file not shown.

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

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

View File

@@ -1,3 +1,33 @@
-------------------------------------------------------------------
Fri Feb 28 16:20:03 CET 2025 - ma@suse.de
- Add a transaction package preloader (fixes openSUSE/zypper#104)
This patch adds a preloader that concurrently downloads files
during a transaction commit. It's not yet enabled per default.
To enable the preview set ZYPP_CURL2=1 and ZYPP_PCK_PRELOAD=1
in the environment.
- RpmPkgSigCheck_test: Exchange the test package signingkey
(fixes #622)
- Exclude MediaCurl tests if DISABLE_MEDIABACKEND_TESTS (fixes #626)
- Strip a mediahandler tag from baseUrl querystrings.
- version 17.36.4 (35)
-------------------------------------------------------------------
Thu Feb 27 10:21:22 CET 2025 - ma@suse.de
- Disable zypp.conf:download.use_deltarpm by default (fixes #620)
Measurements show that you don't benefit from using deltarpms
unless your network connection is very slow. That's why most
distributions even stop offering deltarpms. The default remains
unchanged on SUSE-15.6 and older.
- Make sure repo variables are evaluated in the right context
(bsc#1237044)
- Introducing MediaCurl2 a alternative HTTP backend.
This patch adds MediaCurl2 as a testbed for experimenting with a
more simple way to download files. Set ZYPP_CURL2=1 in the
environment to use it.
- version 17.36.3 (35)
-------------------------------------------------------------------
Fri Feb 21 15:08:12 CET 2025 - ma@suse.de

View File

@@ -59,7 +59,7 @@
%bcond_with enable_preview_single_rpmtrans_as_default_for_zypper
Name: libzypp
Version: 17.36.2
Version: 17.36.4
Release: 0
License: GPL-2.0-or-later
URL: https://github.com/openSUSE/libzypp
@@ -291,6 +291,7 @@ Developer documentation for libzypp.
%build
mkdir build
cd build
%if 0%{?suse_version} == 1600
# bsc#1216091: rpm-4.18' does not execute 'rpm --runposttrans'
# scripts chroot if --root is used.
@@ -300,7 +301,14 @@ export CXXFLAGS="%{optflags} -DWORKAROUNDDUMPPOSTTRANS_BUG_1216091"
export CFLAGS="%{optflags}"
export CXXFLAGS="%{optflags}"
%endif
unset EXTRA_CMAKE_OPTIONS
EXTRA_CMAKE_OPTIONS=
%if 0%{?suse_version}
EXTRA_CMAKE_OPTIONS="${EXTRA_CMAKE_OPTIONS} -DLIBZYPP_CODESTREAM=0%{?suse_version}:0%{?sle_version}:0%{?is_opensuse}"
%endif
%if 0%{?suse_version} <= 1500 && 0%{?sle_version} <= 150600
EXTRA_CMAKE_OPTIONS="${EXTRA_CMAKE_OPTIONS} -DLIBZYPP_CONFIG_USE_DELTARPM_BY_DEFAULT=1"
%endif
cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} \
-DENABLE_BUILD_DOCS=TRUE \