Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python3-pyside6 for openSUSE:Factory checked in at 2024-05-28 17:29:41 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python3-pyside6 (Old) and /work/SRC/openSUSE:Factory/.python3-pyside6.new.24587 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python3-pyside6" Tue May 28 17:29:41 2024 rev:29 rq:1177283 version:6.7.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python3-pyside6/python3-pyside6.changes 2024-04-11 19:41:03.605554121 +0200 +++ /work/SRC/openSUSE:Factory/.python3-pyside6.new.24587/python3-pyside6.changes 2024-05-28 17:30:39.320038362 +0200 @@ -1,0 +2,10 @@ +Fri May 24 11:22:44 UTC 2024 - Christophe Marin <christo...@krop.fr> + +- Update to 6.7.1. Check the installed changes-6.7.1 file for the + full list of changes +- Drop patch, merged upstream: + * 0001-Multimedia-Adapt-to-revert-of-QAudio-QtAudio-namespa.patch +- Add upstream build fix: + * 0001-shiboken-add-missing-include.patch + +------------------------------------------------------------------- Old: ---- 0001-Multimedia-Adapt-to-revert-of-QAudio-QtAudio-namespa.patch _service pyside-setup-everywhere-src-6.7.0~git.obscpio pyside-setup-everywhere-src.obsinfo New: ---- 0001-shiboken-add-missing-include.patch pyside-setup-everywhere-src-6.7.1.tar.xz BETA DEBUG BEGIN: Old:- Drop patch, merged upstream: * 0001-Multimedia-Adapt-to-revert-of-QAudio-QtAudio-namespa.patch - Add upstream build fix: BETA DEBUG END: BETA DEBUG BEGIN: New:- Add upstream build fix: * 0001-shiboken-add-missing-include.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python3-pyside6.spec ++++++ --- /var/tmp/diff_new_pack.JPQMW0/_old 2024-05-28 17:30:40.180069812 +0200 +++ /var/tmp/diff_new_pack.JPQMW0/_new 2024-05-28 17:30:40.184069958 +0200 @@ -43,17 +43,16 @@ %endif Name: %{mypython}-%{pyside_flavor} -Version: 6.7.0~git +Version: 6.7.1 Release: 0 Summary: Python bindings for Qt 6 License: LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later) AND GPL-2.0-only AND GPL-3.0-only WITH Qt-GPL-exception-1.0 URL: https://www.qt.io -# Source: https://download.qt.io/official_releases/QtForPython/pyside6/PySide6-%%{version}-src/%%{tar_name}-%%{version}.tar.xz -Source0: %{tar_name}-%{version}.tar.xz +Source: https://download.qt.io/official_releases/QtForPython/pyside6/PySide6-%{version}-src/%{tar_name}-%{version}.tar.xz # PATCH-FIX-OPENSUSE Patch0: 0001-Always-link-to-python-libraries.patch # PATCH-FIX-UPSTREAM -Patch1: 0001-Multimedia-Adapt-to-revert-of-QAudio-QtAudio-namespa.patch +Patch1: 0001-shiboken-add-missing-include.patch # SECTION common_dependencies BuildRequires: clang-devel BuildRequires: %{mypython}-Sphinx @@ -246,7 +245,7 @@ %define xvfb_command xvfb-run -s "-screen 0 1600x1200x16 -ac +extension GLX +render -noreset" \\ %define excluded_tests 1 -# Excluded tests (last update: 2024-04-08) +# Excluded tests (last update: 2024-05-27) # QtWebEngineWidgets_pyside-474-qtwebengineview fails with 'ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer' # QtGui_qpen_test times out # QtMultimediaWidgets_qmultimediawidgets aborts @@ -257,9 +256,10 @@ # QtCore_qoperatingsystemversion_test fails after https://code.qt.io/cgit/qt/qtbase.git/commit/?id=1214edc ctest_exclude_regex="QtWebEngineWidgets_pyside-474-qtwebengineview|QtGui_qpen_test|QtMultimediaWidgets_qmultimediawidgets|Qt3DExtras_qt3dextras_test|QtPositioning_positioning|pyside6-deploy_test_pyside6_deploy|QtWidgets_qwidget_test|pyside6-android-deploy_test_pyside6_android_deploy|qoperatingsystemversion" -# Random failures on aarch64: registry_existence_test times out and QtWebEngineCore_web_engine_custom_scheme asserts +# registry_existence_test randomly times out and QtWebEngineCore_web_engine_custom_scheme asserts +# QtWebEngineCore_qwebenginecookiestore_test fails with a mesa error ('MESA: error: ZINK: vkCreateInstance failed (VK_ERROR_INCOMPATIBLE_DRIVER)') %ifarch aarch64 -ctest_exclude_regex="$ctest_exclude_regex|registry_existence_test|QtWebEngineCore_web_engine_custom_scheme" +ctest_exclude_regex="$ctest_exclude_regex|registry_existence_test|QtWebEngineCore_web_engine_custom_scheme|QtWebEngineCore_qwebenginecookiestore_test" %endif # python311-distro is unavailable in 15.5, skip registry_existence_test %if 0%{?sle_version} == 150500 ++++++ 0001-shiboken-add-missing-include.patch ++++++ >From 6c3759e342efa8b9bcc46e1701eed3a12548db85 Mon Sep 17 00:00:00 2001 From: Samuli Piippo <samuli.pii...@qt.io> Date: Mon, 27 May 2024 04:59:20 +0000 Subject: [PATCH] shiboken: add missing include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Amend b829abcc7b2e9fcdb027e653a6a52cdb0706de11 and add missing include to fix: | sbkmodule.cpp:459:15: error: âShiboken::Conversionsâ has not been declared | Shiboken::Conversions::clearNegativeLazyCache(); | ^~~~~~~~~~~ Pick-to: 6.7 Fixes: PYSIDE-2765 Task-number: PYSIDE-2749 Task-number: PYSIDE-2404 Change-Id: I13625848bff3b0e90a53649104d6e5d84553a984 Reviewed-by: Friedemann Kleint <friedemann.kle...@qt.io> --- sources/shiboken6/libshiboken/sbkmodule.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/sources/shiboken6/libshiboken/sbkmodule.cpp b/sources/shiboken6/libshiboken/sbkmodule.cpp index ccc7cc2cd..b7e6bf126 100644 --- a/sources/shiboken6/libshiboken/sbkmodule.cpp +++ b/sources/shiboken6/libshiboken/sbkmodule.cpp @@ -7,6 +7,7 @@ #include "bindingmanager.h" #include "sbkstring.h" #include "sbkcppstring.h" +#include "sbkconverter_p.h" #include <unordered_map> #include <unordered_set> -- 2.45.1