git » qt5-wayland.git » commit 4f3be39

Fix hidden windows not showing again (FS#63084)

author Antonio Rojas
2019-07-03 15:06:53 UTC
committer Antonio Rojas
2019-07-03 15:06:53 UTC
parent 081f0f672edf2097d21a17c6bd49ffb3792f45b4

Fix hidden windows not showing again (FS#63084)

PKGBUILD +10 -4

diff --git a/PKGBUILD b/PKGBUILD
index 0315a74..f41246d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,24 +4,30 @@
 pkgname=qt5-wayland
 _qtver=5.13.0
 pkgver=${_qtver/-/}
-pkgrel=2
+pkgrel=3
 arch=('x86_64')
 url='https://www.qt.io'
 license=('GPL3' 'LGPL3' 'FDL' 'custom')
 pkgdesc='Provides APIs for Wayland'
-depends=('qt5-declarative' 'libxcomposite' 'wayland') # namcap note: wayland is needed for nvidia-libgl users
+depends=('qt5-declarative' 'libxcomposite')
 groups=('qt' 'qt5')
 _pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
 source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz"
-        kdebug-407651.patch::"https://code.qt.io/cgit/qt/qtwayland.git/patch/?id=21a5038f")
+        kdebug-407651.patch::"https://code.qt.io/cgit/qt/qtwayland.git/patch/?id=21a5038f"
+        qtbug-76397a.patch::"https://code.qt.io/cgit/qt/qtwayland.git/patch/?id=ec905708"
+        qtbug-76397b.patch::"https://code.qt.io/cgit/qt/qtwayland.git/patch/?id=a4e6f88f")
 sha256sums=('b67a6d8119628bca3301bd03992880db07d61d405534067c9cd2a598695a7cf3'
-            'f21ff86a4ffb4ba7648cba8d6434d7b0a8caa8abf650ba382d3cfa63c934e01b')
+            'f21ff86a4ffb4ba7648cba8d6434d7b0a8caa8abf650ba382d3cfa63c934e01b'
+            'ab3c4c1f91c3ebfb4da463fc52959cc4a9b531988b6253fb78e64be05581905d'
+            'b61b9872c83a27aad97d21f4e217b6c21f8d94deb164358ce09e3fdbd09332b4')
 
 prepare() {
   mkdir -p build
 
   cd $_pkgfqn
   patch -p1 -i ../kdebug-407651.patch # Prevent windows from getting larger after closing and reopening https://bugs.kde.org/show_bug.cgi?id=407651
+  patch -p1 -i ../qtbug-76397a.patch
+  patch -p1 -i ../qtbug-76397b.patch # https://bugreports.qt.io/browse/QTBUG-76657
 }
 
 build() {