Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libzypp for openSUSE:Factory checked in at 2022-10-18 12:44:33 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libzypp (Old) and /work/SRC/openSUSE:Factory/.libzypp.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libzypp" Tue Oct 18 12:44:33 2022 rev:465 rq:1012112 version:17.31.4 Changes: -------- --- /work/SRC/openSUSE:Factory/libzypp/libzypp.changes 2022-10-15 16:36:19.785990821 +0200 +++ /work/SRC/openSUSE:Factory/.libzypp.new.2275/libzypp.changes 2022-10-18 12:44:50.269701598 +0200 @@ -1,0 +2,7 @@ +Mon Oct 17 12:53:40 CEST 2022 - m...@suse.de + +- Do not clean up MediaSetAccess before using the geoip file + (fixes #424) +- version 17.31.4 (22) + +------------------------------------------------------------------- Old: ---- libzypp-17.31.3.tar.bz2 New: ---- libzypp-17.31.4.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libzypp.spec ++++++ --- /var/tmp/diff_new_pack.2hBvfO/_old 2022-10-18 12:44:50.873702973 +0200 +++ /var/tmp/diff_new_pack.2hBvfO/_new 2022-10-18 12:44:50.881702991 +0200 @@ -43,7 +43,7 @@ %bcond_with enable_preview_single_rpmtrans_as_default_for_zypper Name: libzypp -Version: 17.31.3 +Version: 17.31.4 Release: 0 License: GPL-2.0-or-later URL: https://github.com/openSUSE/libzypp ++++++ libzypp-17.31.3.tar.bz2 -> libzypp-17.31.4.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libzypp-17.31.3/VERSION.cmake new/libzypp-17.31.4/VERSION.cmake --- old/libzypp-17.31.3/VERSION.cmake 2022-10-14 15:34:44.000000000 +0200 +++ new/libzypp-17.31.4/VERSION.cmake 2022-10-17 13:57:32.000000000 +0200 @@ -61,8 +61,8 @@ SET(LIBZYPP_MAJOR "17") SET(LIBZYPP_COMPATMINOR "22") SET(LIBZYPP_MINOR "31") -SET(LIBZYPP_PATCH "3") +SET(LIBZYPP_PATCH "4") # -# LAST RELEASED: 17.31.3 (22) +# LAST RELEASED: 17.31.4 (22) # (The number in parenthesis is LIBZYPP_COMPATMINOR) #======= diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libzypp-17.31.3/package/libzypp.changes new/libzypp-17.31.4/package/libzypp.changes --- old/libzypp-17.31.3/package/libzypp.changes 2022-10-14 15:34:44.000000000 +0200 +++ new/libzypp-17.31.4/package/libzypp.changes 2022-10-17 13:57:32.000000000 +0200 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Mon Oct 17 12:53:40 CEST 2022 - m...@suse.de + +- Do not clean up MediaSetAccess before using the geoip file + (fixes #424) +- version 17.31.4 (22) + +------------------------------------------------------------------- Fri Oct 14 14:09:51 CEST 2022 - m...@suse.de - Improve download of optional files (fixes #416) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libzypp-17.31.3/zypp/RepoManager.cc new/libzypp-17.31.4/zypp/RepoManager.cc --- old/libzypp-17.31.3/zypp/RepoManager.cc 2022-10-14 15:34:44.000000000 +0200 +++ new/libzypp-17.31.4/zypp/RepoManager.cc 2022-10-17 11:02:34.000000000 +0200 @@ -2619,11 +2619,10 @@ return; } + MediaSetAccess acc( url ); zypp::ManagedFile file; try { - // query the file from the server - MediaSetAccess acc( url ); file = zypp::ManagedFile (acc.provideOptionalFile("/geoip"), filesystem::unlink ); } catch ( const zypp::Exception &e ) {