Date: Tuesday, May 12, 2020 @ 08:04:19
Author: arojas
Revision: 383278
archrelease: copy trunk to staging-x86_64
Added:
kio-extras/repos/staging-x86_64/
kio-extras/repos/staging-x86_64/PKGBUILD
(from rev 383277, kio-extras/trunk/PKGBUILD)
----------+
PKGBUILD | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
Copied: kio-extras/repos/staging-x86_64/PKGBUILD (from rev 383277,
kio-extras/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-05-12 08:04:19 UTC (rev 383278)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan <[email protected]>
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+
+pkgname=kio-extras
+pkgver=20.04.0
+pkgrel=4
+pkgdesc="Additional components to increase the functionality of KIO"
+arch=(x86_64)
+url='https://www.kde.org/applications/internet/'
+license=(LGPL)
+depends=(kio kdnssd libssh smbclient exiv2 openexr libmtp kpty
kactivities-stats phonon-qt5 syntax-highlighting kdsoap-ws-discovery-client
libxcursor)
+makedepends=(extra-cmake-modules kdoctools gperf taglib libappimage)
+optdepends=('qt5-imageformats: thumbnails for additional image formats' 'perl:
info kioslave'
+ 'kimageformats: thumbnails for additional image formats' 'taglib:
audio file thumbnails'
+ 'libappimage: AppImage thumbnails' 'icoutils: Windows executable
thumbnails')
+groups=(kde-applications kdenetwork)
+source=("https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+
CVE-2020-12755.patch::"https://cgit.kde.org/kio-extras.git/patch/?id=d813cef3")
+sha256sums=('a70f6079a8d2acb8c64bf0d08f7f7e5685f2e9c4e49548c138609437fdc6cd4d'
+ 'SKIP'
+ '365f1c5a252e221f048c6199de111db2d5715500738b5981ed4f63a9bd984d0e')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7 # Albert Astals Cid
<[email protected]>
+ F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck
<[email protected]>
+
+prepare() {
+ mkdir -p build
+
+ cd $pkgname-$pkgver
+ patch -p1 -i ../CVE-2020-12755.patch
+}
+
+build() {
+ cd build
+ cmake ../$pkgname-$pkgver \
+ -DLIBAPPIMAGE_LIBRARIES=libappimage.so \
+ -DBUILD_TESTING=OFF
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="$pkgdir" install
+}