git » kwallet.git » commit 3ee2ad4

Fix password filling in Falkon

author Antonio Rojas
2020-01-30 17:32:39 UTC
committer Antonio Rojas
2020-01-30 17:32:39 UTC
parent ddd84c221fb488d2596a8a2b4119569d70fa5b9c

Fix password filling in Falkon

PKGBUILD +12 -3

diff --git a/PKGBUILD b/PKGBUILD
index fd481a6..3bc31f8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
 
 pkgname=kwallet
 pkgver=5.66.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Secure and unified container for user passwords'
 arch=(x86_64)
 url='https://community.kde.org/Frameworks'
@@ -13,13 +13,22 @@ depends=(knotifications kiconthemes kservice gpgme)
 makedepends=(extra-cmake-modules kdoctools boost doxygen qt5-tools qt5-doc)
 optdepends=('kwalletmanager: Configuration GUI')
 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}
+         kwallet-falkon-1.patch::"https://cgit.kde.org/kwallet.git/patch/?id=d4980443"
+         kwallet-falkon-2.patch::"https://cgit.kde.org/kwallet.git/patch/?id=02ab54ea")
 sha256sums=('6e48070e22a822a4003e1f7a739fe1e335bcf46982cbf4909d23a6e40689a827'
-            'SKIP')
+            'SKIP'
+            'c4699f82fa8120c38487f32a18381df141df0e6d3c60448099571c168f7d7d62'
+            'eda63d7d1a3fe514648ccae332749c6aab249915dee98d3f390b07eb38cad740')
 validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <faure@kde.org>
 
 prepare() {
   mkdir -p build
+
+# Fix password filling in falkon
+  cd $pkgname-$pkgver
+  patch -p1 -i ../kwallet-falkon-1.patch
+  patch -p1 -i ../kwallet-falkon-2.patch
 }
 
 build() {