Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-pycurl for openSUSE:Factory checked in at 2025-11-07 18:21:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-pycurl (Old) and /work/SRC/openSUSE:Factory/.python-pycurl.new.1980 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pycurl" Fri Nov 7 18:21:46 2025 rev:51 rq:1316093 version:7.45.6 Changes: -------- --- /work/SRC/openSUSE:Factory/python-pycurl/python-pycurl.changes 2025-09-12 21:09:34.227329353 +0200 +++ /work/SRC/openSUSE:Factory/.python-pycurl.new.1980/python-pycurl.changes 2025-11-07 18:21:59.070249418 +0100 @@ -1,0 +2,6 @@ +Thu Nov 6 16:51:52 UTC 2025 - Andreas Stieger <[email protected]> + +- fix build with libcurl >= 8.17.0 boo#1253116 + skip_kerberos_tests_on_libcurl_8_17_0.patch + +------------------------------------------------------------------- New: ---- skip_kerberos_tests_on_libcurl_8_17_0.patch ----------(New B)---------- New:- fix build with libcurl >= 8.17.0 boo#1253116 skip_kerberos_tests_on_libcurl_8_17_0.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-pycurl.spec ++++++ --- /var/tmp/diff_new_pack.fTjrJA/_old 2025-11-07 18:21:59.802280218 +0100 +++ /var/tmp/diff_new_pack.fTjrJA/_new 2025-11-07 18:21:59.802280218 +0100 @@ -45,6 +45,8 @@ Patch3: make-leap15-compat.patch # PATCH-FIX-UPSTREAM handle-change-debug-curl-8.16.0.patch gh#pycurl/pycurl@eb7f52eeef85 Patch4: handle-change-debug-curl-8.16.0.patch +# PATCH-FIX-UPSTREAM skip_kerberos_tests_on_libcurl_8_17_0.patch gh#pycurl/pycurl@33bf92f +Patch5: skip_kerberos_tests_on_libcurl_8_17_0.patch BuildRequires: %{python_module devel} BuildRequires: %{python_module pip} BuildRequires: %{python_module setuptools} ++++++ skip_kerberos_tests_on_libcurl_8_17_0.patch ++++++ >From ea92e3ca230a3ff3d464cb6816102fa157177aca Mon Sep 17 00:00:00 2001 From: Jacek Migacz <[email protected]> Date: Fri, 17 Oct 2025 13:55:48 +0200 Subject: [PATCH] Skip Kerberos tests on libcurl >= 8.17.0 CURLOPT_KRBLEVEL and CURLOPT_KRB4LEVEL were removed in libcurl 8.17.0 and now return CURLE_NOT_BUILT_IN. --- tests/option_constants_test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/option_constants_test.py b/tests/option_constants_test.py index 1dd862c39..de1b08012 100644 --- a/tests/option_constants_test.py +++ b/tests/option_constants_test.py @@ -502,12 +502,14 @@ def test_ssl_sessionid_cache(self): curl.setopt(curl.SSL_SESSIONID_CACHE, True) curl.close() + @util.removed_in_libcurl(8, 17, 0) @util.only_gssapi def test_krblevel(self): curl = pycurl.Curl() curl.setopt(curl.KRBLEVEL, 'clear') curl.close() + @util.removed_in_libcurl(8, 17, 0) @util.only_gssapi def test_krb4level(self): curl = pycurl.Curl()
