Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-qt5-sip for openSUSE:Factory checked in at 2023-02-11 21:55:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-qt5-sip (Old) and /work/SRC/openSUSE:Factory/.python-qt5-sip.new.1848 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-qt5-sip" Sat Feb 11 21:55:46 2023 rev:7 rq:1064077 version:12.11.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-qt5-sip/python-qt5-sip.changes 2023-01-14 20:30:53.184918277 +0100 +++ /work/SRC/openSUSE:Factory/.python-qt5-sip.new.1848/python-qt5-sip.changes 2023-02-11 21:55:47.575050826 +0100 @@ -1,0 +2,6 @@ +Sun Jan 29 19:42:52 UTC 2023 - Ben Greiner <c...@bnavigator.de> + +- Update to ABI version 12.11.1 + * error on subclassing enums + +------------------------------------------------------------------- Old: ---- PyQt5_sip-12.11.0.tar.gz New: ---- PyQt5_sip-12.11.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-qt5-sip.spec ++++++ --- /var/tmp/diff_new_pack.PxPmw9/_old 2023-02-11 21:55:48.643057475 +0100 +++ /var/tmp/diff_new_pack.PxPmw9/_new 2023-02-11 21:55:48.651057525 +0100 @@ -17,7 +17,7 @@ Name: python-qt5-sip -Version: 12.11.0 +Version: 12.11.1 Release: 0 License: GPL-2.0-only OR GPL-3.0-only OR SUSE-SIP Summary: The sip module support for PyQt5 ++++++ PyQt5_sip-12.11.0.tar.gz -> PyQt5_sip-12.11.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PyQt5_sip-12.11.0/PKG-INFO new/PyQt5_sip-12.11.1/PKG-INFO --- old/PyQt5_sip-12.11.0/PKG-INFO 2022-06-18 13:30:18.609412000 +0200 +++ new/PyQt5_sip-12.11.1/PKG-INFO 2023-01-15 18:36:32.844342200 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: PyQt5_sip -Version: 12.11.0 +Version: 12.11.1 Summary: The sip module support for PyQt5 Home-page: https://www.riverbankcomputing.com/software/sip/ Author: Riverbank Computing Limited diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PyQt5_sip-12.11.0/PyQt5_sip.egg-info/PKG-INFO new/PyQt5_sip-12.11.1/PyQt5_sip.egg-info/PKG-INFO --- old/PyQt5_sip-12.11.0/PyQt5_sip.egg-info/PKG-INFO 2022-06-18 13:30:18.000000000 +0200 +++ new/PyQt5_sip-12.11.1/PyQt5_sip.egg-info/PKG-INFO 2023-01-15 18:36:32.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: PyQt5-sip -Version: 12.11.0 +Version: 12.11.1 Summary: The sip module support for PyQt5 Home-page: https://www.riverbankcomputing.com/software/sip/ Author: Riverbank Computing Limited diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PyQt5_sip-12.11.0/setup.py new/PyQt5_sip-12.11.1/setup.py --- old/PyQt5_sip-12.11.0/setup.py 2022-06-18 13:30:18.000000000 +0200 +++ new/PyQt5_sip-12.11.1/setup.py 2023-01-15 18:36:32.000000000 +0100 @@ -38,7 +38,7 @@ # Do the setup. setup( name='PyQt5_sip', - version='12.11.0', + version='12.11.1', license='SIP', python_requires='>=3.7', ext_modules=[module] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PyQt5_sip-12.11.0/sip.h new/PyQt5_sip-12.11.1/sip.h --- old/PyQt5_sip-12.11.0/sip.h 2022-06-18 13:30:18.000000000 +0200 +++ new/PyQt5_sip-12.11.1/sip.h 2023-01-15 18:36:32.000000000 +0100 @@ -46,7 +46,7 @@ /* The version of the ABI. */ #define SIP_ABI_MAJOR_VERSION 12 #define SIP_ABI_MINOR_VERSION 11 -#define SIP_MODULE_PATCH_VERSION 0 +#define SIP_MODULE_PATCH_VERSION 1 /* @@ -70,8 +70,8 @@ /* The version of the code generator. */ -#define SIP_VERSION 0x60602 -#define SIP_VERSION_STR "6.6.2" +#define SIP_VERSION 0x60706 +#define SIP_VERSION_STR "6.7.6" /* These are all dependent on the user-specified name of the sip module. */ #define _SIP_MODULE_FQ_NAME "PyQt5.sip" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PyQt5_sip-12.11.0/siplib.c new/PyQt5_sip-12.11.1/siplib.c --- old/PyQt5_sip-12.11.0/siplib.c 2022-06-18 13:30:18.000000000 +0200 +++ new/PyQt5_sip-12.11.1/siplib.c 2023-01-15 18:36:32.000000000 +0100 @@ -12198,7 +12198,12 @@ sipEnumTypeObject *py_type; sipPySlotDef *psd; - assert(currentType != NULL); + if (currentType == NULL) + { + PyErr_SetString(PyExc_TypeError, "enums cannot be sub-classed"); + return NULL; + } + assert(sipTypeIsEnum(currentType)); /* Call the standard super-metatype alloc. */ ++++++ support-python3.6.patch ++++++ --- /var/tmp/diff_new_pack.PxPmw9/_old 2023-02-11 21:55:48.855058795 +0100 +++ /var/tmp/diff_new_pack.PxPmw9/_new 2023-02-11 21:55:48.855058795 +0100 @@ -1,19 +1,19 @@ -Index: PyQt5_sip-12.11.0/setup.py +Index: PyQt5_sip-12.11.1/setup.py =================================================================== ---- PyQt5_sip-12.11.0.orig/setup.py -+++ PyQt5_sip-12.11.0/setup.py +--- PyQt5_sip-12.11.1.orig/setup.py ++++ PyQt5_sip-12.11.1/setup.py @@ -40,6 +40,6 @@ setup( name='PyQt5_sip', - version='12.11.0', + version='12.11.1', license='SIP', - python_requires='>=3.7', + python_requires='>=3.6', ext_modules=[module] ) -Index: PyQt5_sip-12.11.0/sip.h +Index: PyQt5_sip-12.11.1/sip.h =================================================================== ---- PyQt5_sip-12.11.0.orig/sip.h -+++ PyQt5_sip-12.11.0/sip.h +--- PyQt5_sip-12.11.1.orig/sip.h ++++ PyQt5_sip-12.11.1/sip.h @@ -24,8 +24,8 @@ #include <Python.h> @@ -25,10 +25,10 @@ #endif -Index: PyQt5_sip-12.11.0/siplib.c +Index: PyQt5_sip-12.11.1/siplib.c =================================================================== ---- PyQt5_sip-12.11.0.orig/siplib.c -+++ PyQt5_sip-12.11.0/siplib.c +--- PyQt5_sip-12.11.1.orig/siplib.c ++++ PyQt5_sip-12.11.1/siplib.c @@ -1041,6 +1041,10 @@ const sipAPIDef *sip_init_library(PyObje PyObject *obj; PyMethodDef *md; @@ -40,7 +40,7 @@ /* Add the SIP version number. */ obj = PyLong_FromLong(SIP_VERSION); -@@ -13289,12 +13293,16 @@ int sip_api_convert_from_slice_object(Py +@@ -13294,12 +13298,16 @@ int sip_api_convert_from_slice_object(Py Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step, Py_ssize_t *slicelength) { @@ -57,10 +57,10 @@ } -Index: PyQt5_sip-12.11.0/PKG-INFO +Index: PyQt5_sip-12.11.1/PKG-INFO =================================================================== ---- PyQt5_sip-12.11.0.orig/PKG-INFO -+++ PyQt5_sip-12.11.0/PKG-INFO +--- PyQt5_sip-12.11.1.orig/PKG-INFO ++++ PyQt5_sip-12.11.1/PKG-INFO @@ -9,7 +9,7 @@ License: SIP Platform: X11 Platform: macOS @@ -70,10 +70,10 @@ License-File: LICENSE License-File: LICENSE-GPL3 License-File: LICENSE-GPL2 -Index: PyQt5_sip-12.11.0/PyQt5_sip.egg-info/PKG-INFO +Index: PyQt5_sip-12.11.1/PyQt5_sip.egg-info/PKG-INFO =================================================================== ---- PyQt5_sip-12.11.0.orig/PyQt5_sip.egg-info/PKG-INFO -+++ PyQt5_sip-12.11.0/PyQt5_sip.egg-info/PKG-INFO +--- PyQt5_sip-12.11.1.orig/PyQt5_sip.egg-info/PKG-INFO ++++ PyQt5_sip-12.11.1/PyQt5_sip.egg-info/PKG-INFO @@ -9,7 +9,7 @@ License: SIP Platform: X11 Platform: macOS