Date: Thursday, October 15, 2020 @ 14:47:54 Author: arojas Revision: 398394
Fix selecting files with '#' Modified: kio/trunk/PKGBUILD ----------+ PKGBUILD | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-10-15 14:45:42 UTC (rev 398393) +++ PKGBUILD 2020-10-15 14:47:54 UTC (rev 398394) @@ -4,7 +4,7 @@ pkgname=kio pkgver=5.75.0 -pkgrel=1 +pkgrel=2 pkgdesc='Resource and network access abstraction' arch=(x86_64) url='https://community.kde.org/Frameworks' @@ -14,11 +14,17 @@ optdepends=('kio-extras: extra protocols support (sftp, fish and more)' 'kdoctools: for the help kioslave' 'knetattach: to add new kio-remote entries' 'kio-fuse: to mount remote filesystems via FUSE') 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} + https://invent.kde.org/frameworks/kio/-/commit/4321b8ff.patch) sha256sums=('27af8d83d0ea6c68fc62675a0d0d34e94489e9e518c4a4c32fa9d4784510bc8e' - 'SKIP') + 'SKIP' + '6516a723e910ae34a3c8572b86e420e234f5a6a37f680ae17ce4d82e64a761e7') validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <[email protected]> +prepare() { + patch -d $pkgname-$pkgver -p1 -i ../4321b8ff.patch # Fix selecting files with '#' +} + build() { cmake -B build -S $pkgname-$pkgver \ -DCMAKE_INSTALL_LIBEXECDIR=lib \
