git » plasma-framework.git » commit 04c3100

Fix crash in calendar plugin

author Antonio Rojas
2019-12-23 21:50:31 UTC
committer Antonio Rojas
2019-12-23 21:50:31 UTC
parent 22431f760f6043054a2091910969f9e8a6fdbf5b

Fix crash in calendar plugin

PKGBUILD +8 -3

diff --git a/PKGBUILD b/PKGBUILD
index c61f501..47b7cdd 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
 
 pkgname=plasma-framework
 pkgver=5.65.0
-pkgrel=3
+pkgrel=4
 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-415492.patch::"https://cgit.kde.org/plasma-framework.git/patch/?id=6756d00f")
 sha256sums=('794616029509897bdf1685fc1fd0b6cfb66f4edd3627aa69138f100a4615c826'
-            'SKIP')
+            'SKIP'
+            'af524ddc83c28c19e1785f593745b76157d192040413c945733ad84a2c3e2b08')
 validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <faure@kde.org>
 
 prepare() {
   mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../kdebug-415492.patch # Fix crash in calendar plugin
 }
 
 build() {