Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-pip for openSUSE:Factory 
checked in at 2024-09-24 17:31:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pip (Old)
 and      /work/SRC/openSUSE:Factory/.python-pip.new.29891 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-pip"

Tue Sep 24 17:31:20 2024 rev:68 rq:1202624 version:24.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-pip/python-pip.changes    2024-08-29 
15:42:33.603218199 +0200
+++ /work/SRC/openSUSE:Factory/.python-pip.new.29891/python-pip.changes 
2024-09-24 17:31:27.892529433 +0200
@@ -1,0 +2,6 @@
+Mon Sep 23 11:21:24 UTC 2024 - Daniel Garcia <daniel.gar...@suse.com>
+
+- Adapt disable-ssl-context-in-buildenv.patch to make it compatible
+  with leap
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ disable-ssl-context-in-buildenv.patch ++++++
--- /var/tmp/diff_new_pack.bkHvF6/_old  2024-09-24 17:31:30.392634094 +0200
+++ /var/tmp/diff_new_pack.bkHvF6/_new  2024-09-24 17:31:30.420635267 +0200
@@ -7,7 +7,7 @@
          extract_zipped_paths(DEFAULT_CA_BUNDLE_PATH)
      )
 -except ImportError:
-+except (ImportError, FileNotFoundError):
++except (ImportError, FileNotFoundError, ssl.SSLError):
      # Bypass default SSLContext creation when Python
      # interpreter isn't built with the ssl module.
      _preloaded_ssl_context = None
@@ -22,7 +22,7 @@
 -    ctx.load_verify_locations(certifi.where())
 +    try:
 +        ctx.load_verify_locations(certifi.where())
-+    except FileNotFoundError:
++    except (FileNotFoundError, ssl.SSLError):
 +        logger.warning("Disabling truststore because of missing certificates")
 +        return None
      return ctx

Reply via email to