[arch-commits] Commit in kio/repos (8 files)

Antonio Rojas arojas at archlinux.org
Sun Mar 20 00:17:47 UTC 2016


    Date: Sunday, March 20, 2016 @ 01:17:46
  Author: arojas
Revision: 262108

archrelease: copy trunk to kde-unstable-i686, kde-unstable-x86_64

Added:
  kio/repos/kde-unstable-i686/PKGBUILD
    (from rev 262107, kio/trunk/PKGBUILD)
  kio/repos/kde-unstable-i686/kio.install
    (from rev 262107, kio/trunk/kio.install)
  kio/repos/kde-unstable-x86_64/PKGBUILD
    (from rev 262107, kio/trunk/PKGBUILD)
  kio/repos/kde-unstable-x86_64/kio.install
    (from rev 262107, kio/trunk/kio.install)
Deleted:
  kio/repos/kde-unstable-i686/PKGBUILD
  kio/repos/kde-unstable-i686/kio.install
  kio/repos/kde-unstable-x86_64/PKGBUILD
  kio/repos/kde-unstable-x86_64/kio.install

---------------------------------+
 /PKGBUILD                       |   92 ++++++++++++++++++++++++++++++++++++++
 /kio.install                    |   22 +++++++++
 kde-unstable-i686/PKGBUILD      |   42 -----------------
 kde-unstable-i686/kio.install   |   11 ----
 kde-unstable-x86_64/PKGBUILD    |   42 -----------------
 kde-unstable-x86_64/kio.install |   11 ----
 6 files changed, 114 insertions(+), 106 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===================================================================
--- kde-unstable-i686/PKGBUILD	2016-03-20 00:16:53 UTC (rev 262107)
+++ kde-unstable-i686/PKGBUILD	2016-03-20 00:17:46 UTC (rev 262108)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Contributor: Andrea Scarpino <andrea at archlinux.org>
-
-pkgname=kio
-pkgver=5.20.0
-pkgrel=1
-pkgdesc='Resource and network access abstraction'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/frameworks/kio'
-license=('LGPL')
-depends=('solid' 'karchive' 'kjobwidgets' 'kbookmarks' 'libxslt' 'kwallet'
-         'desktop-file-utils')
-makedepends=('extra-cmake-modules' 'kdoctools')
-optdepends=('kio-extras: extra protocols support (sftp, fish and more)')
-groups=('kf5')
-install=kio.install
-source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
-md5sums=('f700e4089783d2420406b5024fef9f65')
-
-prepare() {
-  mkdir -p build
-
-  cd $pkgname-$pkgver
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
-    -DCMAKE_BUILD_TYPE=Release \
-    -DCMAKE_INSTALL_PREFIX=/usr \
-    -DLIB_INSTALL_DIR=lib \
-    -DLIBEXEC_INSTALL_DIR=lib \
-    -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
-    -DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kio/repos/kde-unstable-i686/PKGBUILD (from rev 262107, kio/trunk/PKGBUILD)
===================================================================
--- kde-unstable-i686/PKGBUILD	                        (rev 0)
+++ kde-unstable-i686/PKGBUILD	2016-03-20 00:17:46 UTC (rev 262108)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=kio
+pkgver=5.20.0
+pkgrel=2
+pkgdesc='Resource and network access abstraction'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kio'
+license=('LGPL')
+depends=('solid' 'karchive' 'kjobwidgets' 'kbookmarks' 'libxslt' 'kwallet'
+         'desktop-file-utils')
+makedepends=('extra-cmake-modules' 'kdoctools')
+optdepends=('kio-extras: extra protocols support (sftp, fish and more)')
+groups=('kf5')
+install=kio.install
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"
+	kdebug-360488.patch::"https://quickgit.kde.org/?p=kio.git&a=commitdiff&h=bf37e9aa&o=plain")
+md5sums=('f700e4089783d2420406b5024fef9f65'
+         '6e6f61fab93c7460673c6280bc215c0a')
+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+# Fix crash in rename dialog http://bugs.kde.org/show_bug.cgi?id=360488
+  patch -p1 -i ../kdebug-360488.patch 
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DLIB_INSTALL_DIR=lib \
+    -DLIBEXEC_INSTALL_DIR=lib \
+    -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+    -DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: kde-unstable-i686/kio.install
===================================================================
--- kde-unstable-i686/kio.install	2016-03-20 00:16:53 UTC (rev 262107)
+++ kde-unstable-i686/kio.install	2016-03-20 00:17:46 UTC (rev 262108)
@@ -1,11 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: kio/repos/kde-unstable-i686/kio.install (from rev 262107, kio/trunk/kio.install)
===================================================================
--- kde-unstable-i686/kio.install	                        (rev 0)
+++ kde-unstable-i686/kio.install	2016-03-20 00:17:46 UTC (rev 262108)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===================================================================
--- kde-unstable-x86_64/PKGBUILD	2016-03-20 00:16:53 UTC (rev 262107)
+++ kde-unstable-x86_64/PKGBUILD	2016-03-20 00:17:46 UTC (rev 262108)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Contributor: Andrea Scarpino <andrea at archlinux.org>
-
-pkgname=kio
-pkgver=5.20.0
-pkgrel=1
-pkgdesc='Resource and network access abstraction'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/frameworks/kio'
-license=('LGPL')
-depends=('solid' 'karchive' 'kjobwidgets' 'kbookmarks' 'libxslt' 'kwallet'
-         'desktop-file-utils')
-makedepends=('extra-cmake-modules' 'kdoctools')
-optdepends=('kio-extras: extra protocols support (sftp, fish and more)')
-groups=('kf5')
-install=kio.install
-source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
-md5sums=('f700e4089783d2420406b5024fef9f65')
-
-prepare() {
-  mkdir -p build
-
-  cd $pkgname-$pkgver
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
-    -DCMAKE_BUILD_TYPE=Release \
-    -DCMAKE_INSTALL_PREFIX=/usr \
-    -DLIB_INSTALL_DIR=lib \
-    -DLIBEXEC_INSTALL_DIR=lib \
-    -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
-    -DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kio/repos/kde-unstable-x86_64/PKGBUILD (from rev 262107, kio/trunk/PKGBUILD)
===================================================================
--- kde-unstable-x86_64/PKGBUILD	                        (rev 0)
+++ kde-unstable-x86_64/PKGBUILD	2016-03-20 00:17:46 UTC (rev 262108)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=kio
+pkgver=5.20.0
+pkgrel=2
+pkgdesc='Resource and network access abstraction'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kio'
+license=('LGPL')
+depends=('solid' 'karchive' 'kjobwidgets' 'kbookmarks' 'libxslt' 'kwallet'
+         'desktop-file-utils')
+makedepends=('extra-cmake-modules' 'kdoctools')
+optdepends=('kio-extras: extra protocols support (sftp, fish and more)')
+groups=('kf5')
+install=kio.install
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"
+	kdebug-360488.patch::"https://quickgit.kde.org/?p=kio.git&a=commitdiff&h=bf37e9aa&o=plain")
+md5sums=('f700e4089783d2420406b5024fef9f65'
+         '6e6f61fab93c7460673c6280bc215c0a')
+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+# Fix crash in rename dialog http://bugs.kde.org/show_bug.cgi?id=360488
+  patch -p1 -i ../kdebug-360488.patch 
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DLIB_INSTALL_DIR=lib \
+    -DLIBEXEC_INSTALL_DIR=lib \
+    -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+    -DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: kde-unstable-x86_64/kio.install
===================================================================
--- kde-unstable-x86_64/kio.install	2016-03-20 00:16:53 UTC (rev 262107)
+++ kde-unstable-x86_64/kio.install	2016-03-20 00:17:46 UTC (rev 262108)
@@ -1,11 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: kio/repos/kde-unstable-x86_64/kio.install (from rev 262107, kio/trunk/kio.install)
===================================================================
--- kde-unstable-x86_64/kio.install	                        (rev 0)
+++ kde-unstable-x86_64/kio.install	2016-03-20 00:17:46 UTC (rev 262108)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



More information about the arch-commits mailing list