Update to new upstream release 12.11.0 (#2074708)
This commit is contained in:
parent
805fb3767f
commit
087b0b77ff
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
/PyQt5_sip-12.8.1.tar.gz
|
/PyQt5_sip-12.8.1.tar.gz
|
||||||
/PyQt5_sip-12.9.0.tar.gz
|
/PyQt5_sip-12.9.0.tar.gz
|
||||||
/PyQt5_sip-12.9.1.tar.gz
|
/PyQt5_sip-12.9.1.tar.gz
|
||||||
|
/PyQt5_sip-12.11.0.tar.gz
|
||||||
|
@ -1,18 +1,17 @@
|
|||||||
%global pkg_name pyqt5-sip
|
%global pkg_name pyqt5-sip
|
||||||
%global pypi_name PyQt5_sip
|
%global pypi_name PyQt5_sip
|
||||||
%global _sip_api_major 12
|
%global _sip_api_major 12
|
||||||
%global _sip_api_minor 9
|
%global _sip_api_minor 11
|
||||||
%global _sip_api %{_sip_api_major}.%{_sip_api_minor}
|
%global _sip_api %{_sip_api_major}.%{_sip_api_minor}
|
||||||
|
|
||||||
Name: python-%{pkg_name}
|
Name: python-%{pkg_name}
|
||||||
Version: 12.9.1
|
Version: 12.11.0
|
||||||
Release: 3%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: The sip module support for PyQt5
|
Summary: The sip module support for PyQt5
|
||||||
|
|
||||||
License: GPLv2 or GPLv3
|
License: GPLv2 or GPLv3
|
||||||
URL: https://www.riverbankcomputing.com/software/sip/
|
URL: https://www.riverbankcomputing.com/software/sip/
|
||||||
Source0: %{pypi_source}
|
Source0: %{pypi_source}
|
||||||
Patch0: python3.11.patch
|
|
||||||
|
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
@ -48,6 +47,9 @@ Provides: python3-pyqt5-sip-api(%{_sip_api_major})%{?_isa} = %{_sip_api}
|
|||||||
%{python3_sitearch}/PyQt5/
|
%{python3_sitearch}/PyQt5/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Jul 20 2022 Scott Talbert <swt@techie.net> - 12.11.0-1
|
||||||
|
- Update to new upstream release 12.11.0 (#2074708)
|
||||||
|
|
||||||
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 12.9.1-3
|
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 12.9.1-3
|
||||||
- Rebuilt for Python 3.11
|
- Rebuilt for Python 3.11
|
||||||
|
|
||||||
|
@ -1,18 +0,0 @@
|
|||||||
diff -up PyQt5_sip-12.9.1/siplib.c.py311 PyQt5_sip-12.9.1/siplib.c
|
|
||||||
--- PyQt5_sip-12.9.1/siplib.c.py311 2022-02-01 08:29:23.000000000 -0500
|
|
||||||
+++ PyQt5_sip-12.9.1/siplib.c 2022-03-11 20:46:19.056212494 -0500
|
|
||||||
@@ -12750,7 +12750,14 @@ static struct _frame *sip_api_get_frame(
|
|
||||||
|
|
||||||
while (frame != NULL && depth > 0)
|
|
||||||
{
|
|
||||||
+#if PY_VERSION_HEX < 0x03090000
|
|
||||||
frame = frame->f_back;
|
|
||||||
+#else
|
|
||||||
+ frame = PyFrame_GetBack(frame);
|
|
||||||
+
|
|
||||||
+ /* Historically we return a borrowed reference. */
|
|
||||||
+ Py_XDECREF(frame);
|
|
||||||
+#endif
|
|
||||||
--depth;
|
|
||||||
}
|
|
||||||
|
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (PyQt5_sip-12.9.1.tar.gz) = b8fbb6123d8ddf604dfa4ff5ae17a79b89cfae08f9320fd8cab223c4186350831ee2445ed6d2a1d920146fcfc927f3df00b616f15fd3bfabca3f094f66e142df
|
SHA512 (PyQt5_sip-12.11.0.tar.gz) = 1542747ef1912c05b0054ffec16294046e20dd4eb757bb664fb92d7b6ed924521469e88d27e515146f725d153e3ebe3a3bf72805de6451fb52ff86ed5b9128d7
|
||||||
|
Loading…
Reference in New Issue
Block a user