From 2bc3c72362638354531431f1f75b56fe9b0856da19e992f339ac54e25336d0c5 Mon Sep 17 00:00:00 2001 From: Benjamin Greiner Date: Tue, 19 Apr 2022 08:34:13 +0000 Subject: [PATCH 1/2] Accepting request 969856 from home:bnavigator:branches:KDE:Qt:PyQt - Update to version 6.6.1 * Python v3.6 is no longer supported. * The .sip file parser (created using flex and bison) has been replaced with a pure Python implementation using PLY. * The latest version of ABI v13 is v13.3.1. * The latest version of ABI v12 is v12.10.1. OBS-URL: https://build.opensuse.org/request/show/969856 OBS-URL: https://build.opensuse.org/package/show/KDE:Qt:PyQt/python-sip6?expand=0&rev=9 --- python-sip6.changes | 10 ++++++++++ python-sip6.spec | 9 ++++++--- sip-6.5.1.tar.gz | 3 --- sip-6.6.1.tar.gz | 3 +++ 4 files changed, 19 insertions(+), 6 deletions(-) delete mode 100644 sip-6.5.1.tar.gz create mode 100644 sip-6.6.1.tar.gz diff --git a/python-sip6.changes b/python-sip6.changes index 90c2bfd..f9fcefa 100644 --- a/python-sip6.changes +++ b/python-sip6.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Wed Apr 13 08:06:26 UTC 2022 - Ben Greiner + +- Update to version 6.6.1 + * Python v3.6 is no longer supported. + * The .sip file parser (created using flex and bison) has been + replaced with a pure Python implementation using PLY. + * The latest version of ABI v13 is v13.3.1. + * The latest version of ABI v12 is v12.10.1. + ------------------------------------------------------------------- Sat Feb 5 20:26:49 UTC 2022 - Ben Greiner diff --git a/python-sip6.spec b/python-sip6.spec index 56d69a6..468084c 100644 --- a/python-sip6.spec +++ b/python-sip6.spec @@ -19,15 +19,16 @@ %{?!python_module:%define python_module() python3-%{**}} %define skip_python2 1 Name: python-sip6 -Version: 6.5.1 +Version: 6.6.1 Release: 0 Summary: A Python bindings generator for C/C++ libraries License: GPL-2.0-only OR GPL-3.0-only OR SUSE-SIP Group: Development/Libraries/Python URL: https://www.riverbankcomputing.com/software/sip Source0: https://files.pythonhosted.org/packages/source/s/sip/sip-%{version}.tar.gz -BuildRequires: %{python_module devel >= 3.6} +BuildRequires: %{python_module devel >= 3.7} BuildRequires: %{python_module packaging} +BuildRequires: %{python_module ply} BuildRequires: %{python_module setuptools} BuildRequires: %{python_module toml} BuildRequires: c++_compiler @@ -47,7 +48,9 @@ to generate wxPython, the Python bindings for wxWidgets. Summary: A Python bindings generator for C/C++ libraries Group: Development/Libraries/Python Requires: c++_compiler -Requires: python-devel >= 3.6 +Requires: python-devel >= 3.7 +Requires: python-packaging +Requires: python-ply Requires: python-setuptools Requires: python-toml Requires(post): update-alternatives diff --git a/sip-6.5.1.tar.gz b/sip-6.5.1.tar.gz deleted file mode 100644 index 1e3fe11..0000000 --- a/sip-6.5.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:204f0240db8999a749d638a987b351861843e69239b811ec3d1881412c3706a6 -size 1197925 diff --git a/sip-6.6.1.tar.gz b/sip-6.6.1.tar.gz new file mode 100644 index 0000000..68c4ef4 --- /dev/null +++ b/sip-6.6.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:696c575c72144122701171f2cc767fe6cc87050ea755a04909152a8508ae10c3 +size 1134991 From 50157248b30103d3f1644f248001e45e80a017cd7f30a427835b91fc56872be2 Mon Sep 17 00:00:00 2001 From: Benjamin Greiner Date: Tue, 21 Jun 2022 15:55:05 +0000 Subject: [PATCH 2/2] Accepting request 984160 from home:bnavigator:branches:KDE:Qt:PyQt - Update to version 6.6.2 * Enums created with ABI v13 now handle unexpected values by creating corresponding pseudo-members. * Any config settings passed by a PEP 571 frontend are now used. * The 'array' type is now accessible from the sip module. * 'array' can now create one dimensional arrays of wrapped types that can be modified in situ. * Arguments using the /Array/ (and /ArraySize/) annotations will now accept 'array' objects of the corresponding type. * The latest version of ABI v13 is v13.4.0. * The latest version of ABI v12 is v12.11.0. * Bug fixes. OBS-URL: https://build.opensuse.org/request/show/984160 OBS-URL: https://build.opensuse.org/package/show/KDE:Qt:PyQt/python-sip6?expand=0&rev=10 --- python-sip6.changes | 16 ++++++++++++++++ python-sip6.spec | 4 ++-- sip-6.6.1.tar.gz | 3 --- sip-6.6.2.tar.gz | 3 +++ 4 files changed, 21 insertions(+), 5 deletions(-) delete mode 100644 sip-6.6.1.tar.gz create mode 100644 sip-6.6.2.tar.gz diff --git a/python-sip6.changes b/python-sip6.changes index f9fcefa..ec2ff49 100644 --- a/python-sip6.changes +++ b/python-sip6.changes @@ -1,3 +1,19 @@ +------------------------------------------------------------------- +Mon Jun 20 21:15:15 UTC 2022 - Ben Greiner + +- Update to version 6.6.2 + * Enums created with ABI v13 now handle unexpected values by + creating corresponding pseudo-members. + * Any config settings passed by a PEP 571 frontend are now used. + * The 'array' type is now accessible from the sip module. + * 'array' can now create one dimensional arrays of wrapped types + that can be modified in situ. + * Arguments using the /Array/ (and /ArraySize/) annotations will + now accept 'array' objects of the corresponding type. + * The latest version of ABI v13 is v13.4.0. + * The latest version of ABI v12 is v12.11.0. + * Bug fixes. + ------------------------------------------------------------------- Wed Apr 13 08:06:26 UTC 2022 - Ben Greiner diff --git a/python-sip6.spec b/python-sip6.spec index 468084c..51a12e0 100644 --- a/python-sip6.spec +++ b/python-sip6.spec @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python3-%{**}} %define skip_python2 1 Name: python-sip6 -Version: 6.6.1 +Version: 6.6.2 Release: 0 Summary: A Python bindings generator for C/C++ libraries License: GPL-2.0-only OR GPL-3.0-only OR SUSE-SIP @@ -118,7 +118,7 @@ This package contains the documentation and example files. %python_alternative %{_bindir}/sip-sdist %python_alternative %{_bindir}/sip-wheel %{python_sitearch}/sipbuild -%{python_sitearch}/sip-%{version}-py*.egg-info +%{python_sitearch}/sip-%{version}*-info %files -n python-sip6-doc %license LICENSE* diff --git a/sip-6.6.1.tar.gz b/sip-6.6.1.tar.gz deleted file mode 100644 index 68c4ef4..0000000 --- a/sip-6.6.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:696c575c72144122701171f2cc767fe6cc87050ea755a04909152a8508ae10c3 -size 1134991 diff --git a/sip-6.6.2.tar.gz b/sip-6.6.2.tar.gz new file mode 100644 index 0000000..6d62a96 --- /dev/null +++ b/sip-6.6.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e3efac1c5dfd8e525ae57140927df26993e13f58b89d1577c314f4105bfd90d +size 1143535