python-qt5-sip/support-python3.6.patch
Benjamin Greiner 229d925fa1 Accepting request 1117884 from home:bnavigator:branches:KDE:Qt:PyQt
- Update to 12.13.0
  * Added sipPyTypeDictRef() to the v12 and v13 ABIs.
    sipPyTypeDict() is now deprecated and must not be used with
    Python v3.12 and later.
  * Classes will automatically support being iterated over if they
    implement '__getitem__()' or 'operator[]' and have a method
    annotated with '__len__'.
  * Bug fixes.

OBS-URL: https://build.opensuse.org/request/show/1117884
OBS-URL: https://build.opensuse.org/package/show/KDE:Qt:PyQt/python-qt5-sip?expand=0&rev=10
2023-10-15 15:32:02 +00:00

86 lines
2.5 KiB
Diff

Index: PyQt5_sip-12.13.0/setup.py
===================================================================
--- PyQt5_sip-12.13.0.orig/setup.py
+++ PyQt5_sip-12.13.0/setup.py
@@ -40,6 +40,6 @@ setup(
name='PyQt5_sip',
version='12.13.0',
license='SIP',
- python_requires='>=3.7',
+ python_requires='>=3.6',
ext_modules=[module]
)
Index: PyQt5_sip-12.13.0/sip.h
===================================================================
--- PyQt5_sip-12.13.0.orig/sip.h
+++ PyQt5_sip-12.13.0/sip.h
@@ -24,8 +24,8 @@
#include <Python.h>
/* Sanity check on the Python version. */
-#if PY_VERSION_HEX < 0x03070000
-#error "This version of PyQt5.sip requires Python v3.7 or later"
+#if PY_VERSION_HEX < 0x03060000
+#error "This version of PyQt5.sip requires Python v3.6 or later"
#endif
Index: PyQt5_sip-12.13.0/siplib.c
===================================================================
--- PyQt5_sip-12.13.0.orig/siplib.c
+++ PyQt5_sip-12.13.0/siplib.c
@@ -1046,6 +1046,10 @@ const sipAPIDef *sip_init_library(PyObje
PyObject *obj;
PyMethodDef *md;
+#if PY_VERSION_HEX < 0x03070000 && defined(WITH_THREAD)
+ PyEval_InitThreads();
+#endif
+
/* Add the SIP version number. */
obj = PyLong_FromLong(SIP_VERSION);
@@ -13331,12 +13335,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)
{
+#if PY_VERSION_HEX >= 0x03070000
if (PySlice_Unpack(slice, start, stop, step) < 0)
return -1;
*slicelength = PySlice_AdjustIndices(length, start, stop, *step);
return 0;
+#else
+ return PySlice_GetIndicesEx(slice, length, start, stop, step, slicelength);
+#endif
}
Index: PyQt5_sip-12.13.0/PKG-INFO
===================================================================
--- PyQt5_sip-12.13.0.orig/PKG-INFO
+++ PyQt5_sip-12.13.0/PKG-INFO
@@ -9,7 +9,7 @@ License: SIP
Platform: X11
Platform: macOS
Platform: Windows
-Requires-Python: >=3.7
+Requires-Python: >=3.6
License-File: LICENSE
License-File: LICENSE-GPL2
License-File: LICENSE-GPL3
Index: PyQt5_sip-12.13.0/PyQt5_sip.egg-info/PKG-INFO
===================================================================
--- PyQt5_sip-12.13.0.orig/PyQt5_sip.egg-info/PKG-INFO
+++ PyQt5_sip-12.13.0/PyQt5_sip.egg-info/PKG-INFO
@@ -9,7 +9,7 @@ License: SIP
Platform: X11
Platform: macOS
Platform: Windows
-Requires-Python: >=3.7
+Requires-Python: >=3.6
License-File: LICENSE
License-File: LICENSE-GPL2
License-File: LICENSE-GPL3