Date: Monday, February 8, 2016 @ 23:42:15 Author: arojas Revision: 258993
Fix deprecated perl syntax in info2html (FS#48090) Modified: kio-extras/trunk/PKGBUILD ----------+ PKGBUILD | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2016-02-08 18:06:14 UTC (rev 258992) +++ PKGBUILD 2016-02-08 22:42:15 UTC (rev 258993) @@ -5,7 +5,7 @@ pkgname=kio-extras pkgver=15.12.1 -pkgrel=1 +pkgrel=2 pkgdesc="Additional components to increase the functionality of KIO" arch=(i686 x86_64) url='https://projects.kde.org/projects/kde/workspace/kio-extras' @@ -14,11 +14,17 @@ makedepends=(extra-cmake-modules kdoctools) groups=(kde-applications kdenetwork) install=$pkgname.install -source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz") -md5sums=('5a45e9df178f3bba38f257be6e026f22') +source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz" + bug359015.patch::"https://quickgit.kde.org/?p=kio-extras.git&a=commitdiff&h=af92d618&o=plain") +md5sums=('5a45e9df178f3bba38f257be6e026f22' + 'e47b7f6af98cce2c36929731e3bb2ea5') prepare() { mkdir -p build + + cd $pkgname-$pkgver +# Fix deprecated perl syntax http://bugs.kde.org/show_bug.cgi?id=359015 + patch -p1 -i ../bug359015.patch } build() {
