git » baloo.git » commit 2d60966

Fix segfault in dolphin (FS#46290)

author Antonio Rojas
2015-09-22 19:06:03 UTC
committer Antonio Rojas
2015-09-22 19:06:03 UTC
parent e43892217f6dccdb90970c6b881952ec567be95f

Fix segfault in dolphin (FS#46290)

PKGBUILD +7 -3

diff --git a/PKGBUILD b/PKGBUILD
index 0edd134..0a271f8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
 
 pkgname=baloo
 pkgver=5.14.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A framework for searching and managing metadata"
 arch=('i686' 'x86_64')
 url='https://community.kde.org/Baloo'
@@ -16,9 +16,11 @@ provides=('baloo-frameworks')
 groups=('kf5')
 install="${pkgname}.install"
 source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"
-  baloo-bug352454.patch::"https://quickgit.kde.org/?p=baloo.git&a=commitdiff&h=3312d6f&o=plain")
+  baloo-bug352454.patch::"https://quickgit.kde.org/?p=baloo.git&a=commitdiff&h=3312d6f&o=plain"
+  baloo-bug353049.patch::"https://quickgit.kde.org/?p=baloo.git&a=commitdiff&h=29fe68f&o=plain")
 md5sums=('0e708135232432d371596d22ed864e3e'
-         '3b61489b8e4a2910bced3fb7b8872f69')
+         '3b61489b8e4a2910bced3fb7b8872f69'
+         '55458f5973551f7dd674e29f7c7237b5')
 
 prepare() {
   mkdir build
@@ -26,6 +28,8 @@ prepare() {
 # Fix crash when Baloo is disabled https://bugs.kde.org/show_bug.cgi?id=352454
   cd $pkgname-$pkgver
   patch -p1 -i ../baloo-bug352454.patch
+# Fix segfault in dolphin https://bugs.kde.org/show_bug.cgi?id=353049
+  patch -p1 -i ../baloo-bug353049.patch
 }
 
 build() {