diff -Nru pyqt5webengine-5.15.4/ChangeLog pyqt5webengine-5.15.5/ChangeLog --- pyqt5webengine-5.15.4/ChangeLog 2021-03-05 10:02:31.800355000 +0000 +++ pyqt5webengine-5.15.5/ChangeLog 2021-10-13 15:06:53.191262200 +0000 @@ -1,5 +1,25 @@ +2021-08-10 Phil Thompson + + * README: + Fixed the README. + [69a1dc1f1cf1] [5.15.5] <5.15-maint> + +2021-04-05 Phil Thompson + + * PyQtWebEngine.msp: + Only enable QWebEngineClientCertificateStore when SSL is enabled. + [9e311bed7a8f] <5.15-maint> + + * PyQtWebEngine.msp: + Removed the internal QtWebEngineCore namespace. + [bdf97a8aacfa] <5.15-maint> + 2021-03-04 Phil Thompson + * .hgtags: + Added tag 5.15.4 for changeset 2b38e9f975ce + [79bb44a7ba04] <5.15-maint> + * NEWS: Released as v5.15.4. [2b38e9f975ce] [5.15.4] <5.15-maint> diff -Nru pyqt5webengine-5.15.4/configure.py pyqt5webengine-5.15.5/configure.py --- pyqt5webengine-5.15.4/configure.py 2021-03-05 10:02:31.809710000 +0000 +++ pyqt5webengine-5.15.5/configure.py 2021-10-13 15:06:53.196176800 +0000 @@ -238,7 +238,7 @@ # The version of the module as a string. Set it to None if you don't # provide version information. - version = '5.15.4' + version = '5.15.5' # The name of the PEP 376 .dist-info directory to be created. distinfo_name = 'PyQtWebEngine' diff -Nru pyqt5webengine-5.15.4/debian/changelog pyqt5webengine-5.15.5/debian/changelog --- pyqt5webengine-5.15.4/debian/changelog 2021-09-07 15:22:35.000000000 +0000 +++ pyqt5webengine-5.15.5/debian/changelog 2021-10-23 11:43:36.000000000 +0000 @@ -1,3 +1,12 @@ +pyqt5webengine (5.15.5-1) unstable; urgency=medium + + * New upstream release. + * Pass correct --target-dir to sip-build, to fix FTBFS with sip ≥ 6.2. + * Specify Rules-Requires-Root: no. + * Bump Standards-Version to 4.6.0, no changes needed. + + -- Dmitry Shachnev Sat, 23 Oct 2021 14:43:36 +0300 + pyqt5webengine (5.15.4-2) unstable; urgency=medium * Stop building extensions for Python debug interpreter, they are not needed diff -Nru pyqt5webengine-5.15.4/debian/control pyqt5webengine-5.15.5/debian/control --- pyqt5webengine-5.15.4/debian/control 2021-09-07 15:22:35.000000000 +0000 +++ pyqt5webengine-5.15.5/debian/control 2021-10-23 11:43:36.000000000 +0000 @@ -10,7 +10,8 @@ python3-pyqtbuild (>= 1.9), qtwebengine5-dev, sip-tools (>= 5.3.0+dfsg-2~) -Standards-Version: 4.5.1 +Rules-Requires-Root: no +Standards-Version: 4.6.0 Homepage: https://www.riverbankcomputing.com/software/pyqtwebengine/intro Vcs-Git: https://salsa.debian.org/python-team/packages/pyqt5webengine.git Vcs-Browser: https://salsa.debian.org/python-team/packages/pyqt5webengine diff -Nru pyqt5webengine-5.15.4/debian/rules pyqt5webengine-5.15.5/debian/rules --- pyqt5webengine-5.15.4/debian/rules 2021-09-07 15:22:35.000000000 +0000 +++ pyqt5webengine-5.15.5/debian/rules 2021-10-23 11:43:36.000000000 +0000 @@ -7,6 +7,7 @@ export PYBUILD_NAME=pyqt5.qtwebengine export PYBUILD_SYSTEM=custom export PYBUILD_CONFIGURE_ARGS={interpreter} /usr/bin/sip-build --verbose --no-make \ + --target-dir /usr/lib/python3/dist-packages \ --build-dir {build_dir} --pep484-pyi \ --qmake-setting 'QMAKE_CXXFLAGS += "$(CXXFLAGS) $(CPPFLAGS)"' \ --qmake-setting 'QMAKE_LFLAGS += "$(LDFLAGS)"' diff -Nru pyqt5webengine-5.15.4/PKG-INFO pyqt5webengine-5.15.5/PKG-INFO --- pyqt5webengine-5.15.4/PKG-INFO 2021-03-05 10:02:33.362001000 +0000 +++ pyqt5webengine-5.15.5/PKG-INFO 2021-10-13 15:06:54.035081000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: PyQtWebEngine -Version: 5.15.4 +Version: 5.15.5 Requires-Python: >=3.6 Summary: Python bindings for the Qt WebEngine framework Home-Page: https://www.riverbankcomputing.com/software/pyqtwebengine/ @@ -49,8 +49,6 @@ pip install PyQtWebEngine -The wheels include a copy of the required parts of the LGPL version of Qt. - ``pip`` will also build and install the bindings from the sdist package but Qt's ``qmake`` tool must be on ``PATH``. diff -Nru pyqt5webengine-5.15.4/pyproject.toml pyqt5webengine-5.15.5/pyproject.toml --- pyqt5webengine-5.15.4/pyproject.toml 2021-03-05 10:02:31.813784000 +0000 +++ pyqt5webengine-5.15.5/pyproject.toml 2021-10-13 15:06:53.198107000 +0000 @@ -6,7 +6,7 @@ # Specify the PEP 566 metadata for the project. [tool.sip.metadata] name = "PyQtWebEngine" -version = "5.15.4" +version = "5.15.5" summary = "Python bindings for the Qt WebEngine framework" home-page = "https://www.riverbankcomputing.com/software/pyqtwebengine/" author = "Riverbank Computing Limited" diff -Nru pyqt5webengine-5.15.4/README pyqt5webengine-5.15.5/README --- pyqt5webengine-5.15.4/README 2021-03-05 10:02:31.812690000 +0000 +++ pyqt5webengine-5.15.5/README 2021-10-13 15:06:53.197498600 +0000 @@ -38,8 +38,6 @@ pip install PyQtWebEngine -The wheels include a copy of the required parts of the LGPL version of Qt. - ``pip`` will also build and install the bindings from the sdist package but Qt's ``qmake`` tool must be on ``PATH``. diff -Nru pyqt5webengine-5.15.4/sip/QtWebEngine/qquickwebengineprofile.sip pyqt5webengine-5.15.5/sip/QtWebEngine/qquickwebengineprofile.sip --- pyqt5webengine-5.15.4/sip/QtWebEngine/qquickwebengineprofile.sip 2021-03-05 10:02:32.711358000 +0000 +++ pyqt5webengine-5.15.5/sip/QtWebEngine/qquickwebengineprofile.sip 2021-10-13 15:06:53.757146000 +0000 @@ -161,8 +161,10 @@ void setDownloadPath(const QString &path); %End %If (QtWebEngine_5_13_0 -) +%If (PyQt_SSL) QWebEngineClientCertificateStore *clientCertificateStore(); %End +%End signals: %If (QtWebEngine_5_13_0 -) diff -Nru pyqt5webengine-5.15.4/sip/QtWebEngine/qtwebengineglobal.sip pyqt5webengine-5.15.5/sip/QtWebEngine/qtwebengineglobal.sip --- pyqt5webengine-5.15.4/sip/QtWebEngine/qtwebengineglobal.sip 2021-03-05 10:02:32.712637000 +0000 +++ pyqt5webengine-5.15.5/sip/QtWebEngine/qtwebengineglobal.sip 2021-10-13 15:06:53.758222300 +0000 @@ -25,8 +25,8 @@ const char *PYQT_WEBENGINE_VERSION_STR; %ModuleCode -static int PYQT_WEBENGINE_VERSION = 0x050f04; -static const char *PYQT_WEBENGINE_VERSION_STR = "5.15.4"; +static int PYQT_WEBENGINE_VERSION = 0x050f05; +static const char *PYQT_WEBENGINE_VERSION_STR = "5.15.5"; %End %If (QtWebEngine_5_6_0 -) diff -Nru pyqt5webengine-5.15.4/sip/QtWebEngineCore/qwebengineclientcertificatestore.sip pyqt5webengine-5.15.5/sip/QtWebEngineCore/qwebengineclientcertificatestore.sip --- pyqt5webengine-5.15.4/sip/QtWebEngineCore/qwebengineclientcertificatestore.sip 2021-03-05 10:02:32.718526000 +0000 +++ pyqt5webengine-5.15.5/sip/QtWebEngineCore/qwebengineclientcertificatestore.sip 2021-10-13 15:06:53.762269500 +0000 @@ -21,16 +21,6 @@ %If (QtWebEngine_5_13_0 -) - -namespace QtWebEngineCore -{ -%TypeHeaderCode -#include -%End -}; - -%End -%If (QtWebEngine_5_13_0 -) %If (PyQt_SSL) class QWebEngineClientCertificateStore /NoDefaultCtors/ diff -Nru pyqt5webengine-5.15.4/sip/QtWebEngineCore/qwebenginequotarequest.sip pyqt5webengine-5.15.5/sip/QtWebEngineCore/qwebenginequotarequest.sip --- pyqt5webengine-5.15.4/sip/QtWebEngineCore/qwebenginequotarequest.sip 2021-03-05 10:02:32.728237000 +0000 +++ pyqt5webengine-5.15.5/sip/QtWebEngineCore/qwebenginequotarequest.sip 2021-10-13 15:06:53.767360000 +0000 @@ -22,16 +22,6 @@ %If (QtWebEngine_5_11_0 -) -namespace QtWebEngineCore -{ -%TypeHeaderCode -#include -%End -}; - -%End -%If (QtWebEngine_5_11_0 -) - class QWebEngineQuotaRequest { %TypeHeaderCode diff -Nru pyqt5webengine-5.15.4/sip/QtWebEngineCore/qwebengineregisterprotocolhandlerrequest.sip pyqt5webengine-5.15.5/sip/QtWebEngineCore/qwebengineregisterprotocolhandlerrequest.sip --- pyqt5webengine-5.15.4/sip/QtWebEngineCore/qwebengineregisterprotocolhandlerrequest.sip 2021-03-05 10:02:32.731935000 +0000 +++ pyqt5webengine-5.15.5/sip/QtWebEngineCore/qwebengineregisterprotocolhandlerrequest.sip 2021-10-13 15:06:53.768730600 +0000 @@ -22,16 +22,6 @@ %If (QtWebEngine_5_11_0 -) -namespace QtWebEngineCore -{ -%TypeHeaderCode -#include -%End -}; - -%End -%If (QtWebEngine_5_11_0 -) - class QWebEngineRegisterProtocolHandlerRequest { %TypeHeaderCode