forked from pool/python-qt5-sip
This commit is contained in:
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:97d3fbda0f61edb1be6529ec2d5c7202ae83aee4353e4b264a159f8c9ada4369
|
|
||||||
size 122858
|
|
3
PyQt5_sip-12.12.1.tar.gz
Normal file
3
PyQt5_sip-12.12.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:8fdc6e0148abd12d977a1d3828e7b79aae958e83c6cb5adae614916d888a6b10
|
||||||
|
size 122905
|
@@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Apr 24 19:47:19 UTC 2023 - Ben Greiner <code@bnavigator.de>
|
||||||
|
|
||||||
|
- Update to 12.12.1
|
||||||
|
* Fixed the new handling of ctors with /Transfer/ annotated
|
||||||
|
arguments.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Jan 29 19:42:52 UTC 2023 - Ben Greiner <code@bnavigator.de>
|
Sun Jan 29 19:42:52 UTC 2023 - Ben Greiner <code@bnavigator.de>
|
||||||
|
|
||||||
|
@@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: python-qt5-sip
|
Name: python-qt5-sip
|
||||||
Version: 12.11.1
|
Version: 12.12.1
|
||||||
Release: 0
|
Release: 0
|
||||||
License: GPL-2.0-only OR GPL-3.0-only OR SUSE-SIP
|
License: GPL-2.0-only OR GPL-3.0-only OR SUSE-SIP
|
||||||
Summary: The sip module support for PyQt5
|
Summary: The sip module support for PyQt5
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
Index: PyQt5_sip-12.11.1/setup.py
|
Index: PyQt5_sip-12.12.1/setup.py
|
||||||
===================================================================
|
===================================================================
|
||||||
--- PyQt5_sip-12.11.1.orig/setup.py
|
--- PyQt5_sip-12.12.1.orig/setup.py
|
||||||
+++ PyQt5_sip-12.11.1/setup.py
|
+++ PyQt5_sip-12.12.1/setup.py
|
||||||
@@ -40,6 +40,6 @@ setup(
|
@@ -40,6 +40,6 @@ setup(
|
||||||
name='PyQt5_sip',
|
name='PyQt5_sip',
|
||||||
version='12.11.1',
|
version='12.12.1',
|
||||||
license='SIP',
|
license='SIP',
|
||||||
- python_requires='>=3.7',
|
- python_requires='>=3.7',
|
||||||
+ python_requires='>=3.6',
|
+ python_requires='>=3.6',
|
||||||
ext_modules=[module]
|
ext_modules=[module]
|
||||||
)
|
)
|
||||||
Index: PyQt5_sip-12.11.1/sip.h
|
Index: PyQt5_sip-12.12.1/sip.h
|
||||||
===================================================================
|
===================================================================
|
||||||
--- PyQt5_sip-12.11.1.orig/sip.h
|
--- PyQt5_sip-12.12.1.orig/sip.h
|
||||||
+++ PyQt5_sip-12.11.1/sip.h
|
+++ PyQt5_sip-12.12.1/sip.h
|
||||||
@@ -24,8 +24,8 @@
|
@@ -24,8 +24,8 @@
|
||||||
#include <Python.h>
|
#include <Python.h>
|
||||||
|
|
||||||
@@ -25,10 +25,10 @@ Index: PyQt5_sip-12.11.1/sip.h
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
Index: PyQt5_sip-12.11.1/siplib.c
|
Index: PyQt5_sip-12.12.1/siplib.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- PyQt5_sip-12.11.1.orig/siplib.c
|
--- PyQt5_sip-12.12.1.orig/siplib.c
|
||||||
+++ PyQt5_sip-12.11.1/siplib.c
|
+++ PyQt5_sip-12.12.1/siplib.c
|
||||||
@@ -1041,6 +1041,10 @@ const sipAPIDef *sip_init_library(PyObje
|
@@ -1041,6 +1041,10 @@ const sipAPIDef *sip_init_library(PyObje
|
||||||
PyObject *obj;
|
PyObject *obj;
|
||||||
PyMethodDef *md;
|
PyMethodDef *md;
|
||||||
@@ -40,7 +40,7 @@ Index: PyQt5_sip-12.11.1/siplib.c
|
|||||||
/* Add the SIP version number. */
|
/* Add the SIP version number. */
|
||||||
obj = PyLong_FromLong(SIP_VERSION);
|
obj = PyLong_FromLong(SIP_VERSION);
|
||||||
|
|
||||||
@@ -13294,12 +13298,16 @@ int sip_api_convert_from_slice_object(Py
|
@@ -13303,12 +13307,16 @@ int sip_api_convert_from_slice_object(Py
|
||||||
Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step,
|
Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step,
|
||||||
Py_ssize_t *slicelength)
|
Py_ssize_t *slicelength)
|
||||||
{
|
{
|
||||||
@@ -57,10 +57,10 @@ Index: PyQt5_sip-12.11.1/siplib.c
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Index: PyQt5_sip-12.11.1/PKG-INFO
|
Index: PyQt5_sip-12.12.1/PKG-INFO
|
||||||
===================================================================
|
===================================================================
|
||||||
--- PyQt5_sip-12.11.1.orig/PKG-INFO
|
--- PyQt5_sip-12.12.1.orig/PKG-INFO
|
||||||
+++ PyQt5_sip-12.11.1/PKG-INFO
|
+++ PyQt5_sip-12.12.1/PKG-INFO
|
||||||
@@ -9,7 +9,7 @@ License: SIP
|
@@ -9,7 +9,7 @@ License: SIP
|
||||||
Platform: X11
|
Platform: X11
|
||||||
Platform: macOS
|
Platform: macOS
|
||||||
@@ -70,10 +70,10 @@ Index: PyQt5_sip-12.11.1/PKG-INFO
|
|||||||
License-File: LICENSE
|
License-File: LICENSE
|
||||||
License-File: LICENSE-GPL3
|
License-File: LICENSE-GPL3
|
||||||
License-File: LICENSE-GPL2
|
License-File: LICENSE-GPL2
|
||||||
Index: PyQt5_sip-12.11.1/PyQt5_sip.egg-info/PKG-INFO
|
Index: PyQt5_sip-12.12.1/PyQt5_sip.egg-info/PKG-INFO
|
||||||
===================================================================
|
===================================================================
|
||||||
--- PyQt5_sip-12.11.1.orig/PyQt5_sip.egg-info/PKG-INFO
|
--- PyQt5_sip-12.12.1.orig/PyQt5_sip.egg-info/PKG-INFO
|
||||||
+++ PyQt5_sip-12.11.1/PyQt5_sip.egg-info/PKG-INFO
|
+++ PyQt5_sip-12.12.1/PyQt5_sip.egg-info/PKG-INFO
|
||||||
@@ -9,7 +9,7 @@ License: SIP
|
@@ -9,7 +9,7 @@ License: SIP
|
||||||
Platform: X11
|
Platform: X11
|
||||||
Platform: macOS
|
Platform: macOS
|
||||||
|
Reference in New Issue
Block a user