git » plasma-framework.git » commit 775c8ae

Fix performance issue caused by taskbar tooltips (FS#47494)

author Antonio Rojas
2015-12-22 19:31:31 UTC
committer Antonio Rojas
2015-12-22 19:31:31 UTC
parent 8c688aa9e7013ec7762d1986b40d18ffb48e792a

Fix performance issue caused by taskbar tooltips (FS#47494)

PKGBUILD +7 -3

diff --git a/PKGBUILD b/PKGBUILD
index 619b7e0..01f12c7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
 
 pkgname=plasma-framework
 pkgver=5.17.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/frameworks/plasma-framework'
@@ -12,9 +12,11 @@ depends=('qt5-quickcontrols' 'kactivities')
 makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools')
 groups=('kf5')
 source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"
-        fix-crash.patch::"https://quickgit.kde.org/?p=plasma-framework.git&a=commitdiff&h=bca8e8&o=plain")
+        fix-crash.patch::"https://quickgit.kde.org/?p=plasma-framework.git&a=commitdiff&h=bca8e8&o=plain"
+	bug356938.patch::"https://quickgit.kde.org/?p=plasma-framework.git&a=commitdiff&h=c64a94&o=plain")
 md5sums=('5b0f2f31497c81870f3ccc68e3e7a5fa'
-         '568e37898934ab113850084f2a515007')
+         '568e37898934ab113850084f2a515007'
+         '005062c7a8383a4386c9e87953e6996a')
 
 prepare() {
   mkdir -p build
@@ -22,6 +24,8 @@ prepare() {
 # Fix crash http://bugs.kde.org/show_bug.cgi?id=356428
   cd $pkgname-$pkgver
   patch -p1 -i ../fix-crash.patch
+# Fix taskbar tooltips causing performance issues http://bugs.kde.org/show_bug.cgi?id=356938
+  patch -p1 -i ../bug356938.patch
 }
 
 build() {