Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-uamqp for openSUSE:Factory checked in at 2023-07-14 15:36:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-uamqp (Old) and /work/SRC/openSUSE:Factory/.python-uamqp.new.3193 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-uamqp" Fri Jul 14 15:36:14 2023 rev:20 rq:1098673 version:1.6.5 Changes: -------- --- /work/SRC/openSUSE:Factory/python-uamqp/python-uamqp.changes 2023-02-17 16:45:34.187053466 +0100 +++ /work/SRC/openSUSE:Factory/.python-uamqp.new.3193/python-uamqp.changes 2023-07-14 15:36:23.722199314 +0200 @@ -1,0 +2,8 @@ +Wed Jul 12 18:16:28 UTC 2023 - John Paul Adrian Glaubitz <adrian.glaub...@suse.com> + +- New upstream release + + Version 1.6.5 + + For detailed information about changes see the + HISTORY.rst file provided with this package + +------------------------------------------------------------------- Old: ---- uamqp-1.6.4.tar.gz New: ---- uamqp-1.6.5.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-uamqp.spec ++++++ --- /var/tmp/diff_new_pack.07wIvg/_old 2023-07-14 15:36:24.590204362 +0200 +++ /var/tmp/diff_new_pack.07wIvg/_new 2023-07-14 15:36:24.594204386 +0200 @@ -20,7 +20,7 @@ %define skip_python2 1 %endif Name: python-uamqp -Version: 1.6.4 +Version: 1.6.5 Release: 0 Summary: AMQP 10 Client Library for Python License: MIT ++++++ uamqp-1.6.4.tar.gz -> uamqp-1.6.5.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/uamqp-1.6.4/HISTORY.rst new/uamqp-1.6.5/HISTORY.rst --- old/uamqp-1.6.4/HISTORY.rst 2023-02-09 20:33:08.000000000 +0100 +++ new/uamqp-1.6.5/HISTORY.rst 2023-07-12 19:28:05.000000000 +0200 @@ -2,6 +2,11 @@ Release History =============== +1.6.5 (2023-07-12) ++++++++++++++++++++ + +- Few more updates to submodules to support OpenSSL 3.0 compilation + 1.6.4 (2023-02-09) +++++++++++++++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/uamqp-1.6.4/PKG-INFO new/uamqp-1.6.5/PKG-INFO --- old/uamqp-1.6.4/PKG-INFO 2023-02-09 20:33:46.000000000 +0100 +++ new/uamqp-1.6.5/PKG-INFO 2023-07-12 19:29:07.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: uamqp -Version: 1.6.4 +Version: 1.6.5 Summary: AMQP 1.0 Client Library for Python Home-page: https://github.com/Azure/azure-uamqp-python Author: Microsoft Corporation @@ -141,6 +141,11 @@ Release History =============== + 1.6.5 (2023-07-12) + +++++++++++++++++++ + + - Few more updates to submodules to support OpenSSL 3.0 compilation + 1.6.4 (2023-02-09) +++++++++++++++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/uamqp-1.6.4/setup.py new/uamqp-1.6.5/setup.py --- old/uamqp-1.6.4/setup.py 2023-02-09 20:33:08.000000000 +0100 +++ new/uamqp-1.6.5/setup.py 2023-07-12 19:28:05.000000000 +0200 @@ -93,7 +93,7 @@ def get_generator_flags(): flags = ["-G"] if is_win: - flags.append("\"Visual Studio 16 2019\"") + flags.append("\"Visual Studio 17 2022\"") flags.append("-A") flags.append("ARM64" if platform.machine() == "ARM64" else "x64" if is_x64 else "Win32") else: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/uamqp-1.6.4/src/vendor/azure-uamqp-c/deps/azure-c-shared-utility/adapters/x509_openssl.c new/uamqp-1.6.5/src/vendor/azure-uamqp-c/deps/azure-c-shared-utility/adapters/x509_openssl.c --- old/uamqp-1.6.4/src/vendor/azure-uamqp-c/deps/azure-c-shared-utility/adapters/x509_openssl.c 2023-02-09 20:33:08.000000000 +0100 +++ new/uamqp-1.6.5/src/vendor/azure-uamqp-c/deps/azure-c-shared-utility/adapters/x509_openssl.c 2023-07-12 19:28:05.000000000 +0200 @@ -345,7 +345,7 @@ else { /*Codes_SRS_X509_OPENSSL_02_012: [ x509_openssl_add_certificates shall get the memory BIO method function by calling BIO_s_mem. ]*/ -#if (OPENSSL_VERSION_NUMBER >= 0x10100000L) && (OPENSSL_VERSION_NUMBER < 0x20000000L) +#if (OPENSSL_VERSION_NUMBER >= 0x10100000L) || defined(LIBRESSL_VERSION_NUMBER) const BIO_METHOD* bio_method; #else BIO_METHOD* bio_method; @@ -423,4 +423,4 @@ } } return result; -} +} \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/uamqp-1.6.4/uamqp/__init__.py new/uamqp-1.6.5/uamqp/__init__.py --- old/uamqp-1.6.4/uamqp/__init__.py 2023-02-09 20:33:08.000000000 +0100 +++ new/uamqp-1.6.5/uamqp/__init__.py 2023-07-12 19:28:05.000000000 +0200 @@ -35,7 +35,7 @@ pass # Async not supported. -__version__ = "1.6.4" +__version__ = "1.6.5" _logger = logging.getLogger(__name__) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/uamqp-1.6.4/uamqp.egg-info/PKG-INFO new/uamqp-1.6.5/uamqp.egg-info/PKG-INFO --- old/uamqp-1.6.4/uamqp.egg-info/PKG-INFO 2023-02-09 20:33:45.000000000 +0100 +++ new/uamqp-1.6.5/uamqp.egg-info/PKG-INFO 2023-07-12 19:29:07.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: uamqp -Version: 1.6.4 +Version: 1.6.5 Summary: AMQP 1.0 Client Library for Python Home-page: https://github.com/Azure/azure-uamqp-python Author: Microsoft Corporation @@ -141,6 +141,11 @@ Release History =============== + 1.6.5 (2023-07-12) + +++++++++++++++++++ + + - Few more updates to submodules to support OpenSSL 3.0 compilation + 1.6.4 (2023-02-09) +++++++++++++++++++