git » knotifications.git » commit 3c17c5c

Don't block starting notification service (FS#54453)

author Antonio Rojas
2017-08-29 16:33:22 UTC
committer Antonio Rojas
2017-08-29 16:33:22 UTC
parent fbacc65eae456e0098455155a0db044a2c7f046c

Don't block starting notification service (FS#54453)

PKGBUILD +9 -3

diff --git a/PKGBUILD b/PKGBUILD
index de09b0a..4e2f8c6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,9 +1,10 @@
 # Maintainer: Felix Yan <felixonmars@archlinux.org>
+# Maintainer: Antonio Rojas <arojas@archlinux.org>
 # Contributor: Andrea Scarpino <andrea@archlinux.org>
 
 pkgname=knotifications
 pkgver=5.37.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Abstraction for system notifications'
 arch=('i686' 'x86_64')
 url='https://community.kde.org/Frameworks'
@@ -11,13 +12,18 @@ license=('LGPL')
 depends=('phonon-qt5' 'libdbusmenu-qt5' 'kwindowsystem' 'kconfig' 'kcodecs' 'kcoreaddons' 'qt5-speech')
 makedepends=('extra-cmake-modules' 'qt5-tools' 'python' '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-382444.patch::"https://cgit.kde.org/knotifications.git/patch/?id=1c97e1d9")
 sha256sums=('66cdfddaa31f773a538d429026d0117e60f8a0a7f2a90c861f95d84395347b3f'
-            'SKIP')
+            'SKIP'
+            '3bd4eaa9a883ad7b884c566e4e00c17991062e131a3920951079579371ce2fae')
 validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <faure@kde.org>
 
 prepare() {
   mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../kdebug-382444.patch # Don't block starting notification service
 }
 
 build() {