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 2023-10-05 20:05:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python3-pyside6 (Old)
and /work/SRC/openSUSE:Factory/.python3-pyside6.new.28202 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python3-pyside6"
Thu Oct 5 20:05:18 2023 rev:22 rq:1115844 version:6.5.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/python3-pyside6/python3-pyside6.changes
2023-09-20 13:28:47.593793389 +0200
+++
/work/SRC/openSUSE:Factory/.python3-pyside6.new.28202/python3-pyside6.changes
2023-10-05 20:06:45.078512475 +0200
@@ -1,0 +2,6 @@
+Wed Oct 4 09:00:16 UTC 2023 - Antonio Larrosa <[email protected]>
+
+- Add patch from upstream to fix a build failure:
+ * 0001-adapt-qC_Debug_Info_Warning_Critical_-for-new-definition.patch
+
+-------------------------------------------------------------------
New:
----
0001-adapt-qC_Debug_Info_Warning_Critical_-for-new-definition.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python3-pyside6.spec ++++++
--- /var/tmp/diff_new_pack.W8XlzK/_old 2023-10-05 20:06:46.426561176 +0200
+++ /var/tmp/diff_new_pack.W8XlzK/_new 2023-10-05 20:06:46.426561176 +0200
@@ -36,6 +36,8 @@
Patch0: 0001-Always-link-to-python-libraries.patch
# PATCH-FIX-UPSTREAM
Patch1: 0001-Fix-tests-sample_privatector-sample_privatedtor-fail.patch
+# PATCH-FIX-UPSTREAM
+Patch2:
0001-adapt-qC_Debug_Info_Warning_Critical_-for-new-definition.patch
# SECTION common_dependencies
BuildRequires: clang-devel
BuildRequires: fdupes
++++++ 0001-adapt-qC_Debug_Info_Warning_Critical_-for-new-definition.patch
++++++
>From 63ef7628091c8827e3d0d688220d3ae165587eb2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Cristi=C3=A1n=20Maureira-Fredes?=
<[email protected]>
Date: Thu, 13 Jul 2023 14:41:14 +0200
Subject: adapt qC{Debug,Info,Warning,Critical} for new definition
In response to:
I3eb1bd30e0124f89a052fffd16a7564f4450ec8a
Change-Id: I5393660521a8ee12a14bf2c287a6ea9a0393408f
Reviewed-by: Shyamnath Premnadh <[email protected]>
Reviewed-by: Qt CI Bot <[email protected]>
---
sources/pyside6/PySide6/QtCore/typesystem_core_common.xml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/sources/pyside6/PySide6/QtCore/typesystem_core_common.xml
b/sources/pyside6/PySide6/QtCore/typesystem_core_common.xml
index bf6e263d4..e8155d41d 100644
--- a/sources/pyside6/PySide6/QtCore/typesystem_core_common.xml
+++ b/sources/pyside6/PySide6/QtCore/typesystem_core_common.xml
@@ -3340,25 +3340,25 @@
<include file-name="qloggingcategory.h" location="global" />
</extra-includes>
<inject-code class="target" position="beginning" file="../glue/qtcore.cpp"
snippet="qloggingcategory_to_cpp">
- qCDebug(*category, "%s", %2);
+ qCDebug((*category), "%s", %2);
</inject-code>
</add-function>
<add-function signature="qCCritical(PyObject *, const char *)">
<inject-code class="target" position="beginning" file="../glue/qtcore.cpp"
snippet="qloggingcategory_to_cpp">
- qCCritical(*category, "%s", %2);
+ qCCritical((*category), "%s", %2);
</inject-code>
</add-function>
<add-function signature="qCInfo(PyObject *, const char *)">
<inject-code class="target" position="beginning" file="../glue/qtcore.cpp"
snippet="qloggingcategory_to_cpp">
- qCInfo(*category, "%s", %2);
+ qCInfo((*category), "%s", %2);
</inject-code>
</add-function>
<add-function signature="qCWarning(PyObject *, const char *)">
<inject-code class="target" position="beginning" file="../glue/qtcore.cpp"
snippet="qloggingcategory_to_cpp">
- qCWarning(*category, "%s", %2);
+ qCWarning((*category), "%s", %2);
</inject-code>
</add-function>
--
cgit v1.2.3