git » plasma-framework.git » commit 0b82329

Fix Plasma crash with Qt 5.15

author Antonio Rojas
2020-04-15 07:31:20 UTC
committer Antonio Rojas
2020-04-15 07:31:20 UTC
parent 619828a789c44d59935e404be5a6af009e2378a8

Fix Plasma crash with Qt 5.15

PKGBUILD +8 -3

diff --git a/PKGBUILD b/PKGBUILD
index d7a76f7..95e100d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
 
 pkgname=plasma-framework
 pkgver=5.69.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
 arch=(x86_64)
 url='https://community.kde.org/Frameworks'
@@ -12,13 +12,18 @@ license=(LGPL)
 depends=(kactivities kdeclarative kwayland kirigami2)
 makedepends=(extra-cmake-modules qt5-tools qt5-doc kdoctools doxygen)
 groups=(kf5)
-source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig})
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig}
+         kdebug-418898.patch::"https://cgit.kde.org/plasma-framework.git/patch/?id=0417bf61")
 sha256sums=('16a70a068116ccbad4ee48160c8d5585e4aa755b72399afafacbc5fe80fab8d0'
-            'SKIP')
+            'SKIP'
+            '3471b553dda8e69473de70fda31ad9982f394e8c1ac710fa9286873eb42c1ef2')
 validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <faure@kde.org>
 
 prepare() {
   mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../kdebug-418898.patch # Fix Plasma crash with Qt 5.15
 }
 
 build() {