Hello community,
here is the log from the commit of package libqt5-qtwayland for
openSUSE:Factory checked in at 2019-08-19 20:46:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libqt5-qtwayland (Old)
and /work/SRC/openSUSE:Factory/.libqt5-qtwayland.new.22127 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libqt5-qtwayland"
Mon Aug 19 20:46:54 2019 rev:29 rq:723518 version:5.13.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/libqt5-qtwayland/libqt5-qtwayland.changes
2019-07-13 13:59:47.838909006 +0200
+++
/work/SRC/openSUSE:Factory/.libqt5-qtwayland.new.22127/libqt5-qtwayland.changes
2019-08-19 20:46:54.257104698 +0200
@@ -1,0 +2,6 @@
+Thu Aug 15 11:30:28 UTC 2019 - Fabian Vogt <[email protected]>
+
+- Add patch to fix deps in Qt5WaylandClient.pc and .cmake:
+ * 0001-Fix-use-of-private-dependency.patch
+
+-------------------------------------------------------------------
New:
----
0001-Fix-use-of-private-dependency.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ libqt5-qtwayland.spec ++++++
--- /var/tmp/diff_new_pack.qWnmvN/_old 2019-08-19 20:46:54.897104562 +0200
+++ /var/tmp/diff_new_pack.qWnmvN/_new 2019-08-19 20:46:54.909104559 +0200
@@ -42,6 +42,8 @@
Patch4: 0004-Client-Make-handleUpdate-aware-of-exposure-changes.patch
# https://codereview.qt-project.org/c/qt/qtwayland/+/265997
Patch5: 0005-Client-Reset-frame-callback-timer-when-hiding-a-wind.patch
+# PATCH-FIX-UPSTREAM
+Patch6: 0001-Fix-use-of-private-dependency.patch
# PATCH-FIX-OPENSUSE
Patch100: workaround-null-object.patch
BuildRequires: fdupes
++++++ 0001-Fix-use-of-private-dependency.patch ++++++
>From ce8fd1f97984476b3638569e7a7f0ab379d891ae Mon Sep 17 00:00:00 2001
From: Pier Luigi Fiorini <[email protected]>
Date: Wed, 24 Jul 2019 23:40:55 +0200
Subject: [PATCH] Fix use of private dependency
With 0761173a, Linux SPI Accessibility bridge was added to
the Wayland QPA plugin, but this had a bad side-effect to
QtWaylandClient.
Linux Accessibility support is a private module, this means we have
to link to it with QT_PRIVATE not QT, otherwise CMake and pkg-config
files for Qt5WaylandClient will depend on it.
Change-Id: I6182267f97adc2cd5bd66895df148a6a45614f45
Fixes: QTBUG-76042
Reviewed-by: Frederik Gladhorn <[email protected]>
---
src/client/client.pro | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/client/client.pro b/src/client/client.pro
index db91bd69..4233ac95 100644
--- a/src/client/client.pro
+++ b/src/client/client.pro
@@ -20,7 +20,7 @@ qtConfig(xkbcommon) {
}
qtHaveModule(linuxaccessibility_support_private): \
- QT += linuxaccessibility_support_private
+ QT_PRIVATE += linuxaccessibility_support_private
QMAKE_USE += wayland-client
--
2.22.0