[arch-commits] Commit in kdebase-runtime/repos (4 files)

2018-02-25 Thread Antonio Rojas via arch-commits
Date: Monday, February 26, 2018 @ 03:07:13
  Author: arojas
Revision: 317537

archrelease: copy trunk to staging-x86_64

Added:
  kdebase-runtime/repos/staging-x86_64/
  kdebase-runtime/repos/staging-x86_64/PKGBUILD
(from rev 317536, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/staging-x86_64/kdebase-runtime-no-html-thumbnails.patch
(from rev 317536, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/staging-x86_64/kdebase-runtime-no-kdewebkit.patch
(from rev 317536, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)

--+
 PKGBUILD |   70 +
 kdebase-runtime-no-html-thumbnails.patch |   21 
 kdebase-runtime-no-kdewebkit.patch   |   49 
 3 files changed, 140 insertions(+)

Copied: kdebase-runtime/repos/staging-x86_64/PKGBUILD (from rev 317536, 
kdebase-runtime/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-02-26 03:07:13 UTC (rev 317537)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=17.08.3
+pkgrel=3
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'doxygen' 'networkmanager' 
'boost')
+depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("https://download.kde.org/stable/applications/$pkgver/src/kde-runtime-$pkgver.tar.xz"{,.sig}
+kdebase-runtime-no-html-thumbnails.patch 
kdebase-runtime-no-kdewebkit.patch)
+sha256sums=('682c18afb11cda41288c4508831cb59797417b9d81ea916e0e99722ebe9bce96'
+'SKIP'
+'5ce434f25759215ed2b6f71ec82a9118ee76e7428ef1af8a5495133a76c9c2df'
+'93d5ddf78c784b3d79486813bdfb43debba271b389bfc46ca79aabdb0bca14db')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+
+# Don't link to kactivities
+  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
+# Drop HTML thumbnailer, uses insecure QtWebKit
+  cd kde-runtime-$pkgver
+  patch -p1 -i ../kdebase-runtime-no-html-thumbnails.patch
+  patch -p1 -i ../kdebase-runtime-no-kdewebkit.patch
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_drkonqi=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# Use KF5 drkonqi
+  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Copied: 
kdebase-runtime/repos/staging-x86_64/kdebase-runtime-no-html-thumbnails.patch 
(from rev 317536, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
===
--- staging-x86_64/kdebase-runtime-no-html-thumbnails.patch 
(rev 0)
+++ staging-x86_64/kdebase-runtime-no-html-thumbnails.patch 2018-02-26 
03:07:13 UTC (rev 317537)
@@ -0,0 +1,21 @@
+--- kde-runtime-16.12.1/kioslave/thumbnail/CMakeLists.txt.02017-01-19 
12:11:22.764891155 +
 kde-runtime-16.12.1/kioslave/thumbnail/CMakeLists.txt  2017-01-19 
12:11:40.741524858 +
+@@ -89,18 +89,6 @@
+ 
+ ### next target ###
+ 
+-if(NOT WINCE)
+-set(htmlthumbnail_PART_SRCS htmlcreator.cpp)
+-
+-kde4_add_plugin(htmlthumbnail ${htmlthumbnail_PART_SRCS})
+-
+-target_link_libraries(htmlthumbnail ${KDE4_KDEWEBKIT_LIBS})
+-
+-install(TARGETS htmlthumbnail DESTINATION ${PLUGIN_INSTALL_DIR})
+-endif(NOT WINCE)
+-
+-### next target ###
+-
+ if(NOT WIN32)
+ set(djvuthumbnail_PART_SRCS djvucreator.cpp)
+ 

Copied: kdebase-runtime/repos/staging-x86_64/kdebase-runtime-no-kdewebkit.patch 
(from rev 317536, 

[arch-commits] Commit in kdebase-runtime/repos/extra-x86_64 (6 files)

2018-01-09 Thread Antonio Rojas via arch-commits
Date: Tuesday, January 9, 2018 @ 13:46:35
  Author: arojas
Revision: 314292

archrelease: copy trunk to extra-x86_64

Added:
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 314291, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-html-thumbnails.patch
(from rev 314291, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-kdewebkit.patch
(from rev 314291, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)
Deleted:
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-html-thumbnails.patch
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-kdewebkit.patch

--+
 PKGBUILD |  140 ++---
 kdebase-runtime-no-html-thumbnails.patch |   42 
 kdebase-runtime-no-kdewebkit.patch   |   98 ++--
 3 files changed, 140 insertions(+), 140 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-09 13:46:04 UTC (rev 314291)
+++ PKGBUILD2018-01-09 13:46:35 UTC (rev 314292)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=17.08.3
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("https://download.kde.org/stable/applications/$pkgver/src/kde-runtime-$pkgver.tar.xz"{,.sig}
-kdebase-runtime-no-html-thumbnails.patch 
kdebase-runtime-no-kdewebkit.patch)
-sha256sums=('682c18afb11cda41288c4508831cb59797417b9d81ea916e0e99722ebe9bce96'
-'SKIP'
-'5ce434f25759215ed2b6f71ec82a9118ee76e7428ef1af8a5495133a76c9c2df'
-'93d5ddf78c784b3d79486813bdfb43debba271b389bfc46ca79aabdb0bca14db')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

-
-prepare() {
-  mkdir -p build
-
-# Don't link to kactivities
-  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
-# Drop HTML thumbnailer, uses insecure QtWebKit
-  cd kde-runtime-$pkgver
-  patch -p1 -i ../kdebase-runtime-no-html-thumbnails.patch
-  patch -p1 -i ../kdebase-runtime-no-kdewebkit.patch
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_drkonqi=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# Use KF5 drkonqi
-  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-x86_64/PKGBUILD (from rev 314291, 
kdebase-runtime/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-09 13:46:35 UTC (rev 314292)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=17.08.3
+pkgrel=2
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'doxygen' 'networkmanager' 
'boost')
+depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("https://download.kde.org/stable/applications/$pkgver/src/kde-runtime-$pkgver.tar.xz"{,.sig}
+

[arch-commits] Commit in kdebase-runtime/repos/extra-x86_64 (6 files)

2017-11-09 Thread Antonio Rojas
Date: Thursday, November 9, 2017 @ 12:55:34
  Author: arojas
Revision: 309093

archrelease: copy trunk to extra-x86_64

Added:
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 309092, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-html-thumbnails.patch
(from rev 309092, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-kdewebkit.patch
(from rev 309092, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)
Deleted:
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-html-thumbnails.patch
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-kdewebkit.patch

--+
 PKGBUILD |  140 ++---
 kdebase-runtime-no-html-thumbnails.patch |   42 
 kdebase-runtime-no-kdewebkit.patch   |   98 ++--
 3 files changed, 140 insertions(+), 140 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-09 12:53:53 UTC (rev 309092)
+++ PKGBUILD2017-11-09 12:55:34 UTC (rev 309093)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=17.08.2
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("https://download.kde.org/stable/applications/$pkgver/src/kde-runtime-$pkgver.tar.xz"{,.sig}
-kdebase-runtime-no-html-thumbnails.patch 
kdebase-runtime-no-kdewebkit.patch)
-sha256sums=('ab9fc015328bc4f3fb5b046f0b7c95af626e954721fcf4eda17251d1efb27201'
-'SKIP'
-'5ce434f25759215ed2b6f71ec82a9118ee76e7428ef1af8a5495133a76c9c2df'
-'93d5ddf78c784b3d79486813bdfb43debba271b389bfc46ca79aabdb0bca14db')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

-
-prepare() {
-  mkdir -p build
-
-# Don't link to kactivities
-  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
-# Drop HTML thumbnailer, uses insecure QtWebKit
-  cd kde-runtime-$pkgver
-  patch -p1 -i ../kdebase-runtime-no-html-thumbnails.patch
-  patch -p1 -i ../kdebase-runtime-no-kdewebkit.patch
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_drkonqi=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# Use KF5 drkonqi
-  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-x86_64/PKGBUILD (from rev 309092, 
kdebase-runtime/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-09 12:55:34 UTC (rev 309093)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=17.08.3
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("https://download.kde.org/stable/applications/$pkgver/src/kde-runtime-$pkgver.tar.xz"{,.sig}
+

[arch-commits] Commit in kdebase-runtime/repos (12 files)

2017-10-12 Thread Antonio Rojas
Date: Thursday, October 12, 2017 @ 14:25:54
  Author: arojas
Revision: 307549

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 307548, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-html-thumbnails.patch
(from rev 307548, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-kdewebkit.patch
(from rev 307548, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 307548, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-html-thumbnails.patch
(from rev 307548, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-kdewebkit.patch
(from rev 307548, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-html-thumbnails.patch
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-kdewebkit.patch
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-html-thumbnails.patch
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-kdewebkit.patch

---+
 /PKGBUILD |  140 
 /kdebase-runtime-no-html-thumbnails.patch |   42 
 /kdebase-runtime-no-kdewebkit.patch   |   98 +++
 extra-i686/PKGBUILD   |   70 
 extra-i686/kdebase-runtime-no-html-thumbnails.patch   |   21 --
 extra-i686/kdebase-runtime-no-kdewebkit.patch |   49 -
 extra-x86_64/PKGBUILD |   70 
 extra-x86_64/kdebase-runtime-no-html-thumbnails.patch |   21 --
 extra-x86_64/kdebase-runtime-no-kdewebkit.patch   |   49 -
 9 files changed, 280 insertions(+), 280 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-10-12 14:25:12 UTC (rev 307548)
+++ extra-i686/PKGBUILD 2017-10-12 14:25:54 UTC (rev 307549)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=17.08.1
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("https://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig}
-kdebase-runtime-no-html-thumbnails.patch 
kdebase-runtime-no-kdewebkit.patch)
-sha256sums=('ef0f3d0e07c8248a41a38c89e86d87513581b810200a89e7c172ae3e6f23823e'
-'SKIP'
-'5ce434f25759215ed2b6f71ec82a9118ee76e7428ef1af8a5495133a76c9c2df'
-'93d5ddf78c784b3d79486813bdfb43debba271b389bfc46ca79aabdb0bca14db')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

-
-prepare() {
-  mkdir -p build
-
-# Don't link to kactivities
-  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
-# Drop HTML thumbnailer, uses insecure QtWebKit
-  cd kde-runtime-$pkgver
-  patch -p1 -i ../kdebase-runtime-no-html-thumbnails.patch
-  patch -p1 -i ../kdebase-runtime-no-kdewebkit.patch
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_drkonqi=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# Use KF5 drkonqi
-  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 307548, 

[arch-commits] Commit in kdebase-runtime/repos (12 files)

2017-09-07 Thread Antonio Rojas
Date: Thursday, September 7, 2017 @ 17:30:06
  Author: arojas
Revision: 304780

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 304779, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-html-thumbnails.patch
(from rev 304779, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-kdewebkit.patch
(from rev 304779, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 304779, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-html-thumbnails.patch
(from rev 304779, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-kdewebkit.patch
(from rev 304779, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-html-thumbnails.patch
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-kdewebkit.patch
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-html-thumbnails.patch
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-kdewebkit.patch

---+
 /PKGBUILD |  140 
 /kdebase-runtime-no-html-thumbnails.patch |   42 
 /kdebase-runtime-no-kdewebkit.patch   |   98 +++
 extra-i686/PKGBUILD   |   70 
 extra-i686/kdebase-runtime-no-html-thumbnails.patch   |   21 --
 extra-i686/kdebase-runtime-no-kdewebkit.patch |   49 -
 extra-x86_64/PKGBUILD |   70 
 extra-x86_64/kdebase-runtime-no-html-thumbnails.patch |   21 --
 extra-x86_64/kdebase-runtime-no-kdewebkit.patch   |   49 -
 9 files changed, 280 insertions(+), 280 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-09-07 17:29:41 UTC (rev 304779)
+++ extra-i686/PKGBUILD 2017-09-07 17:30:06 UTC (rev 304780)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=17.08.0
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("https://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig}
-kdebase-runtime-no-html-thumbnails.patch 
kdebase-runtime-no-kdewebkit.patch)
-sha256sums=('e0d4462b75b68ddd7ac0c31b8454288f8a167b224a9d295be152dd9cf50a4692'
-'SKIP'
-'5ce434f25759215ed2b6f71ec82a9118ee76e7428ef1af8a5495133a76c9c2df'
-'93d5ddf78c784b3d79486813bdfb43debba271b389bfc46ca79aabdb0bca14db')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

-
-prepare() {
-  mkdir -p build
-
-# Don't link to kactivities
-  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
-# Drop HTML thumbnailer, uses insecure QtWebKit
-  cd kde-runtime-$pkgver
-  patch -p1 -i ../kdebase-runtime-no-html-thumbnails.patch
-  patch -p1 -i ../kdebase-runtime-no-kdewebkit.patch
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_drkonqi=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# Use KF5 drkonqi
-  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 304779, 

[arch-commits] Commit in kdebase-runtime/repos (10 files)

2017-08-18 Thread Antonio Rojas
Date: Saturday, August 19, 2017 @ 04:29:03
  Author: arojas
Revision: 302393

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 302392, kdebase-runtime/trunk/PKGBUILD)
  
kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime-no-html-thumbnails.patch
(from rev 302392, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime-no-kdewebkit.patch
(from rev 302392, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 302392, kdebase-runtime/trunk/PKGBUILD)
  
kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime-no-html-thumbnails.patch
(from rev 302392, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime-no-kdewebkit.patch
(from rev 302392, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)
Deleted:
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
  
kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime-no-html-thumbnails.patch
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime-no-kdewebkit.patch

--+
 /PKGBUILD|   70 ++
 /kdebase-runtime-no-html-thumbnails.patch|   21 +++
 /kdebase-runtime-no-kdewebkit.patch  |   49 +++
 kde-unstable-i686/PKGBUILD   |   70 ++
 kde-unstable-i686/kdebase-runtime-no-html-thumbnails.patch   |   21 +++
 kde-unstable-i686/kdebase-runtime-no-kdewebkit.patch |   49 +++
 kde-unstable-x86_64/PKGBUILD |   70 --
 kde-unstable-x86_64/kdebase-runtime-no-html-thumbnails.patch |   21 ---
 kde-unstable-x86_64/kdebase-runtime-no-kdewebkit.patch   |   49 ---
 9 files changed, 280 insertions(+), 140 deletions(-)

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 302392, 
kdebase-runtime/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2017-08-19 04:29:03 UTC (rev 302393)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=17.08.0
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("https://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig}
+kdebase-runtime-no-html-thumbnails.patch 
kdebase-runtime-no-kdewebkit.patch)
+sha256sums=('e0d4462b75b68ddd7ac0c31b8454288f8a167b224a9d295be152dd9cf50a4692'
+'SKIP'
+'5ce434f25759215ed2b6f71ec82a9118ee76e7428ef1af8a5495133a76c9c2df'
+'93d5ddf78c784b3d79486813bdfb43debba271b389bfc46ca79aabdb0bca14db')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+
+# Don't link to kactivities
+  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
+# Drop HTML thumbnailer, uses insecure QtWebKit
+  cd kde-runtime-$pkgver
+  patch -p1 -i ../kdebase-runtime-no-html-thumbnails.patch
+  patch -p1 -i ../kdebase-runtime-no-kdewebkit.patch
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_drkonqi=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# Use KF5 drkonqi
+  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s 

[arch-commits] Commit in kdebase-runtime/repos (4 files)

2017-07-21 Thread Antonio Rojas
Date: Friday, July 21, 2017 @ 19:25:07
  Author: arojas
Revision: 300893

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kdebase-runtime/repos/kde-unstable-x86_64/
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 300892, kdebase-runtime/kde-unstable/PKGBUILD)
  
kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime-no-html-thumbnails.patch
(from rev 300892, 
kdebase-runtime/kde-unstable/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime-no-kdewebkit.patch
(from rev 300892, 
kdebase-runtime/kde-unstable/kdebase-runtime-no-kdewebkit.patch)

--+
 PKGBUILD |   70 +
 kdebase-runtime-no-html-thumbnails.patch |   21 
 kdebase-runtime-no-kdewebkit.patch   |   49 
 3 files changed, 140 insertions(+)

Copied: kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD (from rev 300892, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-07-21 19:25:07 UTC (rev 300893)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=17.07.80
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("https://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig}
+kdebase-runtime-no-html-thumbnails.patch 
kdebase-runtime-no-kdewebkit.patch)
+sha256sums=('ac93be07fdc0d68e254f6572d5333e29e636c16ff4779f00413afa556087295a'
+'SKIP'
+'5ce434f25759215ed2b6f71ec82a9118ee76e7428ef1af8a5495133a76c9c2df'
+'93d5ddf78c784b3d79486813bdfb43debba271b389bfc46ca79aabdb0bca14db')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+
+# Don't link to kactivities
+  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
+# Drop HTML thumbnailer, uses insecure QtWebKit
+  cd kde-runtime-$pkgver
+  patch -p1 -i ../kdebase-runtime-no-html-thumbnails.patch
+  patch -p1 -i ../kdebase-runtime-no-kdewebkit.patch
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_drkonqi=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# Use KF5 drkonqi
+  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Copied: 
kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime-no-html-thumbnails.patch
 (from rev 300892, 
kdebase-runtime/kde-unstable/kdebase-runtime-no-html-thumbnails.patch)
===
--- kde-unstable-x86_64/kdebase-runtime-no-html-thumbnails.patch
(rev 0)
+++ kde-unstable-x86_64/kdebase-runtime-no-html-thumbnails.patch
2017-07-21 19:25:07 UTC (rev 300893)
@@ -0,0 +1,21 @@
+--- kde-runtime-16.12.1/kioslave/thumbnail/CMakeLists.txt.02017-01-19 
12:11:22.764891155 +
 kde-runtime-16.12.1/kioslave/thumbnail/CMakeLists.txt  2017-01-19 
12:11:40.741524858 +
+@@ -89,18 +89,6 @@
+ 
+ ### next target ###
+ 
+-if(NOT WINCE)
+-set(htmlthumbnail_PART_SRCS htmlcreator.cpp)
+-
+-kde4_add_plugin(htmlthumbnail ${htmlthumbnail_PART_SRCS})
+-
+-target_link_libraries(htmlthumbnail ${KDE4_KDEWEBKIT_LIBS})
+-
+-install(TARGETS htmlthumbnail DESTINATION ${PLUGIN_INSTALL_DIR})
+-endif(NOT WINCE)
+-
+-### next target ###
+-
+ if(NOT WIN32)
+ set(djvuthumbnail_PART_SRCS 

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

2017-07-14 Thread Antonio Rojas
Date: Friday, July 14, 2017 @ 19:10:16
  Author: arojas
Revision: 300564

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  kdebase-runtime/repos/staging-i686/
  kdebase-runtime/repos/staging-i686/PKGBUILD
(from rev 300563, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/staging-i686/kdebase-runtime-no-html-thumbnails.patch
(from rev 300563, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/staging-i686/kdebase-runtime-no-kdewebkit.patch
(from rev 300563, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)
  kdebase-runtime/repos/staging-x86_64/
  kdebase-runtime/repos/staging-x86_64/PKGBUILD
(from rev 300563, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/staging-x86_64/kdebase-runtime-no-html-thumbnails.patch
(from rev 300563, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/staging-x86_64/kdebase-runtime-no-kdewebkit.patch
(from rev 300563, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)

-+
 staging-i686/PKGBUILD   |   70 ++
 staging-i686/kdebase-runtime-no-html-thumbnails.patch   |   21 
 staging-i686/kdebase-runtime-no-kdewebkit.patch |   49 +
 staging-x86_64/PKGBUILD |   70 ++
 staging-x86_64/kdebase-runtime-no-html-thumbnails.patch |   21 
 staging-x86_64/kdebase-runtime-no-kdewebkit.patch   |   49 +
 6 files changed, 280 insertions(+)

Copied: kdebase-runtime/repos/staging-i686/PKGBUILD (from rev 300563, 
kdebase-runtime/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-07-14 19:10:16 UTC (rev 300564)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=17.04.3
+pkgrel=2
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("https://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig}
+kdebase-runtime-no-html-thumbnails.patch 
kdebase-runtime-no-kdewebkit.patch)
+sha256sums=('36f6bbd998d7d53d53bb34d472d3c13f85dd804d5190bb091307f5857a87ba15'
+'SKIP'
+'5ce434f25759215ed2b6f71ec82a9118ee76e7428ef1af8a5495133a76c9c2df'
+'93d5ddf78c784b3d79486813bdfb43debba271b389bfc46ca79aabdb0bca14db')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+
+# Don't link to kactivities
+  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
+# Drop HTML thumbnailer, uses insecure QtWebKit
+  cd kde-runtime-$pkgver
+  patch -p1 -i ../kdebase-runtime-no-html-thumbnails.patch
+  patch -p1 -i ../kdebase-runtime-no-kdewebkit.patch
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_drkonqi=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# Use KF5 drkonqi
+  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Copied: 
kdebase-runtime/repos/staging-i686/kdebase-runtime-no-html-thumbnails.patch 
(from rev 300563, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
===
--- staging-i686/kdebase-runtime-no-html-thumbnails.patch   
(rev 0)
+++ staging-i686/kdebase-runtime-no-html-thumbnails.patch   2017-07-14 
19:10:16 UTC (rev 300564)
@@ -0,0 +1,21 @@
+--- 

[arch-commits] Commit in kdebase-runtime/repos (12 files)

2017-07-13 Thread Antonio Rojas
Date: Thursday, July 13, 2017 @ 14:01:50
  Author: arojas
Revision: 300259

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 300258, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-html-thumbnails.patch
(from rev 300258, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-kdewebkit.patch
(from rev 300258, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 300258, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-html-thumbnails.patch
(from rev 300258, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-kdewebkit.patch
(from rev 300258, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-html-thumbnails.patch
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-kdewebkit.patch
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-html-thumbnails.patch
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-kdewebkit.patch

---+
 /PKGBUILD |  140 
 /kdebase-runtime-no-html-thumbnails.patch |   42 
 /kdebase-runtime-no-kdewebkit.patch   |   98 +++
 extra-i686/PKGBUILD   |   69 ---
 extra-i686/kdebase-runtime-no-html-thumbnails.patch   |   21 --
 extra-i686/kdebase-runtime-no-kdewebkit.patch |   49 -
 extra-x86_64/PKGBUILD |   69 ---
 extra-x86_64/kdebase-runtime-no-html-thumbnails.patch |   21 --
 extra-x86_64/kdebase-runtime-no-kdewebkit.patch   |   49 -
 9 files changed, 280 insertions(+), 278 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-07-13 14:01:10 UTC (rev 300258)
+++ extra-i686/PKGBUILD 2017-07-13 14:01:50 UTC (rev 300259)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=17.04.2
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("https://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig}
-kdebase-runtime-no-html-thumbnails.patch 
kdebase-runtime-no-kdewebkit.patch)
-sha256sums=('c94844280609121e66a6951a40f8f9c496d7818c3c50672b30e41997956705a1'
-'SKIP'
-'5ce434f25759215ed2b6f71ec82a9118ee76e7428ef1af8a5495133a76c9c2df'
-'93d5ddf78c784b3d79486813bdfb43debba271b389bfc46ca79aabdb0bca14db')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

-
-prepare() {
-  mkdir -p build
-
-# Don't link to kactivities
-  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
-# Drop HTML thumbnailer, uses insecure QtWebKit
-  cd kde-runtime-$pkgver
-  patch -p1 -i ../kdebase-runtime-no-html-thumbnails.patch
-  patch -p1 -i ../kdebase-runtime-no-kdewebkit.patch
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_drkonqi=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# Use KF5 drkonqi
-  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 300258, 
kdebase-runtime/trunk/PKGBUILD)
===
--- 

[arch-commits] Commit in kdebase-runtime/repos (12 files)

2017-06-08 Thread Antonio Rojas
Date: Thursday, June 8, 2017 @ 11:04:31
  Author: arojas
Revision: 298159

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 298158, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-html-thumbnails.patch
(from rev 298158, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-kdewebkit.patch
(from rev 298158, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 298158, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-html-thumbnails.patch
(from rev 298158, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-kdewebkit.patch
(from rev 298158, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-html-thumbnails.patch
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-kdewebkit.patch
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-html-thumbnails.patch
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-kdewebkit.patch

---+
 /PKGBUILD |  138 
 /kdebase-runtime-no-html-thumbnails.patch |   42 
 /kdebase-runtime-no-kdewebkit.patch   |   98 +++
 extra-i686/PKGBUILD   |   69 
 extra-i686/kdebase-runtime-no-html-thumbnails.patch   |   21 --
 extra-i686/kdebase-runtime-no-kdewebkit.patch |   49 -
 extra-x86_64/PKGBUILD |   69 
 extra-x86_64/kdebase-runtime-no-html-thumbnails.patch |   21 --
 extra-x86_64/kdebase-runtime-no-kdewebkit.patch   |   49 -
 9 files changed, 278 insertions(+), 278 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-06-08 11:04:07 UTC (rev 298158)
+++ extra-i686/PKGBUILD 2017-06-08 11:04:31 UTC (rev 298159)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=17.04.1
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("https://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig}
-kdebase-runtime-no-html-thumbnails.patch 
kdebase-runtime-no-kdewebkit.patch)
-sha256sums=('14a01d4b7e0ca4bcb3f95a40baf2d15412b89a51adf7f3c3b4c35601bd6d2a67'
-'SKIP'
-'5ce434f25759215ed2b6f71ec82a9118ee76e7428ef1af8a5495133a76c9c2df'
-'93d5ddf78c784b3d79486813bdfb43debba271b389bfc46ca79aabdb0bca14db')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

-
-prepare() {
-  mkdir -p build
-
-# Don't link to kactivities
-  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
-# Drop HTML thumbnailer, uses insecure QtWebKit
-  cd kde-runtime-$pkgver
-  patch -p1 -i ../kdebase-runtime-no-html-thumbnails.patch
-  patch -p1 -i ../kdebase-runtime-no-kdewebkit.patch
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_drkonqi=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# Use KF5 drkonqi
-  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 298158, 
kdebase-runtime/trunk/PKGBUILD)
===
--- 

[arch-commits] Commit in kdebase-runtime/repos (12 files)

2017-05-11 Thread Antonio Rojas
Date: Thursday, May 11, 2017 @ 10:01:00
  Author: arojas
Revision: 295586

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 295585, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-html-thumbnails.patch
(from rev 295585, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-kdewebkit.patch
(from rev 295585, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 295585, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-html-thumbnails.patch
(from rev 295585, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-kdewebkit.patch
(from rev 295585, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-html-thumbnails.patch
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-kdewebkit.patch
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-html-thumbnails.patch
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-kdewebkit.patch

---+
 /PKGBUILD |  138 
 /kdebase-runtime-no-html-thumbnails.patch |   42 
 /kdebase-runtime-no-kdewebkit.patch   |   98 +++
 extra-i686/PKGBUILD   |   69 
 extra-i686/kdebase-runtime-no-html-thumbnails.patch   |   21 --
 extra-i686/kdebase-runtime-no-kdewebkit.patch |   49 -
 extra-x86_64/PKGBUILD |   69 
 extra-x86_64/kdebase-runtime-no-html-thumbnails.patch |   21 --
 extra-x86_64/kdebase-runtime-no-kdewebkit.patch   |   49 -
 9 files changed, 278 insertions(+), 278 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-05-11 09:53:38 UTC (rev 295585)
+++ extra-i686/PKGBUILD 2017-05-11 10:01:00 UTC (rev 295586)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=17.04.0
-pkgrel=2
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("https://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig}
-kdebase-runtime-no-html-thumbnails.patch 
kdebase-runtime-no-kdewebkit.patch)
-sha256sums=('9695c7acf0560e66b2eb19ac3ee9ff8acde9fefc30055b48ec4d2d4cabae0d5e'
-'SKIP'
-'5ce434f25759215ed2b6f71ec82a9118ee76e7428ef1af8a5495133a76c9c2df'
-'93d5ddf78c784b3d79486813bdfb43debba271b389bfc46ca79aabdb0bca14db')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

-
-prepare() {
-  mkdir -p build
-
-# Don't link to kactivities
-  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
-# Drop HTML thumbnailer, uses insecure QtWebKit
-  cd kde-runtime-$pkgver
-  patch -p1 -i ../kdebase-runtime-no-html-thumbnails.patch
-  patch -p1 -i ../kdebase-runtime-no-kdewebkit.patch
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_drkonqi=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# Use KF5 drkonqi
-  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 295585, 
kdebase-runtime/trunk/PKGBUILD)
===
--- 

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

2017-04-26 Thread Felix Yan
Date: Thursday, April 27, 2017 @ 00:55:49
  Author: felixonmars
Revision: 294858

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  kdebase-runtime/repos/staging-i686/
  kdebase-runtime/repos/staging-i686/PKGBUILD
(from rev 294856, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/staging-i686/kdebase-runtime-no-html-thumbnails.patch
(from rev 294856, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/staging-i686/kdebase-runtime-no-kdewebkit.patch
(from rev 294856, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)
  kdebase-runtime/repos/staging-x86_64/
  kdebase-runtime/repos/staging-x86_64/PKGBUILD
(from rev 294857, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/staging-x86_64/kdebase-runtime-no-html-thumbnails.patch
(from rev 294857, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/staging-x86_64/kdebase-runtime-no-kdewebkit.patch
(from rev 294857, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)

-+
 staging-i686/PKGBUILD   |   69 ++
 staging-i686/kdebase-runtime-no-html-thumbnails.patch   |   21 
 staging-i686/kdebase-runtime-no-kdewebkit.patch |   49 +
 staging-x86_64/PKGBUILD |   69 ++
 staging-x86_64/kdebase-runtime-no-html-thumbnails.patch |   21 
 staging-x86_64/kdebase-runtime-no-kdewebkit.patch   |   49 +
 6 files changed, 278 insertions(+)

Copied: kdebase-runtime/repos/staging-i686/PKGBUILD (from rev 294856, 
kdebase-runtime/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-04-27 00:55:49 UTC (rev 294858)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=17.04.0
+pkgrel=2
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("https://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig}
+kdebase-runtime-no-html-thumbnails.patch 
kdebase-runtime-no-kdewebkit.patch)
+sha256sums=('9695c7acf0560e66b2eb19ac3ee9ff8acde9fefc30055b48ec4d2d4cabae0d5e'
+'SKIP'
+'5ce434f25759215ed2b6f71ec82a9118ee76e7428ef1af8a5495133a76c9c2df'
+'93d5ddf78c784b3d79486813bdfb43debba271b389bfc46ca79aabdb0bca14db')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

+
+prepare() {
+  mkdir -p build
+
+# Don't link to kactivities
+  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
+# Drop HTML thumbnailer, uses insecure QtWebKit
+  cd kde-runtime-$pkgver
+  patch -p1 -i ../kdebase-runtime-no-html-thumbnails.patch
+  patch -p1 -i ../kdebase-runtime-no-kdewebkit.patch
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_drkonqi=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# Use KF5 drkonqi
+  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Copied: 
kdebase-runtime/repos/staging-i686/kdebase-runtime-no-html-thumbnails.patch 
(from rev 294856, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
===
--- staging-i686/kdebase-runtime-no-html-thumbnails.patch   
(rev 0)
+++ staging-i686/kdebase-runtime-no-html-thumbnails.patch   2017-04-27 
00:55:49 UTC (rev 294858)
@@ -0,0 +1,21 @@
+--- kde-runtime-16.12.1/kioslave/thumbnail/CMakeLists.txt.02017-01-19 
12:11:22.764891155 +
 

[arch-commits] Commit in kdebase-runtime/repos (10 files)

2017-04-20 Thread Antonio Rojas
Date: Thursday, April 20, 2017 @ 07:53:25
  Author: arojas
Revision: 293303

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 293302, kdebase-runtime/trunk/PKGBUILD)
  
kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime-no-html-thumbnails.patch
(from rev 293302, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime-no-kdewebkit.patch
(from rev 293302, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 293302, kdebase-runtime/trunk/PKGBUILD)
  
kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime-no-html-thumbnails.patch
(from rev 293302, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime-no-kdewebkit.patch
(from rev 293302, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)
Deleted:
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
  
kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime-no-html-thumbnails.patch
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime-no-kdewebkit.patch

--+
 /PKGBUILD|   69 ++
 /kdebase-runtime-no-html-thumbnails.patch|   21 +++
 /kdebase-runtime-no-kdewebkit.patch  |   49 +++
 kde-unstable-i686/PKGBUILD   |   69 ++
 kde-unstable-i686/kdebase-runtime-no-html-thumbnails.patch   |   21 +++
 kde-unstable-i686/kdebase-runtime-no-kdewebkit.patch |   49 +++
 kde-unstable-x86_64/PKGBUILD |   69 --
 kde-unstable-x86_64/kdebase-runtime-no-html-thumbnails.patch |   21 ---
 kde-unstable-x86_64/kdebase-runtime-no-kdewebkit.patch   |   49 ---
 9 files changed, 278 insertions(+), 139 deletions(-)

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 293302, 
kdebase-runtime/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2017-04-20 07:53:25 UTC (rev 293303)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=17.04.0
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("https://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig}
+kdebase-runtime-no-html-thumbnails.patch 
kdebase-runtime-no-kdewebkit.patch)
+sha256sums=('9695c7acf0560e66b2eb19ac3ee9ff8acde9fefc30055b48ec4d2d4cabae0d5e'
+'SKIP'
+'5ce434f25759215ed2b6f71ec82a9118ee76e7428ef1af8a5495133a76c9c2df'
+'93d5ddf78c784b3d79486813bdfb43debba271b389bfc46ca79aabdb0bca14db')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

+
+prepare() {
+  mkdir -p build
+
+# Don't link to kactivities
+  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
+# Drop HTML thumbnailer, uses insecure QtWebKit
+  cd kde-runtime-$pkgver
+  patch -p1 -i ../kdebase-runtime-no-html-thumbnails.patch
+  patch -p1 -i ../kdebase-runtime-no-kdewebkit.patch
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_drkonqi=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# Use KF5 drkonqi
+  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Copied: 

[arch-commits] Commit in kdebase-runtime/repos/kde-unstable-x86_64 (6 files)

2017-04-07 Thread Antonio Rojas
Date: Friday, April 7, 2017 @ 19:59:26
  Author: arojas
Revision: 292274

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 292273, kdebase-runtime/kde-unstable/PKGBUILD)
  
kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime-no-html-thumbnails.patch
(from rev 292273, 
kdebase-runtime/kde-unstable/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime-no-kdewebkit.patch
(from rev 292273, 
kdebase-runtime/kde-unstable/kdebase-runtime-no-kdewebkit.patch)
Deleted:
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
  
kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime-no-html-thumbnails.patch
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime-no-kdewebkit.patch

--+
 PKGBUILD |  138 ++---
 kdebase-runtime-no-html-thumbnails.patch |   42 
 kdebase-runtime-no-kdewebkit.patch   |   98 ++--
 3 files changed, 139 insertions(+), 139 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-04-07 19:58:21 UTC (rev 292273)
+++ PKGBUILD2017-04-07 19:59:26 UTC (rev 292274)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=17.03.80
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("https://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig}
-kdebase-runtime-no-html-thumbnails.patch 
kdebase-runtime-no-kdewebkit.patch)
-sha256sums=('3a2e04fd32796712164766c995db6a63345d80a4fa05d969af37e10f93a06a60'
-'SKIP'
-'5ce434f25759215ed2b6f71ec82a9118ee76e7428ef1af8a5495133a76c9c2df'
-'93d5ddf78c784b3d79486813bdfb43debba271b389bfc46ca79aabdb0bca14db')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

-
-prepare() {
-  mkdir -p build
-
-# Don't link to kactivities
-  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
-# Drop HTML thumbnailer, uses insecure QtWebKit
-  cd kde-runtime-$pkgver
-  patch -p1 -i ../kdebase-runtime-no-html-thumbnails.patch
-  patch -p1 -i ../kdebase-runtime-no-kdewebkit.patch
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_drkonqi=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# Use KF5 drkonqi
-  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD (from rev 292273, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-04-07 19:59:26 UTC (rev 292274)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=17.03.90
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("https://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig}
+   

[arch-commits] Commit in kdebase-runtime/repos (4 files)

2017-03-24 Thread Antonio Rojas
Date: Saturday, March 25, 2017 @ 00:30:20
  Author: arojas
Revision: 291263

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kdebase-runtime/repos/kde-unstable-x86_64/
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 291262, kdebase-runtime/kde-unstable/PKGBUILD)
  
kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime-no-html-thumbnails.patch
(from rev 291262, 
kdebase-runtime/kde-unstable/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime-no-kdewebkit.patch
(from rev 291262, 
kdebase-runtime/kde-unstable/kdebase-runtime-no-kdewebkit.patch)

--+
 PKGBUILD |   69 +
 kdebase-runtime-no-html-thumbnails.patch |   21 
 kdebase-runtime-no-kdewebkit.patch   |   49 
 3 files changed, 139 insertions(+)

Copied: kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD (from rev 291262, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-03-25 00:30:20 UTC (rev 291263)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=17.03.80
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("https://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig}
+kdebase-runtime-no-html-thumbnails.patch 
kdebase-runtime-no-kdewebkit.patch)
+sha256sums=('3a2e04fd32796712164766c995db6a63345d80a4fa05d969af37e10f93a06a60'
+'SKIP'
+'5ce434f25759215ed2b6f71ec82a9118ee76e7428ef1af8a5495133a76c9c2df'
+'93d5ddf78c784b3d79486813bdfb43debba271b389bfc46ca79aabdb0bca14db')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

+
+prepare() {
+  mkdir -p build
+
+# Don't link to kactivities
+  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
+# Drop HTML thumbnailer, uses insecure QtWebKit
+  cd kde-runtime-$pkgver
+  patch -p1 -i ../kdebase-runtime-no-html-thumbnails.patch
+  patch -p1 -i ../kdebase-runtime-no-kdewebkit.patch
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_drkonqi=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# Use KF5 drkonqi
+  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Copied: 
kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime-no-html-thumbnails.patch
 (from rev 291262, 
kdebase-runtime/kde-unstable/kdebase-runtime-no-html-thumbnails.patch)
===
--- kde-unstable-x86_64/kdebase-runtime-no-html-thumbnails.patch
(rev 0)
+++ kde-unstable-x86_64/kdebase-runtime-no-html-thumbnails.patch
2017-03-25 00:30:20 UTC (rev 291263)
@@ -0,0 +1,21 @@
+--- kde-runtime-16.12.1/kioslave/thumbnail/CMakeLists.txt.02017-01-19 
12:11:22.764891155 +
 kde-runtime-16.12.1/kioslave/thumbnail/CMakeLists.txt  2017-01-19 
12:11:40.741524858 +
+@@ -89,18 +89,6 @@
+ 
+ ### next target ###
+ 
+-if(NOT WINCE)
+-set(htmlthumbnail_PART_SRCS htmlcreator.cpp)
+-
+-kde4_add_plugin(htmlthumbnail ${htmlthumbnail_PART_SRCS})
+-
+-target_link_libraries(htmlthumbnail ${KDE4_KDEWEBKIT_LIBS})
+-
+-install(TARGETS htmlthumbnail DESTINATION ${PLUGIN_INSTALL_DIR})
+-endif(NOT WINCE)
+-
+-### next target ###
+-
+ if(NOT WIN32)
+ set(djvuthumbnail_PART_SRCS djvucreator.cpp)
+ 

Copied: 

[arch-commits] Commit in kdebase-runtime/repos (12 files)

2017-03-09 Thread Antonio Rojas
Date: Thursday, March 9, 2017 @ 16:15:00
  Author: arojas
Revision: 290223

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 290222, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-html-thumbnails.patch
(from rev 290222, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-kdewebkit.patch
(from rev 290222, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 290222, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-html-thumbnails.patch
(from rev 290222, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-kdewebkit.patch
(from rev 290222, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-html-thumbnails.patch
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-kdewebkit.patch
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-html-thumbnails.patch
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-kdewebkit.patch

---+
 /PKGBUILD |  138 
 /kdebase-runtime-no-html-thumbnails.patch |   42 
 /kdebase-runtime-no-kdewebkit.patch   |   98 +++
 extra-i686/PKGBUILD   |   69 
 extra-i686/kdebase-runtime-no-html-thumbnails.patch   |   21 --
 extra-i686/kdebase-runtime-no-kdewebkit.patch |   49 -
 extra-x86_64/PKGBUILD |   69 
 extra-x86_64/kdebase-runtime-no-html-thumbnails.patch |   21 --
 extra-x86_64/kdebase-runtime-no-kdewebkit.patch   |   49 -
 9 files changed, 278 insertions(+), 278 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-03-09 16:14:17 UTC (rev 290222)
+++ extra-i686/PKGBUILD 2017-03-09 16:15:00 UTC (rev 290223)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.12.2
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig}
-kdebase-runtime-no-html-thumbnails.patch 
kdebase-runtime-no-kdewebkit.patch)
-sha1sums=('e182fb3f7daf9db0345c18e7cb0804c4b09d1783'
-  'SKIP'
-  '5f78db33cfdae44e53aa5bb0b7bd9ebdc1e42808'
-  '4613c4168ce80ba8ada401d6b20a3a76c067de75')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

-
-prepare() {
-  mkdir -p build
-
-# Don't link to kactivities
-  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
-# Drop HTML thumbnailer, uses insecure QtWebKit
-  cd kde-runtime-$pkgver
-  patch -p1 -i ../kdebase-runtime-no-html-thumbnails.patch
-  patch -p1 -i ../kdebase-runtime-no-kdewebkit.patch
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_drkonqi=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# Use KF5 drkonqi
-  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 290222, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 

[arch-commits] Commit in kdebase-runtime (repos)

2017-02-09 Thread Antonio Rojas
Date: Thursday, February 9, 2017 @ 18:29:12
  Author: arojas
Revision: 288515

Deleted:
  kdebase-runtime/repos/


[arch-commits] Commit in kdebase-runtime/repos (7 files)

2017-02-09 Thread Antonio Rojas
Date: Thursday, February 9, 2017 @ 13:36:42
  Author: arojas
Revision: 288287

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 288286, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-html-thumbnails.patch
(from rev 288286, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-kdewebkit.patch
(from rev 288286, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-html-thumbnails.patch
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-html-thumbnails.patch

---+
 /PKGBUILD |   69 
 /kdebase-runtime-no-html-thumbnails.patch |   21 
 extra-i686/PKGBUILD   |   67 ---
 extra-i686/kdebase-runtime-no-html-thumbnails.patch   |   21 
 extra-i686/kdebase-runtime-no-kdewebkit.patch |   49 +++
 extra-x86_64/PKGBUILD |   69 
 extra-x86_64/kdebase-runtime-no-html-thumbnails.patch |   21 
 7 files changed, 139 insertions(+), 178 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-02-09 13:36:19 UTC (rev 288286)
+++ extra-i686/PKGBUILD 2017-02-09 13:36:42 UTC (rev 288287)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.12.1
-pkgrel=2
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig}
-kdebase-runtime-no-html-thumbnails.patch)
-sha1sums=('0546a3fb14e402b5026fb7fd8c07f0bc6c51829a'
-  'SKIP'
-  '5f78db33cfdae44e53aa5bb0b7bd9ebdc1e42808')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

-
-prepare() {
-  mkdir -p build
-
-# Don't link to kactivities
-  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
-# Drop HTML thumbnailer, uses insecure QtWebKit
-  cd kde-runtime-$pkgver
-  patch -p1 -i ../kdebase-runtime-no-html-thumbnails.patch
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_drkonqi=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# Use KF5 drkonqi
-  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 288286, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-02-09 13:36:42 UTC (rev 288287)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.12.2
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)

[arch-commits] Commit in kdebase-runtime/repos/extra-x86_64 (5 files)

2017-02-09 Thread Antonio Rojas
Date: Thursday, February 9, 2017 @ 11:29:33
  Author: arojas
Revision: 288285

archrelease: copy trunk to extra-x86_64

Added:
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 288284, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-html-thumbnails.patch
(from rev 288284, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-kdewebkit.patch
(from rev 288284, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)
Deleted:
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-html-thumbnails.patch

--+
 PKGBUILD |  136 ++---
 kdebase-runtime-no-html-thumbnails.patch |   42 
 kdebase-runtime-no-kdewebkit.patch   |   49 ++
 3 files changed, 139 insertions(+), 88 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-02-09 11:29:17 UTC (rev 288284)
+++ PKGBUILD2017-02-09 11:29:33 UTC (rev 288285)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.12.1
-pkgrel=2
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig}
-kdebase-runtime-no-html-thumbnails.patch)
-sha1sums=('0546a3fb14e402b5026fb7fd8c07f0bc6c51829a'
-  'SKIP'
-  '5f78db33cfdae44e53aa5bb0b7bd9ebdc1e42808')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

-
-prepare() {
-  mkdir -p build
-
-# Don't link to kactivities
-  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
-# Drop HTML thumbnailer, uses insecure QtWebKit
-  cd kde-runtime-$pkgver
-  patch -p1 -i ../kdebase-runtime-no-html-thumbnails.patch
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_drkonqi=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# Use KF5 drkonqi
-  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-x86_64/PKGBUILD (from rev 288284, 
kdebase-runtime/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-02-09 11:29:33 UTC (rev 288285)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.12.2
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig}
+kdebase-runtime-no-html-thumbnails.patch 
kdebase-runtime-no-kdewebkit.patch)
+sha1sums=('e182fb3f7daf9db0345c18e7cb0804c4b09d1783'
+  'SKIP'
+  '5f78db33cfdae44e53aa5bb0b7bd9ebdc1e42808'
+  '4613c4168ce80ba8ada401d6b20a3a76c067de75')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

+
+prepare() {
+  mkdir -p build
+
+# Don't 

[arch-commits] Commit in kdebase-runtime/repos (6 files)

2017-01-19 Thread Antonio Rojas
Date: Thursday, January 19, 2017 @ 12:22:54
  Author: arojas
Revision: 286971

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 286970, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime-no-html-thumbnails.patch
(from rev 286970, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 286970, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-no-html-thumbnails.patch
(from rev 286970, 
kdebase-runtime/trunk/kdebase-runtime-no-html-thumbnails.patch)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  134 
 extra-i686/PKGBUILD   |   62 ---
 extra-i686/kdebase-runtime-no-html-thumbnails.patch   |   21 ++
 extra-x86_64/PKGBUILD |   62 ---
 extra-x86_64/kdebase-runtime-no-html-thumbnails.patch |   21 ++
 5 files changed, 176 insertions(+), 124 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-19 12:22:11 UTC (rev 286970)
+++ extra-i686/PKGBUILD 2017-01-19 12:22:54 UTC (rev 286971)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.12.1
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig})
-sha1sums=('0546a3fb14e402b5026fb7fd8c07f0bc6c51829a'
-  'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

-
-prepare() {
-  mkdir -p build
-
-# Don't link to kactivities
-  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_drkonqi=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# Use KF5 drkonqi
-  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 286970, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-01-19 12:22:54 UTC (rev 286971)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.12.1
+pkgrel=2
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig}
+kdebase-runtime-no-html-thumbnails.patch)
+sha1sums=('0546a3fb14e402b5026fb7fd8c07f0bc6c51829a'
+  'SKIP'
+  '5f78db33cfdae44e53aa5bb0b7bd9ebdc1e42808')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

+
+prepare() {
+  mkdir -p build
+
+# Don't link to kactivities
+  sed -e 

[arch-commits] Commit in kdebase-runtime/repos (4 files)

2017-01-12 Thread Antonio Rojas
Date: Thursday, January 12, 2017 @ 19:06:44
  Author: arojas
Revision: 285930

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 285929, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 285929, kdebase-runtime/trunk/PKGBUILD)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  124 
 extra-i686/PKGBUILD   |   62 
 extra-x86_64/PKGBUILD |   62 
 3 files changed, 124 insertions(+), 124 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-12 19:05:41 UTC (rev 285929)
+++ extra-i686/PKGBUILD 2017-01-12 19:06:44 UTC (rev 285930)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.12.0
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig})
-sha1sums=('1f4018425834d2239ec6095aea5de30b9d56e048'
-  'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

-
-prepare() {
-  mkdir -p build
-
-# Don't link to kactivities
-  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_drkonqi=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# Use KF5 drkonqi
-  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 285929, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-01-12 19:06:44 UTC (rev 285930)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.12.1
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig})
+sha1sums=('0546a3fb14e402b5026fb7fd8c07f0bc6c51829a'
+  'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

+
+prepare() {
+  mkdir -p build
+
+# Don't link to kactivities
+  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_drkonqi=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm 

[arch-commits] Commit in kdebase-runtime/repos (4 files)

2016-12-15 Thread Antonio Rojas
Date: Thursday, December 15, 2016 @ 10:49:22
  Author: arojas
Revision: 283326

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 283325, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 283325, kdebase-runtime/trunk/PKGBUILD)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|  124 +
 kde-unstable-i686/PKGBUILD   |   62 
 kde-unstable-x86_64/PKGBUILD |   62 
 3 files changed, 124 insertions(+), 124 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2016-12-15 10:41:32 UTC (rev 283325)
+++ kde-unstable-i686/PKGBUILD  2016-12-15 10:49:22 UTC (rev 283326)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.11.90
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig})
-sha1sums=('a69c9d2173249cd724560f29427ac653945cd225'
-  'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

-
-prepare() {
-  mkdir -p build
-
-# Don't link to kactivities
-  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_drkonqi=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# Use KF5 drkonqi
-  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 283325, 
kdebase-runtime/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-12-15 10:49:22 UTC (rev 283326)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.12.0
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig})
+sha1sums=('1f4018425834d2239ec6095aea5de30b9d56e048'
+  'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

+
+prepare() {
+  mkdir -p build
+
+# Don't link to kactivities
+  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_drkonqi=OFF \
+

[arch-commits] Commit in kdebase-runtime/repos (4 files)

2016-12-02 Thread Antonio Rojas
Date: Saturday, December 3, 2016 @ 00:10:48
  Author: arojas
Revision: 282544

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 282543, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 282543, kdebase-runtime/kde-unstable/PKGBUILD)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|  124 +
 kde-unstable-i686/PKGBUILD   |   62 
 kde-unstable-x86_64/PKGBUILD |   62 
 3 files changed, 124 insertions(+), 124 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2016-12-03 00:10:09 UTC (rev 282543)
+++ kde-unstable-i686/PKGBUILD  2016-12-03 00:10:48 UTC (rev 282544)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.11.80
-pkgrel=3
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig})
-sha1sums=('319d795bc8e4cea9d4a031d0d2c51059f17ce45c'
-  'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

-
-prepare() {
-  mkdir -p build
-
-# Don't link to kactivities
-  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_drkonqi=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# Use KF5 drkonqi
-  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 282543, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-12-03 00:10:48 UTC (rev 282544)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.11.90
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig})
+sha1sums=('a69c9d2173249cd724560f29427ac653945cd225'
+  'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

+
+prepare() {
+  mkdir -p build
+
+# Don't link to kactivities
+  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+

[arch-commits] Commit in kdebase-runtime/repos (4 files)

2016-11-27 Thread Antonio Rojas
Date: Sunday, November 27, 2016 @ 10:26:25
  Author: arojas
Revision: 282118

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 282117, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 282117, kdebase-runtime/kde-unstable/PKGBUILD)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|  124 +
 kde-unstable-i686/PKGBUILD   |   62 
 kde-unstable-x86_64/PKGBUILD |   62 
 3 files changed, 124 insertions(+), 124 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2016-11-27 10:26:00 UTC (rev 282117)
+++ kde-unstable-i686/PKGBUILD  2016-11-27 10:26:25 UTC (rev 282118)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.11.80
-pkgrel=2
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig})
-sha1sums=('319d795bc8e4cea9d4a031d0d2c51059f17ce45c'
-  'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

-
-prepare() {
-  mkdir -p build
-
-# Don't build plasma stuff
-  sed -e '/add_subdirectory(plasma)/d' -i kde-runtime-$pkgver/CMakeLists.txt
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_drkonqi=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# Use KF5 drkonqi
-  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 282117, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-11-27 10:26:25 UTC (rev 282118)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.11.80
+pkgrel=3
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig})
+sha1sums=('319d795bc8e4cea9d4a031d0d2c51059f17ce45c'
+  'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

+
+prepare() {
+  mkdir -p build
+
+# Don't link to kactivities
+  sed -e '/plasmaextracomponents/d' -i 
kde-runtime-$pkgver/plasma/declarativeimports/CMakeLists.txt
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_drkonqi=OFF \
+

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

2016-11-27 Thread Antonio Rojas
Date: Sunday, November 27, 2016 @ 10:09:09
  Author: arojas
Revision: 282115

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 282114, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime-gpgme-1.7.patch
(from rev 282114, kdebase-runtime/trunk/kdebase-runtime-gpgme-1.7.patch)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 282114, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-gpgme-1.7.patch
(from rev 282114, kdebase-runtime/trunk/kdebase-runtime-gpgme-1.7.patch)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime-gpgme-1.7.patch
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-gpgme-1.7.patch

--+
 /PKGBUILD|  130 ++
 /kdebase-runtime-gpgme-1.7.patch |  180 +
 extra-i686/PKGBUILD  |   65 -
 extra-i686/kdebase-runtime-gpgme-1.7.patch   |   90 
 extra-x86_64/PKGBUILD|   65 -
 extra-x86_64/kdebase-runtime-gpgme-1.7.patch |   90 
 6 files changed, 310 insertions(+), 310 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-11-27 10:07:22 UTC (rev 282114)
+++ extra-i686/PKGBUILD 2016-11-27 10:09:09 UTC (rev 282115)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.08.3
-pkgrel=3
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;
 kdebase-runtime-gpgme-1.7.patch)
-sha1sums=('d215765e6fd4da4e0e7a53bd414d276fd46417e6'
-  'a9261cc182da51ed86155e5068a845b9d490b784')
-
-prepare() {
-  mkdir -p build
-
-# Build against gpgme's gpgme++
-  cd kde-runtime-$pkgver
-  patch -p1 -i ../kdebase-runtime-gpgme-1.7.patch
-# Don't build drkonqi
-  sed -e '/drkonqi/d' -i CMakeLists.txt
-# Don't build plasma stuff
-  sed -e '/add_subdirectory(plasma)/d' -i CMakeLists.txt
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# Use KF5 drkonqi
-  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 282114, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-11-27 10:09:09 UTC (rev 282115)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.08.3
+pkgrel=4
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;
 kdebase-runtime-gpgme-1.7.patch)
+sha1sums=('d215765e6fd4da4e0e7a53bd414d276fd46417e6'
+  

[arch-commits] Commit in kdebase-runtime/repos (4 files)

2016-11-25 Thread Antonio Rojas
Date: Friday, November 25, 2016 @ 11:41:28
  Author: arojas
Revision: 282010

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 282009, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 282009, kdebase-runtime/kde-unstable/PKGBUILD)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|  124 +
 kde-unstable-i686/PKGBUILD   |   62 
 kde-unstable-x86_64/PKGBUILD |   62 
 3 files changed, 124 insertions(+), 124 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2016-11-25 11:40:32 UTC (rev 282009)
+++ kde-unstable-i686/PKGBUILD  2016-11-25 11:41:28 UTC (rev 282010)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.11.80
-pkgrel=2
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig})
-sha1sums=('319d795bc8e4cea9d4a031d0d2c51059f17ce45c'
-  'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

-
-prepare() {
-  mkdir -p build
-
-# Don't build plasma stuff
-  sed -e '/add_subdirectory(plasma)/d' -i kde-runtime-$pkgver/CMakeLists.txt
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_drkonqi=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# Use KF5 drkonqi
-  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 282009, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-11-25 11:41:28 UTC (rev 282010)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.11.80
+pkgrel=2
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig})
+sha1sums=('319d795bc8e4cea9d4a031d0d2c51059f17ce45c'
+  'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

+
+prepare() {
+  mkdir -p build
+
+# Don't build plasma stuff
+  sed -e '/add_subdirectory(plasma)/d' -i kde-runtime-$pkgver/CMakeLists.txt
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_drkonqi=OFF \
+-DBUILD_doc=OFF
+  make
+}

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

2016-11-25 Thread Antonio Rojas
Date: Friday, November 25, 2016 @ 11:36:01
  Author: arojas
Revision: 282008

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 282007, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime-gpgme-1.7.patch
(from rev 282007, kdebase-runtime/trunk/kdebase-runtime-gpgme-1.7.patch)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 282007, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-gpgme-1.7.patch
(from rev 282007, kdebase-runtime/trunk/kdebase-runtime-gpgme-1.7.patch)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime-gpgme-1.7.patch
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-gpgme-1.7.patch

--+
 /PKGBUILD|  130 ++
 /kdebase-runtime-gpgme-1.7.patch |  180 +
 extra-i686/PKGBUILD  |   65 -
 extra-i686/kdebase-runtime-gpgme-1.7.patch   |   90 
 extra-x86_64/PKGBUILD|   65 -
 extra-x86_64/kdebase-runtime-gpgme-1.7.patch |   90 
 6 files changed, 310 insertions(+), 310 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-11-25 11:35:37 UTC (rev 282007)
+++ extra-i686/PKGBUILD 2016-11-25 11:36:01 UTC (rev 282008)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.08.3
-pkgrel=2
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;
 kdebase-runtime-gpgme-1.7.patch)
-sha1sums=('d215765e6fd4da4e0e7a53bd414d276fd46417e6'
-  'a9261cc182da51ed86155e5068a845b9d490b784')
-
-prepare() {
-  mkdir -p build
-
-# Build against gpgme's gpgme++
-  cd kde-runtime-$pkgver
-  patch -p1 -i ../kdebase-runtime-gpgme-1.7.patch
-# Don't build drkonqi
-  sed -e '/drkonqi/d' -i CMakeLists.txt
-# Don't build plasma stuff
-  sed -e '/add_subdirectory(plasma)/d' -i CMakeLists.txt
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# Use KF5 drkonqi
-  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 282007, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-11-25 11:36:01 UTC (rev 282008)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.08.3
+pkgrel=3
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('kdelibs' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;
 kdebase-runtime-gpgme-1.7.patch)
+sha1sums=('d215765e6fd4da4e0e7a53bd414d276fd46417e6'
+  

[arch-commits] Commit in kdebase-runtime/repos (4 files)

2016-11-25 Thread Antonio Rojas
Date: Friday, November 25, 2016 @ 11:27:52
  Author: arojas
Revision: 282006

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 282005, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 282005, kdebase-runtime/kde-unstable/PKGBUILD)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|  124 +
 kde-unstable-i686/PKGBUILD   |   59 ---
 kde-unstable-x86_64/PKGBUILD |   59 ---
 3 files changed, 124 insertions(+), 118 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2016-11-25 11:26:36 UTC (rev 282005)
+++ kde-unstable-i686/PKGBUILD  2016-11-25 11:27:52 UTC (rev 282006)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.11.80
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig})
-sha1sums=('319d795bc8e4cea9d4a031d0d2c51059f17ce45c'
-  'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_drkonqi=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# Use KF5 drkonqi
-  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 282005, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-11-25 11:27:52 UTC (rev 282006)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.11.80
+pkgrel=2
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig})
+sha1sums=('319d795bc8e4cea9d4a031d0d2c51059f17ce45c'
+  'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

+
+prepare() {
+  mkdir -p build
+
+# Don't build plasma stuff
+  sed -e '/add_subdirectory(plasma)/d' -i kde-runtime-$pkgver/CMakeLists.txt
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_drkonqi=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm 

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

2016-11-25 Thread Antonio Rojas
Date: Friday, November 25, 2016 @ 11:20:46
  Author: arojas
Revision: 282004

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 282003, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime-gpgme-1.7.patch
(from rev 282003, kdebase-runtime/trunk/kdebase-runtime-gpgme-1.7.patch)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 282003, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-gpgme-1.7.patch
(from rev 282003, kdebase-runtime/trunk/kdebase-runtime-gpgme-1.7.patch)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime-gpgme-1.7.patch
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-gpgme-1.7.patch

--+
 /PKGBUILD|  130 ++
 /kdebase-runtime-gpgme-1.7.patch |  180 +
 extra-i686/PKGBUILD  |   63 
 extra-i686/kdebase-runtime-gpgme-1.7.patch   |   90 
 extra-x86_64/PKGBUILD|   63 
 extra-x86_64/kdebase-runtime-gpgme-1.7.patch |   90 
 6 files changed, 310 insertions(+), 306 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-11-25 11:19:03 UTC (rev 282003)
+++ extra-i686/PKGBUILD 2016-11-25 11:20:46 UTC (rev 282004)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.08.3
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;
 kdebase-runtime-gpgme-1.7.patch)
-sha1sums=('d215765e6fd4da4e0e7a53bd414d276fd46417e6'
-  'a9261cc182da51ed86155e5068a845b9d490b784')
-
-prepare() {
-  mkdir -p build
-
-# Build against gpgme's gpgme++
-  cd kde-runtime-$pkgver
-  patch -p1 -i ../kdebase-runtime-gpgme-1.7.patch
-# Don't build drkonqi
-  sed -e '/drkonqi/d' -i CMakeLists.txt
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# Use KF5 drkonqi
-  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 282003, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-11-25 11:20:46 UTC (rev 282004)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.08.3
+pkgrel=2
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;
 kdebase-runtime-gpgme-1.7.patch)
+sha1sums=('d215765e6fd4da4e0e7a53bd414d276fd46417e6'
+  'a9261cc182da51ed86155e5068a845b9d490b784')
+
+prepare() {
+  mkdir -p build
+
+# Build against gpgme's gpgme++
+  

[arch-commits] Commit in kdebase-runtime/repos (4 files)

2016-11-18 Thread Antonio Rojas
Date: Friday, November 18, 2016 @ 20:22:12
  Author: arojas
Revision: 281215

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

Added:
  kdebase-runtime/repos/staging-i686/
  kdebase-runtime/repos/staging-i686/PKGBUILD
(from rev 281214, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/staging-x86_64/
  kdebase-runtime/repos/staging-x86_64/PKGBUILD
(from rev 281214, kdebase-runtime/kde-unstable/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   59 ++
 staging-x86_64/PKGBUILD |   59 ++
 2 files changed, 118 insertions(+)

Copied: kdebase-runtime/repos/staging-i686/PKGBUILD (from rev 281214, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-11-18 20:22:12 UTC (rev 281215)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.11.80
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig})
+sha1sums=('319d795bc8e4cea9d4a031d0d2c51059f17ce45c'
+  'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_drkonqi=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# Use KF5 drkonqi
+  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/staging-x86_64/PKGBUILD (from rev 281214, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-11-18 20:22:12 UTC (rev 281215)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.11.80
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz"{,.sig})
+sha1sums=('319d795bc8e4cea9d4a031d0d2c51059f17ce45c'
+  'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_drkonqi=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# Use KF5 drkonqi
+  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/

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

2016-11-10 Thread Antonio Rojas
Date: Thursday, November 10, 2016 @ 18:58:52
  Author: arojas
Revision: 280503

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 280502, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime-gpgme-1.7.patch
(from rev 280502, kdebase-runtime/trunk/kdebase-runtime-gpgme-1.7.patch)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 280502, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-gpgme-1.7.patch
(from rev 280502, kdebase-runtime/trunk/kdebase-runtime-gpgme-1.7.patch)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime-gpgme-1.7.patch
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-gpgme-1.7.patch

--+
 /PKGBUILD|  126 +
 /kdebase-runtime-gpgme-1.7.patch |  180 +
 extra-i686/PKGBUILD  |   63 
 extra-i686/kdebase-runtime-gpgme-1.7.patch   |   90 
 extra-x86_64/PKGBUILD|   63 
 extra-x86_64/kdebase-runtime-gpgme-1.7.patch |   90 
 6 files changed, 306 insertions(+), 306 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-11-10 18:58:21 UTC (rev 280502)
+++ extra-i686/PKGBUILD 2016-11-10 18:58:52 UTC (rev 280503)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.08.3
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost' 'kdepimlibs4' 'qgpgme')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;
 kdebase-runtime-gpgme-1.7.patch)
-sha1sums=('d215765e6fd4da4e0e7a53bd414d276fd46417e6'
-  'a9261cc182da51ed86155e5068a845b9d490b784')
-
-prepare() {
-  mkdir -p build
-
-# Build against gpgme's gpgme++
-  cd kde-runtime-$pkgver
-  patch -p1 -i ../kdebase-runtime-gpgme-1.7.patch
-# Don't build drkonqi
-  sed -e '/drkonqi/d' -i CMakeLists.txt
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# Use KF5 drkonqi
-  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 280502, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-11-10 18:58:52 UTC (rev 280503)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.08.3
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;
 kdebase-runtime-gpgme-1.7.patch)
+sha1sums=('d215765e6fd4da4e0e7a53bd414d276fd46417e6'
+  'a9261cc182da51ed86155e5068a845b9d490b784')
+
+prepare() {
+  mkdir -p build
+
+# Build 

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

2016-11-10 Thread Antonio Rojas
Date: Thursday, November 10, 2016 @ 18:13:59
  Author: arojas
Revision: 280290

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 280289, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime-gpgme-1.7.patch
(from rev 280289, kdebase-runtime/trunk/kdebase-runtime-gpgme-1.7.patch)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 280289, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-gpgme-1.7.patch
(from rev 280289, kdebase-runtime/trunk/kdebase-runtime-gpgme-1.7.patch)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime-gpgme-1.7.patch
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime-gpgme-1.7.patch

--+
 /PKGBUILD|  126 +
 /kdebase-runtime-gpgme-1.7.patch |  180 +
 extra-i686/PKGBUILD  |   63 
 extra-i686/kdebase-runtime-gpgme-1.7.patch   |   90 
 extra-x86_64/PKGBUILD|   63 
 extra-x86_64/kdebase-runtime-gpgme-1.7.patch |   90 
 6 files changed, 306 insertions(+), 306 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-11-10 18:13:52 UTC (rev 280289)
+++ extra-i686/PKGBUILD 2016-11-10 18:13:59 UTC (rev 280290)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.08.2
-pkgrel=3
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;
 kdebase-runtime-gpgme-1.7.patch)
-sha1sums=('966c5706318f6f8f09aa77332d4088a379cb1914'
-  'a9261cc182da51ed86155e5068a845b9d490b784')
-
-prepare() {
-  mkdir -p build
-
-# Build against gpgme's gpgme++
-  cd kde-runtime-$pkgver
-  patch -p1 -i ../kdebase-runtime-gpgme-1.7.patch
-# Don't build drkonqi
-  sed -e '/drkonqi/d' -i CMakeLists.txt
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# Use KF5 drkonqi
-  ln -s /usr/lib/drkonqi "$pkgdir"/usr/lib/kde4/libexec/
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 280289, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-11-10 18:13:59 UTC (rev 280290)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.08.3
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost' 'kdepimlibs4' 'qgpgme')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;
 kdebase-runtime-gpgme-1.7.patch)
+sha1sums=('d215765e6fd4da4e0e7a53bd414d276fd46417e6'
+  'a9261cc182da51ed86155e5068a845b9d490b784')
+
+prepare() {
+  mkdir -p build
+
+# Build 

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

2016-10-29 Thread Antonio Rojas
Date: Saturday, October 29, 2016 @ 23:27:26
  Author: arojas
Revision: 279463

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  kdebase-runtime/repos/testing-i686/PKGBUILD
(from rev 279462, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-i686/kdebase-runtime-gpgme-1.7.patch
(from rev 279462, kdebase-runtime/trunk/kdebase-runtime-gpgme-1.7.patch)
  kdebase-runtime/repos/testing-x86_64/PKGBUILD
(from rev 279462, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-x86_64/kdebase-runtime-gpgme-1.7.patch
(from rev 279462, kdebase-runtime/trunk/kdebase-runtime-gpgme-1.7.patch)
Deleted:
  kdebase-runtime/repos/testing-i686/PKGBUILD
  kdebase-runtime/repos/testing-i686/kdebase-runtime-gpgme-1.7.patch
  kdebase-runtime/repos/testing-x86_64/PKGBUILD
  kdebase-runtime/repos/testing-x86_64/kdebase-runtime-gpgme-1.7.patch

+
 /PKGBUILD  |  126 
 /kdebase-runtime-gpgme-1.7.patch   |  180 +++
 testing-i686/PKGBUILD  |   59 ---
 testing-i686/kdebase-runtime-gpgme-1.7.patch   |   90 ---
 testing-x86_64/PKGBUILD|   59 ---
 testing-x86_64/kdebase-runtime-gpgme-1.7.patch |   90 ---
 6 files changed, 306 insertions(+), 298 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2016-10-29 23:26:54 UTC (rev 279462)
+++ testing-i686/PKGBUILD   2016-10-29 23:27:26 UTC (rev 279463)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.08.2
-pkgrel=2
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost' 'kdepimlibs')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
-optdepends=('kdepimlibs4: for DrKonqi' 'gdb: needed by DrKonqi to generate 
backtrace' 'khelpcenter: to display applications documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;
 kdebase-runtime-gpgme-1.7.patch)
-sha1sums=('966c5706318f6f8f09aa77332d4088a379cb1914'
-  'a9261cc182da51ed86155e5068a845b9d490b784')
-
-prepare() {
-  mkdir -p build
-
-# Build against gpgme's gpgme++
-  cd kde-runtime-$pkgver
-  patch -p1 -i ../kdebase-runtime-gpgme-1.7.patch
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_doc=OFF \
--DWITH_QGpgme=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/testing-i686/PKGBUILD (from rev 279462, 
kdebase-runtime/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-10-29 23:27:26 UTC (rev 279463)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.08.2
+pkgrel=3
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('drkonqi: crash report tool' 'khelpcenter: to display applications 
documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;
 kdebase-runtime-gpgme-1.7.patch)
+sha1sums=('966c5706318f6f8f09aa77332d4088a379cb1914'
+  'a9261cc182da51ed86155e5068a845b9d490b784')
+
+prepare() {
+  mkdir -p build
+
+# Build against gpgme's gpgme++

[arch-commits] Commit in kdebase-runtime/repos (6 files)

2016-10-27 Thread Antonio Rojas
Date: Thursday, October 27, 2016 @ 21:42:31
  Author: arojas
Revision: 279357

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  kdebase-runtime/repos/staging-i686/
  kdebase-runtime/repos/staging-i686/PKGBUILD
(from rev 279356, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/staging-i686/kdebase-runtime-gpgme-1.7.patch
(from rev 279356, kdebase-runtime/trunk/kdebase-runtime-gpgme-1.7.patch)
  kdebase-runtime/repos/staging-x86_64/
  kdebase-runtime/repos/staging-x86_64/PKGBUILD
(from rev 279356, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/staging-x86_64/kdebase-runtime-gpgme-1.7.patch
(from rev 279356, kdebase-runtime/trunk/kdebase-runtime-gpgme-1.7.patch)

+
 staging-i686/PKGBUILD  |   59 +++
 staging-i686/kdebase-runtime-gpgme-1.7.patch   |   90 +++
 staging-x86_64/PKGBUILD|   59 +++
 staging-x86_64/kdebase-runtime-gpgme-1.7.patch |   90 +++
 4 files changed, 298 insertions(+)

Copied: kdebase-runtime/repos/staging-i686/PKGBUILD (from rev 279356, 
kdebase-runtime/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-10-27 21:42:31 UTC (rev 279357)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.08.2
+pkgrel=2
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost' 'kdepimlibs')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'exiv2' 'gpgme')
+optdepends=('kdepimlibs4: for DrKonqi' 'gdb: needed by DrKonqi to generate 
backtrace' 'khelpcenter: to display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;
 kdebase-runtime-gpgme-1.7.patch)
+sha1sums=('966c5706318f6f8f09aa77332d4088a379cb1914'
+  'a9261cc182da51ed86155e5068a845b9d490b784')
+
+prepare() {
+  mkdir -p build
+
+# Build against gpgme's gpgme++
+  cd kde-runtime-$pkgver
+  patch -p1 -i ../kdebase-runtime-gpgme-1.7.patch
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_doc=OFF \
+-DWITH_QGpgme=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/staging-i686/kdebase-runtime-gpgme-1.7.patch 
(from rev 279356, kdebase-runtime/trunk/kdebase-runtime-gpgme-1.7.patch)
===
--- staging-i686/kdebase-runtime-gpgme-1.7.patch
(rev 0)
+++ staging-i686/kdebase-runtime-gpgme-1.7.patch2016-10-27 21:42:31 UTC 
(rev 279357)
@@ -0,0 +1,90 @@
+diff --git a/kwalletd/CMakeLists.txt b/kwalletd/CMakeLists.txt
+index 73aec82..4fd511d 100644
+--- a/kwalletd/CMakeLists.txt
 b/kwalletd/CMakeLists.txt
+@@ -3,13 +3,14 @@ project(kwalletd)
+ ### find needed packages ##
+ find_package(Gpgme)  # Called by FindQGpgme, but since we call some gpgme
+  # functions ourselves we need to link against it 
directly.
+-find_package(QGpgme) # provided by kdepimlibs
++find_package(Gpgmepp)
++set(GPGMEPP_LIBS Gpgmepp)
+ 
+-if (GPGME_FOUND AND QGPGME_FOUND)
++if (Gpgmepp_FOUND)
+ add_definitions(-DHAVE_QGPGME)
+-include_directories(${GPGME_INCLUDES} ${QGPGME_INCLUDE_DIR})
++include_directories(${GPGME_INCLUDES})
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${KDE4_ENABLE_EXCEPTIONS}")
+-endif(GPGME_FOUND AND QGPGME_FOUND)
++endif(Gpgmepp_FOUND)
+ 
+ ### build backends #
+ add_subdirectory(backend)
+@@ -37,7 +38,7 @@ kde4_add_ui_files(kwalletd_KDEINIT_SRCS
+kwalletwizardpagepassword.ui
+ )
+ 
+-if (GPGME_FOUND AND QGPGME_FOUND)
++if (Gpgmepp_FOUND)
+ set(kwalletd_KDEINIT_SRCS
+ ${kwalletd_KDEINIT_SRCS}
+ knewwalletdialog.cpp
+@@ -48,7 +49,7 @@ if (GPGME_FOUND 

[arch-commits] Commit in kdebase-runtime/repos (4 files)

2016-10-13 Thread Antonio Rojas
Date: Thursday, October 13, 2016 @ 15:54:59
  Author: arojas
Revision: 278590

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 278589, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 278589, kdebase-runtime/trunk/PKGBUILD)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  106 
 extra-i686/PKGBUILD   |   53 
 extra-x86_64/PKGBUILD |   53 
 3 files changed, 106 insertions(+), 106 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-13 15:54:52 UTC (rev 278589)
+++ extra-i686/PKGBUILD 2016-10-13 15:54:59 UTC (rev 278590)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.08.1
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
-optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('b8efb2ac75126bd065ecb475ed0ba1a7342920e7')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 278589, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-13 15:54:59 UTC (rev 278590)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.08.2
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
+optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('966c5706318f6f8f09aa77332d4088a379cb1914')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-13 15:54:52 UTC (rev 278589)
+++ extra-x86_64/PKGBUILD   2016-10-13 15:54:59 UTC (rev 278590)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# 

[arch-commits] Commit in kdebase-runtime/repos (4 files)

2016-09-08 Thread Antonio Rojas
Date: Thursday, September 8, 2016 @ 17:36:42
  Author: arojas
Revision: 275866

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 275865, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 275865, kdebase-runtime/trunk/PKGBUILD)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  106 
 extra-i686/PKGBUILD   |   53 
 extra-x86_64/PKGBUILD |   53 
 3 files changed, 106 insertions(+), 106 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-09-08 17:35:59 UTC (rev 275865)
+++ extra-i686/PKGBUILD 2016-09-08 17:36:42 UTC (rev 275866)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.08.0
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
-optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('708f65c1b813ed4cba7ead72a8d24d087407bb48')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 275865, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-09-08 17:36:42 UTC (rev 275866)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.08.1
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
+optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('b8efb2ac75126bd065ecb475ed0ba1a7342920e7')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-09-08 17:35:59 UTC (rev 275865)
+++ extra-x86_64/PKGBUILD   2016-09-08 17:36:42 UTC (rev 275866)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# 

[arch-commits] Commit in kdebase-runtime/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 01:57:18
  Author: felixonmars
Revision: 274105

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  kdebase-runtime/repos/testing-i686/
  kdebase-runtime/repos/testing-i686/PKGBUILD
(from rev 274104, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-x86_64/
  kdebase-runtime/repos/testing-x86_64/PKGBUILD
(from rev 274104, kdebase-runtime/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   53 ++
 testing-x86_64/PKGBUILD |   53 ++
 2 files changed, 106 insertions(+)

Copied: kdebase-runtime/repos/testing-i686/PKGBUILD (from rev 274104, 
kdebase-runtime/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 01:57:18 UTC (rev 274105)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.08.0
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
+optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('708f65c1b813ed4cba7ead72a8d24d087407bb48')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/testing-x86_64/PKGBUILD (from rev 274104, 
kdebase-runtime/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 01:57:18 UTC (rev 274105)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.08.0
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
+optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('708f65c1b813ed4cba7ead72a8d24d087407bb48')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}


[arch-commits] Commit in kdebase-runtime/repos (4 files)

2016-08-05 Thread Antonio Rojas
Date: Friday, August 5, 2016 @ 17:23:22
  Author: arojas
Revision: 273135

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 273134, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 273134, kdebase-runtime/kde-unstable/PKGBUILD)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|  106 +
 kde-unstable-i686/PKGBUILD   |   53 
 kde-unstable-x86_64/PKGBUILD |   53 
 3 files changed, 106 insertions(+), 106 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2016-08-05 17:22:10 UTC (rev 273134)
+++ kde-unstable-i686/PKGBUILD  2016-08-05 17:23:22 UTC (rev 273135)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.07.80
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
-optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('960b66602b67cd2e137f5e40a01c19b7b6e1ffc4')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 273134, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-08-05 17:23:22 UTC (rev 273135)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.07.90
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
+optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('07ba850e43e4999cf84213530ba271a23ba57507')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2016-08-05 17:22:10 UTC (rev 273134)
+++ kde-unstable-x86_64/PKGBUILD2016-08-05 17:23:22 UTC 

[arch-commits] Commit in kdebase-runtime/repos (4 files)

2016-07-23 Thread Antonio Rojas
Date: Saturday, July 23, 2016 @ 18:07:32
  Author: arojas
Revision: 272226

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 272225, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 272225, kdebase-runtime/kde-unstable/PKGBUILD)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|  106 +
 kde-unstable-i686/PKGBUILD   |   53 
 kde-unstable-x86_64/PKGBUILD |   53 
 3 files changed, 106 insertions(+), 106 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2016-07-23 18:06:50 UTC (rev 272225)
+++ kde-unstable-i686/PKGBUILD  2016-07-23 18:07:32 UTC (rev 272226)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.07.80
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
-optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('960b66602b67cd2e137f5e40a01c19b7b6e1ffc4')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 272225, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-07-23 18:07:32 UTC (rev 272226)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.07.80
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
+optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('960b66602b67cd2e137f5e40a01c19b7b6e1ffc4')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2016-07-23 18:06:50 UTC (rev 272225)
+++ kde-unstable-x86_64/PKGBUILD2016-07-23 18:07:32 UTC 

[arch-commits] Commit in kdebase-runtime/repos (4 files)

2016-07-23 Thread Antonio Rojas
Date: Saturday, July 23, 2016 @ 18:06:00
  Author: arojas
Revision: 272223

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 27, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 27, kdebase-runtime/kde-unstable/PKGBUILD)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|  106 +
 kde-unstable-i686/PKGBUILD   |   53 
 kde-unstable-x86_64/PKGBUILD |   53 
 3 files changed, 106 insertions(+), 106 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2016-07-23 18:05:23 UTC (rev 27)
+++ kde-unstable-i686/PKGBUILD  2016-07-23 18:06:00 UTC (rev 272223)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.07.80
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
-optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('960b66602b67cd2e137f5e40a01c19b7b6e1ffc4')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 27, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-07-23 18:06:00 UTC (rev 272223)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.07.80
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
+optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('960b66602b67cd2e137f5e40a01c19b7b6e1ffc4')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2016-07-23 18:05:23 UTC (rev 27)
+++ kde-unstable-x86_64/PKGBUILD2016-07-23 18:06:00 UTC 

[arch-commits] Commit in kdebase-runtime/repos (4 files)

2016-07-23 Thread Antonio Rojas
Date: Saturday, July 23, 2016 @ 18:02:27
  Author: arojas
Revision: 272221

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 272220, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 272220, kdebase-runtime/kde-unstable/PKGBUILD)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|  106 +
 kde-unstable-i686/PKGBUILD   |   53 
 kde-unstable-x86_64/PKGBUILD |   53 
 3 files changed, 106 insertions(+), 106 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2016-07-23 18:01:12 UTC (rev 272220)
+++ kde-unstable-i686/PKGBUILD  2016-07-23 18:02:27 UTC (rev 272221)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.07.80
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
-optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('960b66602b67cd2e137f5e40a01c19b7b6e1ffc4')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 272220, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-07-23 18:02:27 UTC (rev 272221)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.07.80
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
+optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('960b66602b67cd2e137f5e40a01c19b7b6e1ffc4')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2016-07-23 18:01:12 UTC (rev 272220)
+++ kde-unstable-x86_64/PKGBUILD2016-07-23 18:02:27 UTC 

[arch-commits] Commit in kdebase-runtime/repos (4 files)

2016-07-23 Thread Antonio Rojas
Date: Saturday, July 23, 2016 @ 14:14:24
  Author: arojas
Revision: 272175

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 272174, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 272174, kdebase-runtime/kde-unstable/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   53 +
 kde-unstable-x86_64/PKGBUILD |   53 +
 2 files changed, 106 insertions(+)

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 272174, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-07-23 14:14:24 UTC (rev 272175)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.07.80
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
+optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('960b66602b67cd2e137f5e40a01c19b7b6e1ffc4')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD (from rev 272174, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-07-23 14:14:24 UTC (rev 272175)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.07.80
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
+optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('960b66602b67cd2e137f5e40a01c19b7b6e1ffc4')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}


[arch-commits] Commit in kdebase-runtime/repos (4 files)

2016-07-12 Thread Antonio Rojas
Date: Tuesday, July 12, 2016 @ 17:26:04
  Author: arojas
Revision: 271534

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 271533, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 271533, kdebase-runtime/trunk/PKGBUILD)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  106 
 extra-i686/PKGBUILD   |   53 
 extra-x86_64/PKGBUILD |   53 
 3 files changed, 106 insertions(+), 106 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-07-12 17:25:24 UTC (rev 271533)
+++ extra-i686/PKGBUILD 2016-07-12 17:26:04 UTC (rev 271534)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.04.2
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
-optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('5b2b67d32062c165097d099cc4a1be499e0e6547')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 271533, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-07-12 17:26:04 UTC (rev 271534)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.04.3
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
+optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('1a760809058b78f51f25bf1e3f53e6bc5f277463')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-07-12 17:25:24 UTC (rev 271533)
+++ extra-x86_64/PKGBUILD   2016-07-12 17:26:04 UTC (rev 271534)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# 

[arch-commits] Commit in kdebase-runtime/repos (4 files)

2016-06-14 Thread Antonio Rojas
Date: Tuesday, June 14, 2016 @ 16:19:19
  Author: arojas
Revision: 269700

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 269699, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 269699, kdebase-runtime/trunk/PKGBUILD)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  106 
 extra-i686/PKGBUILD   |   53 
 extra-x86_64/PKGBUILD |   53 
 3 files changed, 106 insertions(+), 106 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-06-14 16:19:00 UTC (rev 269699)
+++ extra-i686/PKGBUILD 2016-06-14 16:19:19 UTC (rev 269700)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.04.1
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
-optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('d91e7bbe5e7264b262916f11be1176aa7a54c7f5')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 269699, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-06-14 16:19:19 UTC (rev 269700)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.04.2
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
+optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('5b2b67d32062c165097d099cc4a1be499e0e6547')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-06-14 16:19:00 UTC (rev 269699)
+++ extra-x86_64/PKGBUILD   2016-06-14 16:19:19 UTC (rev 269700)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# 

[arch-commits] Commit in kdebase-runtime/repos (4 files)

2016-05-10 Thread Antonio Rojas
Date: Tuesday, May 10, 2016 @ 18:16:30
  Author: arojas
Revision: 267357

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 267356, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 267356, kdebase-runtime/trunk/PKGBUILD)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  106 
 extra-i686/PKGBUILD   |   53 
 extra-x86_64/PKGBUILD |   53 
 3 files changed, 106 insertions(+), 106 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-05-10 16:16:10 UTC (rev 267356)
+++ extra-i686/PKGBUILD 2016-05-10 16:16:30 UTC (rev 267357)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.04.0
-pkgrel=2
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
-optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('e49c748bcf569e52bf59354e2fffe17c1f40bc26')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 267356, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-05-10 16:16:30 UTC (rev 267357)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.04.1
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
+optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('d91e7bbe5e7264b262916f11be1176aa7a54c7f5')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-05-10 16:16:10 UTC (rev 267356)
+++ extra-x86_64/PKGBUILD   2016-05-10 16:16:30 UTC (rev 267357)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# 

[arch-commits] Commit in kdebase-runtime/repos (6 files)

2016-04-27 Thread Felix Yan
Date: Thursday, April 28, 2016 @ 07:42:41
  Author: fyan
Revision: 266367

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 266366, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 266366, kdebase-runtime/trunk/PKGBUILD)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install

--+
 /PKGBUILD|  106 +
 extra-i686/PKGBUILD  |   54 
 extra-i686/kdebase-runtime.install   |   13 
 extra-x86_64/PKGBUILD|   54 
 extra-x86_64/kdebase-runtime.install |   13 
 5 files changed, 106 insertions(+), 134 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-28 05:42:03 UTC (rev 266366)
+++ extra-i686/PKGBUILD 2016-04-28 05:42:41 UTC (rev 266367)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.04.0
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
-optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-install=$pkgname.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('e49c748bcf569e52bf59354e2fffe17c1f40bc26')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 266366, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-28 05:42:41 UTC (rev 266367)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.04.0
+pkgrel=2
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
+optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('e49c748bcf569e52bf59354e2fffe17c1f40bc26')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Deleted: extra-i686/kdebase-runtime.install

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

2016-04-19 Thread Antonio Rojas
Date: Tuesday, April 19, 2016 @ 13:15:21
  Author: arojas
Revision: 265234

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 265233, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
(from rev 265233, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 265233, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install
(from rev 265233, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install

-+
 /PKGBUILD   |  108 ++
 /kdebase-runtime.install|   26 ++
 kde-unstable-i686/PKGBUILD  |   54 -
 kde-unstable-i686/kdebase-runtime.install   |   13 ---
 kde-unstable-x86_64/PKGBUILD|   54 -
 kde-unstable-x86_64/kdebase-runtime.install |   13 ---
 6 files changed, 134 insertions(+), 134 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2016-04-19 08:08:50 UTC (rev 265233)
+++ kde-unstable-i686/PKGBUILD  2016-04-19 11:15:21 UTC (rev 265234)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.04.0
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
-optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-install=$pkgname.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('e49c748bcf569e52bf59354e2fffe17c1f40bc26')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 265233, 
kdebase-runtime/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-04-19 11:15:21 UTC (rev 265234)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.04.0
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
+optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('e49c748bcf569e52bf59354e2fffe17c1f40bc26')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+

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

2016-04-19 Thread Antonio Rojas
Date: Tuesday, April 19, 2016 @ 09:56:39
  Author: arojas
Revision: 265203

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 265202, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
(from rev 265202, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 265202, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install
(from rev 265202, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install

-+
 /PKGBUILD   |  108 ++
 /kdebase-runtime.install|   26 ++
 kde-unstable-i686/PKGBUILD  |   54 -
 kde-unstable-i686/kdebase-runtime.install   |   13 ---
 kde-unstable-x86_64/PKGBUILD|   54 -
 kde-unstable-x86_64/kdebase-runtime.install |   13 ---
 6 files changed, 134 insertions(+), 134 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2016-04-19 07:55:08 UTC (rev 265202)
+++ kde-unstable-i686/PKGBUILD  2016-04-19 07:56:39 UTC (rev 265203)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.04.0
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
-optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-install=$pkgname.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('e49c748bcf569e52bf59354e2fffe17c1f40bc26')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 265202, 
kdebase-runtime/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-04-19 07:56:39 UTC (rev 265203)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.04.0
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
+optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('e49c748bcf569e52bf59354e2fffe17c1f40bc26')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+

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

2016-04-19 Thread Antonio Rojas
Date: Tuesday, April 19, 2016 @ 09:25:19
  Author: arojas
Revision: 265158

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 265157, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
(from rev 265157, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 265157, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install
(from rev 265157, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install

-+
 /PKGBUILD   |  108 ++
 /kdebase-runtime.install|   26 ++
 kde-unstable-i686/PKGBUILD  |   54 -
 kde-unstable-i686/kdebase-runtime.install   |   13 ---
 kde-unstable-x86_64/PKGBUILD|   54 -
 kde-unstable-x86_64/kdebase-runtime.install |   13 ---
 6 files changed, 134 insertions(+), 134 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2016-04-19 07:23:59 UTC (rev 265157)
+++ kde-unstable-i686/PKGBUILD  2016-04-19 07:25:19 UTC (rev 265158)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.03.90
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
-optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-install=$pkgname.install
-source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('b19fedd13e5dfd11d81b17351f7995903a50f648')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 265157, 
kdebase-runtime/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-04-19 07:25:19 UTC (rev 265158)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.04.0
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
+optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('e49c748bcf569e52bf59354e2fffe17c1f40bc26')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+

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

2016-04-08 Thread Antonio Rojas
Date: Friday, April 8, 2016 @ 08:21:46
  Author: arojas
Revision: 263997

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 263996, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
(from rev 263996, kdebase-runtime/kde-unstable/kdebase-runtime.install)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 263996, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install
(from rev 263996, kdebase-runtime/kde-unstable/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install

-+
 /PKGBUILD   |  108 ++
 /kdebase-runtime.install|   26 ++
 kde-unstable-i686/PKGBUILD  |   54 -
 kde-unstable-i686/kdebase-runtime.install   |   13 ---
 kde-unstable-x86_64/PKGBUILD|   54 -
 kde-unstable-x86_64/kdebase-runtime.install |   13 ---
 6 files changed, 134 insertions(+), 134 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2016-04-08 06:20:36 UTC (rev 263996)
+++ kde-unstable-i686/PKGBUILD  2016-04-08 06:21:46 UTC (rev 263997)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=16.03.80
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
-optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-install=$pkgname.install
-source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('b2a86e9336fadbe02365486543f35491cab1d6cd')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 263996, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-04-08 06:21:46 UTC (rev 263997)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.03.90
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
+optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+install=$pkgname.install
+source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('b19fedd13e5dfd11d81b17351f7995903a50f648')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+

[arch-commits] Commit in kdebase-runtime/repos (6 files)

2016-03-26 Thread Antonio Rojas
Date: Saturday, March 26, 2016 @ 23:33:34
  Author: arojas
Revision: 262602

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

Added:
  kdebase-runtime/repos/staging-i686/
  kdebase-runtime/repos/staging-i686/PKGBUILD
(from rev 262601, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/staging-i686/kdebase-runtime.install
(from rev 262601, kdebase-runtime/kde-unstable/kdebase-runtime.install)
  kdebase-runtime/repos/staging-x86_64/
  kdebase-runtime/repos/staging-x86_64/PKGBUILD
(from rev 262601, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/staging-x86_64/kdebase-runtime.install
(from rev 262601, kdebase-runtime/kde-unstable/kdebase-runtime.install)

+
 staging-i686/PKGBUILD  |   54 +++
 staging-i686/kdebase-runtime.install   |   13 +++
 staging-x86_64/PKGBUILD|   54 +++
 staging-x86_64/kdebase-runtime.install |   13 +++
 4 files changed, 134 insertions(+)

Copied: kdebase-runtime/repos/staging-i686/PKGBUILD (from rev 262601, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-26 22:33:34 UTC (rev 262602)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.03.80
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
+optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+install=$pkgname.install
+source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('b2a86e9336fadbe02365486543f35491cab1d6cd')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/staging-i686/kdebase-runtime.install (from rev 
262601, kdebase-runtime/kde-unstable/kdebase-runtime.install)
===
--- staging-i686/kdebase-runtime.install(rev 0)
+++ staging-i686/kdebase-runtime.install2016-03-26 22:33:34 UTC (rev 
262602)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-mime-database usr/share/mime &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdebase-runtime/repos/staging-x86_64/PKGBUILD (from rev 262601, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-03-26 22:33:34 UTC (rev 262602)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=16.03.80
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
+optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+install=$pkgname.install

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

2016-03-15 Thread Antonio Rojas
Date: Tuesday, March 15, 2016 @ 11:34:15
  Author: arojas
Revision: 261477

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 261476, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
(from rev 261476, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 261476, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install
(from rev 261476, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install

--+
 /PKGBUILD|  108 +
 /kdebase-runtime.install |   26 +++
 extra-i686/PKGBUILD  |   55 
 extra-i686/kdebase-runtime.install   |   13 ---
 extra-x86_64/PKGBUILD|   55 
 extra-x86_64/kdebase-runtime.install |   13 ---
 6 files changed, 134 insertions(+), 136 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-03-15 10:33:58 UTC (rev 261476)
+++ extra-i686/PKGBUILD 2016-03-15 10:34:15 UTC (rev 261477)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=15.12.2
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp')
-optdepends=('kdepimlibs4: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-install=$pkgname.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('210f05a6fbab7b5afee3c66704f4fde796572496')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 261476, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-03-15 10:34:15 UTC (rev 261477)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=15.12.3
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp' 'kdepimlibs4')
+optdepends=('gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('12226932cecd8c8945d00e92b4b6154dc058dd47')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+

[arch-commits] Commit in kdebase-runtime/repos (6 files)

2016-02-15 Thread Antonio Rojas
Date: Tuesday, February 16, 2016 @ 08:56:03
  Author: arojas
Revision: 259373

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  kdebase-runtime/repos/testing-i686/
  kdebase-runtime/repos/testing-i686/PKGBUILD
(from rev 259372, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-i686/kdebase-runtime.install
(from rev 259372, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/testing-x86_64/
  kdebase-runtime/repos/testing-x86_64/PKGBUILD
(from rev 259372, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-x86_64/kdebase-runtime.install
(from rev 259372, kdebase-runtime/trunk/kdebase-runtime.install)

+
 testing-i686/PKGBUILD  |   55 +++
 testing-i686/kdebase-runtime.install   |   13 +++
 testing-x86_64/PKGBUILD|   55 +++
 testing-x86_64/kdebase-runtime.install |   13 +++
 4 files changed, 136 insertions(+)

Copied: kdebase-runtime/repos/testing-i686/PKGBUILD (from rev 259372, 
kdebase-runtime/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-02-16 07:56:03 UTC (rev 259373)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=15.12.2
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp')
+optdepends=('kdepimlibs4: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('210f05a6fbab7b5afee3c66704f4fde796572496')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/testing-i686/kdebase-runtime.install (from rev 
259372, kdebase-runtime/trunk/kdebase-runtime.install)
===
--- testing-i686/kdebase-runtime.install(rev 0)
+++ testing-i686/kdebase-runtime.install2016-02-16 07:56:03 UTC (rev 
259373)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-mime-database usr/share/mime &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdebase-runtime/repos/testing-x86_64/PKGBUILD (from rev 259372, 
kdebase-runtime/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-02-16 07:56:03 UTC (rev 259373)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=15.12.2
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp')
+optdepends=('kdepimlibs4: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications 

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:29:51
  Author: arojas
Revision: 257958

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 257957, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
(from rev 257957, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 257957, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install
(from rev 257957, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install

--+
 /PKGBUILD|  110 +
 /kdebase-runtime.install |   26 +++
 extra-i686/PKGBUILD  |   55 
 extra-i686/kdebase-runtime.install   |   13 ---
 extra-x86_64/PKGBUILD|   55 
 extra-x86_64/kdebase-runtime.install |   13 ---
 6 files changed, 136 insertions(+), 136 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:19:51 UTC (rev 257957)
+++ extra-i686/PKGBUILD 2016-01-12 07:29:51 UTC (rev 257958)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=15.12.0
-pkgrel=3
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp')
-optdepends=('kdepimlibs4: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-install=$pkgname.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('30da08dfb51fade220df7f8cf3e3eab5669a2e18')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_kglobalaccel=OFF \
--DBUILD_kuiserver=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 257957, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:29:51 UTC (rev 257958)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp')
+optdepends=('kdepimlibs4: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('075fda9bb87514124a15af3212b2d6c934e40ac9')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+

[arch-commits] Commit in kdebase-runtime/repos (7 files)

2015-12-26 Thread Antonio Rojas
Date: Saturday, December 26, 2015 @ 09:11:22
  Author: arojas
Revision: 257294

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  kdebase-runtime/repos/staging-i686/PKGBUILD
(from rev 257293, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/staging-i686/kdebase-runtime.install
(from rev 257293, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/staging-x86_64/
  kdebase-runtime/repos/staging-x86_64/PKGBUILD
(from rev 257293, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/staging-x86_64/kdebase-runtime.install
(from rev 257293, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/staging-i686/PKGBUILD
  kdebase-runtime/repos/staging-i686/kdebase-runtime.install

+
 /PKGBUILD  |   55 +++
 /kdebase-runtime.install   |   13 +++
 staging-i686/PKGBUILD  |   53 -
 staging-i686/kdebase-runtime.install   |   13 ---
 staging-x86_64/PKGBUILD|   55 +++
 staging-x86_64/kdebase-runtime.install |   13 +++
 6 files changed, 136 insertions(+), 66 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2015-12-26 08:10:47 UTC (rev 257293)
+++ staging-i686/PKGBUILD   2015-12-26 08:11:22 UTC (rev 257294)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=15.11.90
-pkgrel=2
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp')
-optdepends=('kdepimlibs4: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-install=$pkgname.install
-source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('1d43564097c5a5f3636f34fb1a52e99df681ef7e')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/staging-i686/PKGBUILD (from rev 257293, 
kdebase-runtime/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-26 08:11:22 UTC (rev 257294)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=15.12.0
+pkgrel=3
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp')
+optdepends=('kdepimlibs4: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('30da08dfb51fade220df7f8cf3e3eab5669a2e18')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+

[arch-commits] Commit in kdebase-runtime/repos (6 files)

2015-12-20 Thread Antonio Rojas
Date: Sunday, December 20, 2015 @ 11:15:45
  Author: arojas
Revision: 257033

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  kdebase-runtime/repos/testing-i686/
  kdebase-runtime/repos/testing-i686/PKGBUILD
(from rev 257032, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-i686/kdebase-runtime.install
(from rev 257032, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/testing-x86_64/
  kdebase-runtime/repos/testing-x86_64/PKGBUILD
(from rev 257032, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-x86_64/kdebase-runtime.install
(from rev 257032, kdebase-runtime/trunk/kdebase-runtime.install)

+
 testing-i686/PKGBUILD  |   55 +++
 testing-i686/kdebase-runtime.install   |   13 +++
 testing-x86_64/PKGBUILD|   55 +++
 testing-x86_64/kdebase-runtime.install |   13 +++
 4 files changed, 136 insertions(+)

Copied: kdebase-runtime/repos/testing-i686/PKGBUILD (from rev 257032, 
kdebase-runtime/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-12-20 10:15:45 UTC (rev 257033)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=15.12.0
+pkgrel=2
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp')
+optdepends=('kdepimlibs4: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('30da08dfb51fade220df7f8cf3e3eab5669a2e18')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_kglobalaccel=OFF \
+-DBUILD_kuiserver=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/testing-i686/kdebase-runtime.install (from rev 
257032, kdebase-runtime/trunk/kdebase-runtime.install)
===
--- testing-i686/kdebase-runtime.install(rev 0)
+++ testing-i686/kdebase-runtime.install2015-12-20 10:15:45 UTC (rev 
257033)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-mime-database usr/share/mime &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdebase-runtime/repos/testing-x86_64/PKGBUILD (from rev 257032, 
kdebase-runtime/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-12-20 10:15:45 UTC (rev 257033)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=15.12.0
+pkgrel=2
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp')
+optdepends=('kdepimlibs4: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications 

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

2015-12-15 Thread Antonio Rojas
Date: Wednesday, December 16, 2015 @ 08:20:31
  Author: arojas
Revision: 256273

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 256272, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
(from rev 256272, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 256272, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install
(from rev 256272, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install

-+
 /PKGBUILD   |  106 ++
 /kdebase-runtime.install|   26 ++
 kde-unstable-i686/PKGBUILD  |   53 -
 kde-unstable-i686/kdebase-runtime.install   |   13 ---
 kde-unstable-x86_64/PKGBUILD|   53 -
 kde-unstable-x86_64/kdebase-runtime.install |   13 ---
 6 files changed, 132 insertions(+), 132 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2015-12-16 07:15:38 UTC (rev 256272)
+++ kde-unstable-i686/PKGBUILD  2015-12-16 07:20:31 UTC (rev 256273)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=15.11.90
-pkgrel=2
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp')
-optdepends=('kdepimlibs4: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-install=$pkgname.install
-source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('1d43564097c5a5f3636f34fb1a52e99df681ef7e')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 256272, 
kdebase-runtime/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-12-16 07:20:31 UTC (rev 256273)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=15.12.0
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp')
+optdepends=('kdepimlibs4: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('30da08dfb51fade220df7f8cf3e3eab5669a2e18')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+

[arch-commits] Commit in kdebase-runtime/repos (11 files)

2015-12-08 Thread Antonio Rojas
Date: Wednesday, December 9, 2015 @ 08:16:34
  Author: arojas
Revision: 254803

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 254802, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
(from rev 254802, kdebase-runtime/kde-unstable/kdebase-runtime.install)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 254802, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install
(from rev 254802, kdebase-runtime/kde-unstable/kdebase-runtime.install)
  kdebase-runtime/repos/staging-i686/
  kdebase-runtime/repos/staging-i686/PKGBUILD
(from rev 254802, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/staging-i686/kdebase-runtime.install
(from rev 254802, kdebase-runtime/kde-unstable/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install

-+
 /PKGBUILD   |  106 ++
 /kdebase-runtime.install|   26 ++
 kde-unstable-i686/PKGBUILD  |   53 -
 kde-unstable-i686/kdebase-runtime.install   |   13 ---
 kde-unstable-x86_64/PKGBUILD|   53 -
 kde-unstable-x86_64/kdebase-runtime.install |   13 ---
 staging-i686/PKGBUILD   |   53 +
 staging-i686/kdebase-runtime.install|   13 +++
 8 files changed, 198 insertions(+), 132 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2015-12-09 07:15:05 UTC (rev 254802)
+++ kde-unstable-i686/PKGBUILD  2015-12-09 07:16:34 UTC (rev 254803)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=15.11.90
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp')
-optdepends=('kdepimlibs4: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-install=$pkgname.install
-source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('1d43564097c5a5f3636f34fb1a52e99df681ef7e')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 254802, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-12-09 07:16:34 UTC (rev 254803)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=15.11.90
+pkgrel=2
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp')
+optdepends=('kdepimlibs4: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display 

[arch-commits] Commit in kdebase-runtime/repos (6 files)

2015-12-07 Thread Felix Yan
Date: Monday, December 7, 2015 @ 14:09:57
  Author: fyan
Revision: 253356

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  kdebase-runtime/repos/staging-i686/
  kdebase-runtime/repos/staging-i686/PKGBUILD
(from rev 253355, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/staging-i686/kdebase-runtime.install
(from rev 253355, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/staging-x86_64/
  kdebase-runtime/repos/staging-x86_64/PKGBUILD
(from rev 253355, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/staging-x86_64/kdebase-runtime.install
(from rev 253355, kdebase-runtime/trunk/kdebase-runtime.install)

+
 staging-i686/PKGBUILD  |   53 +++
 staging-i686/kdebase-runtime.install   |   13 +++
 staging-x86_64/PKGBUILD|   53 +++
 staging-x86_64/kdebase-runtime.install |   13 +++
 4 files changed, 132 insertions(+)

Copied: kdebase-runtime/repos/staging-i686/PKGBUILD (from rev 253355, 
kdebase-runtime/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-07 13:09:57 UTC (rev 253356)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=15.08.3
+pkgrel=2
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp')
+optdepends=('kdepimlibs4: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('edc6a2d454aed325b6c8c8f962e67ff8aeb9f8bf')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/staging-i686/kdebase-runtime.install (from rev 
253355, kdebase-runtime/trunk/kdebase-runtime.install)
===
--- staging-i686/kdebase-runtime.install(rev 0)
+++ staging-i686/kdebase-runtime.install2015-12-07 13:09:57 UTC (rev 
253356)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-mime-database usr/share/mime &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdebase-runtime/repos/staging-x86_64/PKGBUILD (from rev 253355, 
kdebase-runtime/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-12-07 13:09:57 UTC (rev 253356)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=15.08.3
+pkgrel=2
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp')
+optdepends=('kdepimlibs4: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)

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

2015-12-03 Thread Antonio Rojas
Date: Thursday, December 3, 2015 @ 20:53:01
  Author: arojas
Revision: 252152

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 252151, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
(from rev 252151, kdebase-runtime/kde-unstable/kdebase-runtime.install)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 252151, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install
(from rev 252151, kdebase-runtime/kde-unstable/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install

-+
 /PKGBUILD   |  106 ++
 /kdebase-runtime.install|   26 ++
 kde-unstable-i686/PKGBUILD  |   53 -
 kde-unstable-i686/kdebase-runtime.install   |   13 ---
 kde-unstable-x86_64/PKGBUILD|   53 -
 kde-unstable-x86_64/kdebase-runtime.install |   13 ---
 6 files changed, 132 insertions(+), 132 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2015-12-03 19:27:28 UTC (rev 252151)
+++ kde-unstable-i686/PKGBUILD  2015-12-03 19:53:01 UTC (rev 252152)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=15.11.80
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp')
-optdepends=('kdepimlibs4: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-provides=(notification-daemon)
-conflicts=(kdesu4)
-replaces=(kdesu4)
-install=$pkgname.install
-source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('1f6d558f05a5b0d00552b42befe207d08a947f89')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF \
--DBUILD_khelpcenter=OFF \
--DBUILD_doc=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
-  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
-
-# FS#36668
-  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 252151, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-12-03 19:53:01 UTC (rev 252152)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=15.11.90
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp')
+optdepends=('kdepimlibs4: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+install=$pkgname.install
+source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('1d43564097c5a5f3636f34fb1a52e99df681ef7e')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+

[arch-commits] Commit in kdebase-runtime/repos (6 files)

2015-11-19 Thread Antonio Rojas
Date: Thursday, November 19, 2015 @ 21:34:41
  Author: arojas
Revision: 251260

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

Added:
  kdebase-runtime/repos/staging-i686/
  kdebase-runtime/repos/staging-i686/PKGBUILD
(from rev 251259, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/staging-i686/kdebase-runtime.install
(from rev 251259, kdebase-runtime/kde-unstable/kdebase-runtime.install)
  kdebase-runtime/repos/staging-x86_64/
  kdebase-runtime/repos/staging-x86_64/PKGBUILD
(from rev 251259, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/staging-x86_64/kdebase-runtime.install
(from rev 251259, kdebase-runtime/kde-unstable/kdebase-runtime.install)

+
 staging-i686/PKGBUILD  |   53 +++
 staging-i686/kdebase-runtime.install   |   13 +++
 staging-x86_64/PKGBUILD|   53 +++
 staging-x86_64/kdebase-runtime.install |   13 +++
 4 files changed, 132 insertions(+)

Copied: kdebase-runtime/repos/staging-i686/PKGBUILD (from rev 251259, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-11-19 20:34:41 UTC (rev 251260)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=15.11.80
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp')
+optdepends=('kdepimlibs4: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+provides=(notification-daemon)
+conflicts=(kdesu4)
+replaces=(kdesu4)
+install=$pkgname.install
+source=("http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('1f6d558f05a5b0d00552b42befe207d08a947f89')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF \
+-DBUILD_khelpcenter=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/kdesu4
+
+# FS#36668
+  chown :nobody "$pkgdir"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "$pkgdir"/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/staging-i686/kdebase-runtime.install (from rev 
251259, kdebase-runtime/kde-unstable/kdebase-runtime.install)
===
--- staging-i686/kdebase-runtime.install(rev 0)
+++ staging-i686/kdebase-runtime.install2015-11-19 20:34:41 UTC (rev 
251260)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-mime-database usr/share/mime &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdebase-runtime/repos/staging-x86_64/PKGBUILD (from rev 251259, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-11-19 20:34:41 UTC (rev 251260)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=15.11.80
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp')
+optdepends=('kdepimlibs4: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications 

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

2015-11-09 Thread Antonio Rojas
Date: Monday, November 9, 2015 @ 22:15:42
  Author: arojas
Revision: 250290

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 250289, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
(from rev 250289, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 250289, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install
(from rev 250289, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install

--+
 /PKGBUILD|  106 +
 /kdebase-runtime.install |   26 
 extra-i686/PKGBUILD  |   79 
 extra-i686/kdebase-runtime.install   |   13 
 extra-x86_64/PKGBUILD|   79 
 extra-x86_64/kdebase-runtime.install |   13 
 6 files changed, 132 insertions(+), 184 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-11-09 21:15:03 UTC (rev 250289)
+++ extra-i686/PKGBUILD 2015-11-09 21:15:42 UTC (rev 250290)
@@ -1,79 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgbase=kdebase-runtime
-pkgname=('kdebase-runtime' 'kdesu4')
-pkgver=15.08.2
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('kdelibs' 'libkactivities4' 'smbclient' 'libssh' 'libcanberra' 
'libwebp'
-   'pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('51ff136a75dcc3e706a9634c698e2b9d5493df1a')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package_kdebase-runtime() {
-  depends=('kdelibs' 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-  optdepends=('kdepimlibs4: for kwalletd, and is needed by DrKonqi to send 
crash reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-  provides=('notification-daemon')
-  install=$pkgname.install
-
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "${pkgdir}"/usr/share/icons/hicolor/index.theme
-
-# Remove khelpcenter
-  cd "$pkgdir"
-  find -name '*khelpcenter*' | xargs rm -fr
-  find -name 'khc*' | xargs rm -fr
-  rm usr/share/applications/kde4/Help.desktop
-
-# Remove docs
-  rm -r "$pkgdir"/usr/share/{doc,man}
-
-# Remove kdesu
-  rm "$pkgdir"/usr/lib/kde4/libexec/kdesu*
-}
-
-package_kdesu4() {
-  pkgdesc=("Run KDE applications as root")
-  depends=('kdebase-runtime')
-  conflicts=('kde-cli-tools')
-
-  cd build/kdesu
-  make DESTDIR="$pkgdir" install
-
-  cd ../doc/kdesu
-  make DESTDIR="$pkgdir" install
-
-  mkdir -p "$pkgdir"/usr/bin
-  ln -sf /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/
-
-  # FS#36668
-  chown :nobody "${pkgdir}"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "${pkgdir}"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 250289, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-11-09 21:15:42 UTC (rev 250290)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=15.08.3
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+depends=('libkactivities4' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' 
'xorg-xauth' 'libwebp')
+optdepends=('kdepimlibs4: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
+'gdb: 

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

2015-10-13 Thread Antonio Rojas
Date: Tuesday, October 13, 2015 @ 08:51:06
  Author: arojas
Revision: 248967

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 248966, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
(from rev 248966, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 248966, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install
(from rev 248966, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install

--+
 /PKGBUILD|  158 +
 /kdebase-runtime.install |   26 +
 extra-i686/PKGBUILD  |   79 
 extra-i686/kdebase-runtime.install   |   13 --
 extra-x86_64/PKGBUILD|   79 
 extra-x86_64/kdebase-runtime.install |   13 --
 6 files changed, 184 insertions(+), 184 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-10-13 06:50:22 UTC (rev 248966)
+++ extra-i686/PKGBUILD 2015-10-13 06:51:06 UTC (rev 248967)
@@ -1,79 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgbase=kdebase-runtime
-pkgname=('kdebase-runtime' 'kdesu4')
-pkgver=15.08.1
-pkgrel=1
-pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('kdelibs' 'libkactivities4' 'smbclient' 'libssh' 'libcanberra' 
'libwebp'
-   'pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('00846093c4d0c5d562c6c8d0a4e79da1fbc6833c')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package_kdebase-runtime() {
-  depends=('kdelibs' 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-  optdepends=('kdepimlibs4: for kwalletd, and is needed by DrKonqi to send 
crash reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-  provides=('notification-daemon')
-  install=$pkgname.install
-
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  rm "${pkgdir}"/usr/share/icons/hicolor/index.theme
-
-# Remove khelpcenter
-  cd "$pkgdir"
-  find -name '*khelpcenter*' | xargs rm -fr
-  find -name 'khc*' | xargs rm -fr
-  rm usr/share/applications/kde4/Help.desktop
-
-# Remove docs
-  rm -r "$pkgdir"/usr/share/{doc,man}
-
-# Remove kdesu
-  rm "$pkgdir"/usr/lib/kde4/libexec/kdesu*
-}
-
-package_kdesu4() {
-  pkgdesc=("Run KDE applications as root")
-  depends=('kdebase-runtime')
-  conflicts=('kde-cli-tools')
-
-  cd build/kdesu
-  make DESTDIR="$pkgdir" install
-
-  cd ../doc/kdesu
-  make DESTDIR="$pkgdir" install
-
-  mkdir -p "$pkgdir"/usr/bin
-  ln -sf /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/
-
-  # FS#36668
-  chown :nobody "${pkgdir}"/usr/lib/kde4/libexec/kdesud
-  chmod g+s "${pkgdir}"/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 248966, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-10-13 06:51:06 UTC (rev 248967)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=kdebase-runtime
+pkgname=('kdebase-runtime' 'kdesu4')
+pkgver=15.08.2
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('kdelibs' 'libkactivities4' 'smbclient' 'libssh' 'libcanberra' 
'libwebp'
+   'pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)

[arch-commits] Commit in kdebase-runtime/repos (6 files)

2015-09-14 Thread Antonio Rojas
Date: Monday, September 14, 2015 @ 22:52:16
  Author: arojas
Revision: 246051

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  kdebase-runtime/repos/testing-i686/
  kdebase-runtime/repos/testing-i686/PKGBUILD
(from rev 246050, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-i686/kdebase-runtime.install
(from rev 246050, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/testing-x86_64/
  kdebase-runtime/repos/testing-x86_64/PKGBUILD
(from rev 246050, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-x86_64/kdebase-runtime.install
(from rev 246050, kdebase-runtime/trunk/kdebase-runtime.install)

+
 testing-i686/PKGBUILD  |   79 +++
 testing-i686/kdebase-runtime.install   |   13 +
 testing-x86_64/PKGBUILD|   79 +++
 testing-x86_64/kdebase-runtime.install |   13 +
 4 files changed, 184 insertions(+)

Copied: kdebase-runtime/repos/testing-i686/PKGBUILD (from rev 246050, 
kdebase-runtime/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-14 20:52:16 UTC (rev 246051)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=kdebase-runtime
+pkgname=('kdebase-runtime' 'kdesu4')
+pkgver=15.08.1
+pkgrel=1
+pkgdesc="Plugins and applications necessary for the running of KDE 
applications"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('kdelibs' 'libkactivities4' 'smbclient' 'libssh' 'libcanberra' 
'libwebp'
+   'pkg-config' 'cmake' 'automoc4' 'kdepimlibs4' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('00846093c4d0c5d562c6c8d0a4e79da1fbc6833c')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF
+  make
+}
+
+package_kdebase-runtime() {
+  depends=('kdelibs' 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+  optdepends=('kdepimlibs4: for kwalletd, and is needed by DrKonqi to send 
crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+  provides=('notification-daemon')
+  install=$pkgname.install
+
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "${pkgdir}"/usr/share/icons/hicolor/index.theme
+
+# Remove khelpcenter
+  cd "$pkgdir"
+  find -name '*khelpcenter*' | xargs rm -fr
+  find -name 'khc*' | xargs rm -fr
+  rm usr/share/applications/kde4/Help.desktop
+
+# Remove docs
+  rm -r "$pkgdir"/usr/share/{doc,man}
+
+# Remove kdesu
+  rm "$pkgdir"/usr/lib/kde4/libexec/kdesu*
+}
+
+package_kdesu4() {
+  pkgdesc=("Run KDE applications as root")
+  depends=('kdebase-runtime')
+  conflicts=('kde-cli-tools')
+
+  cd build/kdesu
+  make DESTDIR="$pkgdir" install
+
+  cd ../doc/kdesu
+  make DESTDIR="$pkgdir" install
+
+  mkdir -p "$pkgdir"/usr/bin
+  ln -sf /usr/lib/kde4/libexec/kdesu "$pkgdir"/usr/bin/
+
+  # FS#36668
+  chown :nobody "${pkgdir}"/usr/lib/kde4/libexec/kdesud
+  chmod g+s "${pkgdir}"/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/testing-i686/kdebase-runtime.install (from rev 
246050, kdebase-runtime/trunk/kdebase-runtime.install)
===
--- testing-i686/kdebase-runtime.install(rev 0)
+++ testing-i686/kdebase-runtime.install2015-09-14 20:52:16 UTC (rev 
246051)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-mime-database usr/share/mime &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdebase-runtime/repos/testing-x86_64/PKGBUILD (from rev 246050, 
kdebase-runtime/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-09-14 20:52:16 UTC (rev 246051)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=kdebase-runtime
+pkgname=('kdebase-runtime' 'kdesu4')

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

2015-08-19 Thread Antonio Rojas
Date: Wednesday, August 19, 2015 @ 08:07:07
  Author: arojas
Revision: 243968

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 243967, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
(from rev 243967, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 243967, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install
(from rev 243967, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install

-+
 /PKGBUILD   |  208 ++
 /kdebase-runtime.install|   26 +++
 kde-unstable-i686/PKGBUILD  |  104 -
 kde-unstable-i686/kdebase-runtime.install   |   13 -
 kde-unstable-x86_64/PKGBUILD|  104 -
 kde-unstable-x86_64/kdebase-runtime.install |   13 -
 6 files changed, 234 insertions(+), 234 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2015-08-19 06:06:07 UTC (rev 243967)
+++ kde-unstable-i686/PKGBUILD  2015-08-19 06:07:07 UTC (rev 243968)
@@ -1,104 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgbase=kdebase-runtime
-pkgname=('kdebase-runtime' 'khelpcenter4' 'kdebase-runtime-doc' 'kdesu4')
-pkgver=15.07.90
-pkgrel=1
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('kdelibs' 'libkactivities4' 'smbclient' 'libssh' 'libcanberra' 
'libwebp'
-   'pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-source=(http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('542fa305fb8ee073a57139914b41ad4061293403')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package_khelpcenter4() {
-  pkgdesc=(Application to show KDE Applications' documentation)
-  depends=('kdebase-runtime' 'htdig' 'rarian' 'kdebase-runtime-doc')
-  provides=(khelpcenter=$pkgver)
-  conflicts=('khelpcenter')
-
-  cd build/khelpcenter
-  make DESTDIR=$pkgdir install
-}
-
-package_kdebase-runtime() {
-  depends=('kdelibs' 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-  optdepends=('kdepimlibs: for kwalletd, and is needed by DrKonqi to send 
crash reports to KDE.org' 'kdebase-runtime-doc: KDE4 documentation'
-'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-  provides=('notification-daemon')
-  install=$pkgname.install
-
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-# Remove khelpcenter
-  cd $pkgdir
-  find -name '*khelpcenter*' | xargs rm -fr
-  find -name 'khc*' | xargs rm -fr
-  rm usr/share/applications/kde4/Help.desktop
-
-# Remove docs
-  rm -r $pkgdir/usr/share/{doc,man}
-
-# Remove kdesu
-  rm $pkgdir/usr/lib/kde4/libexec/kdesu*
-}
-
-package_kdebase-runtime-doc() {
-  pkgdesc=(KDE4 documentation)
-  conflicts=('khelpcenter15' 'plasma-desktop' 'kio-extras')
-
-  cd build/doc
-  make DESTDIR=$pkgdir install
-
-# Remove kdesu docs
-  rm -r $pkgdir/usr/share/doc/HTML/en/kdesu/
-  rm $pkgdir/usr/share/man/man1/kdesu.1
-
-# Remove kcm_ssl docs, provided by kdelibs4support
-  rm -r $pkgdir/usr/share/doc/HTML/en/kcontrol/kcm_ssl
-}
-
-package_kdesu4() {
-  pkgdesc=(Run KDE applications as root)
-  depends=('kdebase-runtime')
-  conflicts=('kde-cli-tools')
-
-  cd build/kdesu
-  make DESTDIR=$pkgdir install
-
-  cd ../doc/kdesu
-  make DESTDIR=$pkgdir install
-
-  mkdir -p $pkgdir/usr/bin
-  ln -sf /usr/lib/kde4/libexec/kdesu $pkgdir/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 243967, 
kdebase-runtime/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD   

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

2015-08-13 Thread Antonio Rojas
Date: Friday, August 14, 2015 @ 00:53:01
  Author: arojas
Revision: 243435

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 243434, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
(from rev 243434, kdebase-runtime/kde-unstable/kdebase-runtime.install)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 243434, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install
(from rev 243434, kdebase-runtime/kde-unstable/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install

-+
 /PKGBUILD   |  208 ++
 /kdebase-runtime.install|   26 +++
 kde-unstable-i686/PKGBUILD  |  104 -
 kde-unstable-i686/kdebase-runtime.install   |   13 -
 kde-unstable-x86_64/PKGBUILD|  104 -
 kde-unstable-x86_64/kdebase-runtime.install |   13 -
 6 files changed, 234 insertions(+), 234 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2015-08-13 22:49:56 UTC (rev 243434)
+++ kde-unstable-i686/PKGBUILD  2015-08-13 22:53:01 UTC (rev 243435)
@@ -1,104 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgbase=kdebase-runtime
-pkgname=('kdebase-runtime' 'khelpcenter4' 'kdebase-runtime-doc' 'kdesu4')
-pkgver=15.07.90
-pkgrel=1
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('kdelibs' 'libkactivities4' 'smbclient' 'libssh' 'libcanberra' 
'libwebp'
-   'pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-source=(http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('542fa305fb8ee073a57139914b41ad4061293403')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package_khelpcenter4() {
-  pkgdesc=(Application to show KDE Applications' documentation)
-  depends=('kdebase-runtime' 'htdig' 'rarian' 'kdebase-runtime-doc')
-  provides=(khelpcenter=$pkgver)
-  conflicts=('khelpcenter')
-
-  cd build/khelpcenter
-  make DESTDIR=$pkgdir install
-}
-
-package_kdebase-runtime() {
-  depends=('kdelibs' 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-  optdepends=('kdepimlibs: for kwalletd, and is needed by DrKonqi to send 
crash reports to KDE.org' 'kdebase-runtime-doc: KDE4 documentation'
-'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-  provides=('notification-daemon')
-  install=$pkgname.install
-
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-# Remove khelpcenter
-  cd $pkgdir
-  find -name '*khelpcenter*' | xargs rm -fr
-  find -name 'khc*' | xargs rm -fr
-  rm usr/share/applications/kde4/Help.desktop
-
-# Remove docs
-  rm -r $pkgdir/usr/share/{doc,man}
-
-# Remove kdesu
-  rm $pkgdir/usr/lib/kde4/libexec/kdesu*
-}
-
-package_kdebase-runtime-doc() {
-  pkgdesc=(KDE4 documentation)
-  conflicts=('khelpcenter15' 'plasma-desktop' 'kio-extras')
-
-  cd build/doc
-  make DESTDIR=$pkgdir install
-
-# Remove kdesu docs
-  rm -r $pkgdir/usr/share/doc/HTML/en/kdesu/
-  rm $pkgdir/usr/share/man/man1/kdesu.1
-
-# Remove kcm_ssl docs, provided by kdelibs4support
-  rm -r $pkgdir/usr/share/doc/HTML/en/kcontrol/kcm_ssl
-}
-
-package_kdesu4() {
-  pkgdesc=(Run KDE applications as root)
-  depends=('kdebase-runtime')
-  conflicts=('kde-cli-tools')
-
-  cd build/kdesu
-  make DESTDIR=$pkgdir install
-
-  cd ../doc/kdesu
-  make DESTDIR=$pkgdir install
-
-  mkdir -p $pkgdir/usr/bin
-  ln -sf /usr/lib/kde4/libexec/kdesu $pkgdir/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 243434, 
kdebase-runtime/kde-unstable/PKGBUILD)

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

2015-08-13 Thread Antonio Rojas
Date: Friday, August 14, 2015 @ 00:36:14
  Author: arojas
Revision: 243420

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 243419, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
(from rev 243419, kdebase-runtime/kde-unstable/kdebase-runtime.install)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 243419, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install
(from rev 243419, kdebase-runtime/kde-unstable/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install

-+
 /PKGBUILD   |  208 ++
 /kdebase-runtime.install|   26 +++
 kde-unstable-i686/PKGBUILD  |  104 -
 kde-unstable-i686/kdebase-runtime.install   |   13 -
 kde-unstable-x86_64/PKGBUILD|  104 -
 kde-unstable-x86_64/kdebase-runtime.install |   13 -
 6 files changed, 234 insertions(+), 234 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2015-08-13 22:19:27 UTC (rev 243419)
+++ kde-unstable-i686/PKGBUILD  2015-08-13 22:36:14 UTC (rev 243420)
@@ -1,104 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgbase=kdebase-runtime
-pkgname=('kdebase-runtime' 'khelpcenter4' 'kdebase-runtime-doc' 'kdesu4')
-pkgver=15.07.80
-pkgrel=1
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('kdelibs' 'libkactivities4' 'smbclient' 'libssh' 'libcanberra' 
'libwebp'
-   'pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-source=(http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('db8f04b047ece8afbf78ea697e9eac8a4892ccb2')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package_khelpcenter4() {
-  pkgdesc=(Application to show KDE Applications' documentation)
-  depends=('kdebase-runtime' 'htdig' 'rarian' 'kdebase-runtime-doc')
-  provides=(khelpcenter=$pkgver)
-  conflicts=('khelpcenter')
-
-  cd build/khelpcenter
-  make DESTDIR=$pkgdir install
-}
-
-package_kdebase-runtime() {
-  depends=('kdelibs' 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-  optdepends=('kdepimlibs: for kwalletd, and is needed by DrKonqi to send 
crash reports to KDE.org' 'kdebase-runtime-doc: KDE4 documentation'
-'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-  provides=('notification-daemon')
-  install=$pkgname.install
-
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-# Remove khelpcenter
-  cd $pkgdir
-  find -name '*khelpcenter*' | xargs rm -fr
-  find -name 'khc*' | xargs rm -fr
-  rm usr/share/applications/kde4/Help.desktop
-
-# Remove docs
-  rm -r $pkgdir/usr/share/{doc,man}
-
-# Remove kdesu
-  rm $pkgdir/usr/lib/kde4/libexec/kdesu*
-}
-
-package_kdebase-runtime-doc() {
-  pkgdesc=(KDE4 documentation)
-  conflicts=('khelpcenter15' 'plasma-desktop' 'kio-extras')
-
-  cd build/doc
-  make DESTDIR=$pkgdir install
-
-# Remove kdesu docs
-  rm -r $pkgdir/usr/share/doc/HTML/en/kdesu/
-  rm $pkgdir/usr/share/man/man1/kdesu.1
-
-# Remove kcm_ssl docs, provided by kdelibs4support
-  rm -r $pkgdir/usr/share/doc/HTML/en/kcontrol/kcm_ssl
-}
-
-package_kdesu4() {
-  pkgdesc=(Run KDE applications as root)
-  depends=('kdebase-runtime')
-  conflicts=('kde-cli-tools')
-
-  cd build/kdesu
-  make DESTDIR=$pkgdir install
-
-  cd ../doc/kdesu
-  make DESTDIR=$pkgdir install
-
-  mkdir -p $pkgdir/usr/bin
-  ln -sf /usr/lib/kde4/libexec/kdesu $pkgdir/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 243419, 
kdebase-runtime/kde-unstable/PKGBUILD)

[arch-commits] Commit in kdebase-runtime/repos (6 files)

2015-07-29 Thread Antonio Rojas
Date: Wednesday, July 29, 2015 @ 09:16:00
  Author: arojas
Revision: 242638

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 242637, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
(from rev 242637, kdebase-runtime/kde-unstable/kdebase-runtime.install)
  kdebase-runtime/repos/kde-unstable-x86_64/
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 242637, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install
(from rev 242637, kdebase-runtime/kde-unstable/kdebase-runtime.install)

-+
 kde-unstable-i686/PKGBUILD  |  104 ++
 kde-unstable-i686/kdebase-runtime.install   |   13 +++
 kde-unstable-x86_64/PKGBUILD|  104 ++
 kde-unstable-x86_64/kdebase-runtime.install |   13 +++
 4 files changed, 234 insertions(+)

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 242637, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-07-29 07:16:00 UTC (rev 242638)
@@ -0,0 +1,104 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=kdebase-runtime
+pkgname=('kdebase-runtime' 'khelpcenter4' 'kdebase-runtime-doc' 'kdesu4')
+pkgver=15.07.80
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('kdelibs' 'libkactivities4' 'smbclient' 'libssh' 'libcanberra' 
'libwebp'
+   'pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+source=(http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('db8f04b047ece8afbf78ea697e9eac8a4892ccb2')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF
+  make
+}
+
+package_khelpcenter4() {
+  pkgdesc=(Application to show KDE Applications' documentation)
+  depends=('kdebase-runtime' 'htdig' 'rarian' 'kdebase-runtime-doc')
+  provides=(khelpcenter=$pkgver)
+  conflicts=('khelpcenter')
+
+  cd build/khelpcenter
+  make DESTDIR=$pkgdir install
+}
+
+package_kdebase-runtime() {
+  depends=('kdelibs' 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+  optdepends=('kdepimlibs: for kwalletd, and is needed by DrKonqi to send 
crash reports to KDE.org' 'kdebase-runtime-doc: KDE4 documentation'
+'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+  provides=('notification-daemon')
+  install=$pkgname.install
+
+  cd build
+  make DESTDIR=$pkgdir install
+
+  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
+
+# Remove khelpcenter
+  cd $pkgdir
+  find -name '*khelpcenter*' | xargs rm -fr
+  find -name 'khc*' | xargs rm -fr
+  rm usr/share/applications/kde4/Help.desktop
+
+# Remove docs
+  rm -r $pkgdir/usr/share/{doc,man}
+
+# Remove kdesu
+  rm $pkgdir/usr/lib/kde4/libexec/kdesu*
+}
+
+package_kdebase-runtime-doc() {
+  pkgdesc=(KDE4 documentation)
+  conflicts=('khelpcenter15' 'plasma-desktop' 'kio-extras')
+
+  cd build/doc
+  make DESTDIR=$pkgdir install
+
+# Remove kdesu docs
+  rm -r $pkgdir/usr/share/doc/HTML/en/kdesu/
+  rm $pkgdir/usr/share/man/man1/kdesu.1
+
+# Remove kcm_ssl docs, provided by kdelibs4support
+  rm -r $pkgdir/usr/share/doc/HTML/en/kcontrol/kcm_ssl
+}
+
+package_kdesu4() {
+  pkgdesc=(Run KDE applications as root)
+  depends=('kdebase-runtime')
+  conflicts=('kde-cli-tools')
+
+  cd build/kdesu
+  make DESTDIR=$pkgdir install
+
+  cd ../doc/kdesu
+  make DESTDIR=$pkgdir install
+
+  mkdir -p $pkgdir/usr/bin
+  ln -sf /usr/lib/kde4/libexec/kdesu $pkgdir/usr/bin/
+
+  # FS#36668
+  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
+  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install (from 
rev 242637, kdebase-runtime/kde-unstable/kdebase-runtime.install)
===
--- kde-unstable-i686/kdebase-runtime.install   (rev 0)
+++ kde-unstable-i686/kdebase-runtime.install   2015-07-29 07:16:00 UTC (rev 
242638)
@@ 

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

2015-07-11 Thread Antonio Rojas
Date: Sunday, July 12, 2015 @ 00:34:08
  Author: arojas
Revision: 242138

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  kdebase-runtime/repos/staging-i686/PKGBUILD
(from rev 242137, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/staging-i686/kdebase-runtime.install
(from rev 242137, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/staging-x86_64/PKGBUILD
(from rev 242137, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/staging-x86_64/kdebase-runtime.install
(from rev 242137, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/staging-i686/PKGBUILD
  kdebase-runtime/repos/staging-i686/kdebase-runtime.install
  kdebase-runtime/repos/staging-x86_64/PKGBUILD
  kdebase-runtime/repos/staging-x86_64/kdebase-runtime.install

+
 /PKGBUILD  |  208 +++
 /kdebase-runtime.install   |   26 +++
 staging-i686/PKGBUILD  |  101 ---
 staging-i686/kdebase-runtime.install   |   13 -
 staging-x86_64/PKGBUILD|  101 ---
 staging-x86_64/kdebase-runtime.install |   13 -
 6 files changed, 234 insertions(+), 228 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2015-07-11 22:33:39 UTC (rev 242137)
+++ staging-i686/PKGBUILD   2015-07-11 22:34:08 UTC (rev 242138)
@@ -1,101 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgbase=kdebase-runtime
-pkgname=('kdebase-runtime' 'khelpcenter4' 'kdebase-runtime-doc' 'kdesu4')
-pkgver=15.04.3
-pkgrel=2
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('kdelibs' 'libkactivities4' 'smbclient' 'libssh' 'libcanberra' 
'libwebp'
-   'pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-source=(http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('9984b22d2706e7d3efefeefca94a9de5b53f07c3')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package_khelpcenter4() {
-  pkgdesc=(Application to show KDE Applications' documentation)
-  depends=('kdebase-runtime' 'htdig' 'rarian' 'kdebase-runtime-doc')
-  provides=(khelpcenter=$pkgver)
-  conflicts=('khelpcenter')
-
-  cd build/khelpcenter
-  make DESTDIR=$pkgdir install
-}
-
-package_kdebase-runtime() {
-  depends=('kdelibs' 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-  optdepends=('kdepimlibs: for kwalletd, and is needed by DrKonqi to send 
crash reports to KDE.org' 'kdebase-runtime-doc: KDE4 documentation'
-'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-  provides=('notification-daemon')
-  install=$pkgname.install
-
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-# Remove khelpcenter
-  cd $pkgdir
-  find -name '*khelpcenter*' | xargs rm -fr
-  find -name 'khc*' | xargs rm -fr
-  rm usr/share/applications/kde4/Help.desktop
-
-# Remove docs
-  rm -r $pkgdir/usr/share/{doc,man}
-
-# Remove kdesu
-  rm $pkgdir/usr/lib/kde4/libexec/kdesu*
-}
-
-package_kdebase-runtime-doc() {
-  pkgdesc=(KDE4 documentation)
-  conflicts=('khelpcenter15' 'plasma-desktop' 'kio-extras')
-
-  cd build/doc
-  make DESTDIR=$pkgdir install
-
-# Remove kdesu docs
-  rm -r $pkgdir/usr/share/doc/HTML/en/kdesu/
-  rm $pkgdir/usr/share/man/man1/kdesu.1
-}
-
-package_kdesu4() {
-  pkgdesc=(Run KDE applications as root)
-  depends=('kdebase-runtime')
-  conflicts=('kde-cli-tools')
-
-  cd build/kdesu
-  make DESTDIR=$pkgdir install
-
-  cd ../doc/kdesu
-  make DESTDIR=$pkgdir install
-
-  mkdir -p $pkgdir/usr/bin
-  ln -sf /usr/lib/kde4/libexec/kdesu $pkgdir/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/staging-i686/PKGBUILD (from rev 242137, 
kdebase-runtime/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-07-11 22:34:08 UTC (rev 242138)
@@ -0,0 +1,104 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea 

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

2015-07-11 Thread Antonio Rojas
Date: Sunday, July 12, 2015 @ 00:25:56
  Author: arojas
Revision: 242134

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 242133, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
(from rev 242133, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 242133, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install
(from rev 242133, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install

--+
 /PKGBUILD|  208 +
 /kdebase-runtime.install |   26 
 extra-i686/PKGBUILD  |  101 
 extra-i686/kdebase-runtime.install   |   13 --
 extra-x86_64/PKGBUILD|  101 
 extra-x86_64/kdebase-runtime.install |   13 --
 6 files changed, 234 insertions(+), 228 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-07-11 22:24:52 UTC (rev 242133)
+++ extra-i686/PKGBUILD 2015-07-11 22:25:56 UTC (rev 242134)
@@ -1,101 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgbase=kdebase-runtime
-pkgname=('kdebase-runtime' 'khelpcenter4' 'kdebase-runtime-doc' 'kdesu4')
-pkgver=15.04.3
-pkgrel=1
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('kdelibs' 'libkactivities4' 'smbclient' 'libssh' 'libcanberra' 
'libwebp'
-   'pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-source=(http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('9984b22d2706e7d3efefeefca94a9de5b53f07c3')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package_khelpcenter4() {
-  pkgdesc=(Application to show KDE Applications' documentation)
-  depends=('kdebase-runtime' 'htdig' 'rarian' 'kdebase-runtime-doc')
-  provides=(khelpcenter=$pkgver)
-  conflicts=('khelpcenter')
-
-  cd build/khelpcenter
-  make DESTDIR=$pkgdir install
-}
-
-package_kdebase-runtime() {
-  depends=('kdelibs' 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-  optdepends=('kdepimlibs: for kwalletd, and is needed by DrKonqi to send 
crash reports to KDE.org' 'kdebase-runtime-doc: KDE4 documentation'
-'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-  provides=('notification-daemon')
-  install=$pkgname.install
-
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-# Remove khelpcenter
-  cd $pkgdir
-  find -name '*khelpcenter*' | xargs rm -fr
-  find -name 'khc*' | xargs rm -fr
-  rm usr/share/applications/kde4/Help.desktop
-
-# Remove docs
-  rm -r $pkgdir/usr/share/{doc,man}
-
-# Remove kdesu
-  rm $pkgdir/usr/lib/kde4/libexec/kdesu*
-}
-
-package_kdebase-runtime-doc() {
-  pkgdesc=(KDE4 documentation)
-  conflicts=('khelpcenter15' 'plasma-desktop' 'kio-extras')
-
-  cd build/doc
-  make DESTDIR=$pkgdir install
-
-# Remove kdesu docs
-  rm -r $pkgdir/usr/share/doc/HTML/en/kdesu/
-  rm $pkgdir/usr/share/man/man1/kdesu.1
-}
-
-package_kdesu4() {
-  pkgdesc=(Run KDE applications as root)
-  depends=('kdebase-runtime')
-  conflicts=('kde-cli-tools')
-
-  cd build/kdesu
-  make DESTDIR=$pkgdir install
-
-  cd ../doc/kdesu
-  make DESTDIR=$pkgdir install
-
-  mkdir -p $pkgdir/usr/bin
-  ln -sf /usr/lib/kde4/libexec/kdesu $pkgdir/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 242133, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-07-11 22:25:56 UTC (rev 242134)
@@ -0,0 +1,104 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz 

[arch-commits] Commit in kdebase-runtime/repos (6 files)

2015-07-03 Thread Antonio Rojas
Date: Friday, July 3, 2015 @ 23:40:20
  Author: arojas
Revision: 241783

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  kdebase-runtime/repos/staging-i686/
  kdebase-runtime/repos/staging-i686/PKGBUILD
(from rev 241782, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/staging-i686/kdebase-runtime.install
(from rev 241782, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/staging-x86_64/
  kdebase-runtime/repos/staging-x86_64/PKGBUILD
(from rev 241782, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/staging-x86_64/kdebase-runtime.install
(from rev 241782, kdebase-runtime/trunk/kdebase-runtime.install)

+
 staging-i686/PKGBUILD  |  101 +++
 staging-i686/kdebase-runtime.install   |   13 +++
 staging-x86_64/PKGBUILD|  101 +++
 staging-x86_64/kdebase-runtime.install |   13 +++
 4 files changed, 228 insertions(+)

Copied: kdebase-runtime/repos/staging-i686/PKGBUILD (from rev 241782, 
kdebase-runtime/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-07-03 21:40:20 UTC (rev 241783)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=kdebase-runtime
+pkgname=('kdebase-runtime' 'khelpcenter4' 'kdebase-runtime-doc' 'kdesu4')
+pkgver=15.04.3
+pkgrel=2
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('kdelibs' 'libkactivities4' 'smbclient' 'libssh' 'libcanberra' 
'libwebp'
+   'pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+source=(http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('9984b22d2706e7d3efefeefca94a9de5b53f07c3')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF
+  make
+}
+
+package_khelpcenter4() {
+  pkgdesc=(Application to show KDE Applications' documentation)
+  depends=('kdebase-runtime' 'htdig' 'rarian' 'kdebase-runtime-doc')
+  provides=(khelpcenter=$pkgver)
+  conflicts=('khelpcenter')
+
+  cd build/khelpcenter
+  make DESTDIR=$pkgdir install
+}
+
+package_kdebase-runtime() {
+  depends=('kdelibs' 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+  optdepends=('kdepimlibs: for kwalletd, and is needed by DrKonqi to send 
crash reports to KDE.org' 'kdebase-runtime-doc: KDE4 documentation'
+'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
+  provides=('notification-daemon')
+  install=$pkgname.install
+
+  cd build
+  make DESTDIR=$pkgdir install
+
+  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
+
+# Remove khelpcenter
+  cd $pkgdir
+  find -name '*khelpcenter*' | xargs rm -fr
+  find -name 'khc*' | xargs rm -fr
+  rm usr/share/applications/kde4/Help.desktop
+
+# Remove docs
+  rm -r $pkgdir/usr/share/{doc,man}
+
+# Remove kdesu
+  rm $pkgdir/usr/lib/kde4/libexec/kdesu*
+}
+
+package_kdebase-runtime-doc() {
+  pkgdesc=(KDE4 documentation)
+  conflicts=('khelpcenter15' 'plasma-desktop' 'kio-extras')
+
+  cd build/doc
+  make DESTDIR=$pkgdir install
+
+# Remove kdesu docs
+  rm -r $pkgdir/usr/share/doc/HTML/en/kdesu/
+  rm $pkgdir/usr/share/man/man1/kdesu.1
+}
+
+package_kdesu4() {
+  pkgdesc=(Run KDE applications as root)
+  depends=('kdebase-runtime')
+  conflicts=('kde-cli-tools')
+
+  cd build/kdesu
+  make DESTDIR=$pkgdir install
+
+  cd ../doc/kdesu
+  make DESTDIR=$pkgdir install
+
+  mkdir -p $pkgdir/usr/bin
+  ln -sf /usr/lib/kde4/libexec/kdesu $pkgdir/usr/bin/
+
+  # FS#36668
+  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
+  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/staging-i686/kdebase-runtime.install (from rev 
241782, kdebase-runtime/trunk/kdebase-runtime.install)
===
--- staging-i686/kdebase-runtime.install(rev 0)
+++ staging-i686/kdebase-runtime.install2015-07-03 21:40:20 UTC (rev 
241783)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-mime-database usr/share/mime  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 22:14:36
  Author: arojas
Revision: 241479

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 241478, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
(from rev 241478, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 241478, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install
(from rev 241478, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install

--+
 /PKGBUILD|  202 +
 /kdebase-runtime.install |   26 
 extra-i686/PKGBUILD  |  101 
 extra-i686/kdebase-runtime.install   |   13 --
 extra-x86_64/PKGBUILD|  101 
 extra-x86_64/kdebase-runtime.install |   13 --
 6 files changed, 228 insertions(+), 228 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 20:14:17 UTC (rev 241478)
+++ extra-i686/PKGBUILD 2015-06-30 20:14:36 UTC (rev 241479)
@@ -1,101 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgbase=kdebase-runtime
-pkgname=('kdebase-runtime' 'khelpcenter4' 'kdebase-runtime-doc' 'kdesu4')
-pkgver=15.04.2
-pkgrel=1
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('kdelibs' 'libkactivities4' 'smbclient' 'libssh' 'libcanberra' 
'libwebp'
-   'pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-source=(http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('18eda94f28f132e62036df5a155b15b538795a73')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package_khelpcenter4() {
-  pkgdesc=(Application to show KDE Applications' documentation)
-  depends=('kdebase-runtime' 'htdig' 'rarian' 'kdebase-runtime-doc')
-  provides=(khelpcenter=$pkgver)
-  conflicts=('khelpcenter')
-
-  cd build/khelpcenter
-  make DESTDIR=$pkgdir install
-}
-
-package_kdebase-runtime() {
-  depends=('kdelibs' 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-  optdepends=('kdepimlibs: for kwalletd, and is needed by DrKonqi to send 
crash reports to KDE.org' 'kdebase-runtime-doc: KDE4 documentation'
-'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-  provides=('notification-daemon')
-  install=$pkgname.install
-
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-# Remove khelpcenter
-  cd $pkgdir
-  find -name '*khelpcenter*' | xargs rm -fr
-  find -name 'khc*' | xargs rm -fr
-  rm usr/share/applications/kde4/Help.desktop
-
-# Remove docs
-  rm -r $pkgdir/usr/share/{doc,man}
-
-# Remove kdesu
-  rm $pkgdir/usr/lib/kde4/libexec/kdesu*
-}
-
-package_kdebase-runtime-doc() {
-  pkgdesc=(KDE4 documentation)
-  conflicts=('khelpcenter15' 'plasma-desktop' 'kio-extras')
-
-  cd build/doc
-  make DESTDIR=$pkgdir install
-
-# Remove kdesu docs
-  rm -r $pkgdir/usr/share/doc/HTML/en/kdesu/
-  rm $pkgdir/usr/share/man/man1/kdesu.1
-}
-
-package_kdesu4() {
-  pkgdesc=(Run KDE applications as root)
-  depends=('kdebase-runtime')
-  conflicts=('kde-cli-tools')
-
-  cd build/kdesu
-  make DESTDIR=$pkgdir install
-
-  cd ../doc/kdesu
-  make DESTDIR=$pkgdir install
-
-  mkdir -p $pkgdir/usr/bin
-  ln -sf /usr/lib/kde4/libexec/kdesu $pkgdir/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 241478, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 20:14:36 UTC (rev 241479)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz 

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

2015-06-02 Thread Antonio Rojas
Date: Tuesday, June 2, 2015 @ 08:44:23
  Author: arojas
Revision: 240007

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 240006, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
(from rev 240006, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 240006, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install
(from rev 240006, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install

--+
 /PKGBUILD|  202 +
 /kdebase-runtime.install |   26 
 extra-i686/PKGBUILD  |  101 
 extra-i686/kdebase-runtime.install   |   13 --
 extra-x86_64/PKGBUILD|  101 
 extra-x86_64/kdebase-runtime.install |   13 --
 6 files changed, 228 insertions(+), 228 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-02 06:44:05 UTC (rev 240006)
+++ extra-i686/PKGBUILD 2015-06-02 06:44:23 UTC (rev 240007)
@@ -1,101 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgbase=kdebase-runtime
-pkgname=('kdebase-runtime' 'khelpcenter4' 'kdebase-runtime-doc' 'kdesu4')
-pkgver=15.04.1
-pkgrel=1
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('kdelibs' 'libkactivities4' 'smbclient' 'libssh' 'libcanberra' 
'libwebp'
-   'pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-source=(http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('73ac23a97bc81b3e988a214ee1342743e516c74c')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package_khelpcenter4() {
-  pkgdesc=(Application to show KDE Applications' documentation)
-  depends=('kdebase-runtime' 'htdig' 'rarian' 'kdebase-runtime-doc')
-  provides=(khelpcenter=$pkgver)
-  conflicts=('khelpcenter')
-
-  cd build/khelpcenter
-  make DESTDIR=$pkgdir install
-}
-
-package_kdebase-runtime() {
-  depends=('kdelibs' 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-  optdepends=('kdepimlibs: for kwalletd, and is needed by DrKonqi to send 
crash reports to KDE.org' 'kdebase-runtime-doc: KDE4 documentation'
-'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-  provides=('notification-daemon')
-  install=$pkgname.install
-
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-# Remove khelpcenter
-  cd $pkgdir
-  find -name '*khelpcenter*' | xargs rm -fr
-  find -name 'khc*' | xargs rm -fr
-  rm usr/share/applications/kde4/Help.desktop
-
-# Remove docs
-  rm -r $pkgdir/usr/share/{doc,man}
-
-# Remove kdesu
-  rm $pkgdir/usr/lib/kde4/libexec/kdesu*
-}
-
-package_kdebase-runtime-doc() {
-  pkgdesc=(KDE4 documentation)
-  conflicts=('khelpcenter15' 'plasma-desktop' 'kio-extras')
-
-  cd build/doc
-  make DESTDIR=$pkgdir install
-
-# Remove kdesu docs
-  rm -r $pkgdir/usr/share/doc/HTML/en/kdesu/
-  rm $pkgdir/usr/share/man/man1/kdesu.1
-}
-
-package_kdesu4() {
-  pkgdesc=(Run KDE applications as root)
-  depends=('kdebase-runtime')
-  conflicts=('kde-cli-tools')
-
-  cd build/kdesu
-  make DESTDIR=$pkgdir install
-
-  cd ../doc/kdesu
-  make DESTDIR=$pkgdir install
-
-  mkdir -p $pkgdir/usr/bin
-  ln -sf /usr/lib/kde4/libexec/kdesu $pkgdir/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 240006, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-02 06:44:23 UTC (rev 240007)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz 

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

2015-05-12 Thread Antonio Rojas
Date: Tuesday, May 12, 2015 @ 09:07:11
  Author: arojas
Revision: 238972

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 238971, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
(from rev 238971, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 238971, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install
(from rev 238971, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install

--+
 /PKGBUILD|  202 +
 /kdebase-runtime.install |   26 
 extra-i686/PKGBUILD  |  101 
 extra-i686/kdebase-runtime.install   |   13 --
 extra-x86_64/PKGBUILD|  101 
 extra-x86_64/kdebase-runtime.install |   13 --
 6 files changed, 228 insertions(+), 228 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-12 06:59:20 UTC (rev 238971)
+++ extra-i686/PKGBUILD 2015-05-12 07:07:11 UTC (rev 238972)
@@ -1,101 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgbase=kdebase-runtime
-pkgname=('kdebase-runtime' 'khelpcenter4' 'kdebase-runtime-doc' 'kdesu4')
-pkgver=15.04.0
-pkgrel=4
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('kdelibs' 'libkactivities4' 'smbclient' 'libssh' 'libcanberra' 
'libwebp'
-   'pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-source=(http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('5cbfec48ead85a1cd3dab675b98623dd4a831d91')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package_khelpcenter4() {
-  pkgdesc=(Application to show KDE Applications' documentation)
-  depends=('kdebase-runtime' 'htdig' 'rarian' 'kdebase-runtime-doc')
-  provides=(khelpcenter=$pkgver)
-  conflicts=('khelpcenter')
-
-  cd build/khelpcenter
-  make DESTDIR=$pkgdir install
-}
-
-package_kdebase-runtime() {
-  depends=('kdelibs' 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-  optdepends=('kdepimlibs: for kwalletd, and is needed by DrKonqi to send 
crash reports to KDE.org' 'kdebase-runtime-doc: KDE4 documentation'
-'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-  provides=('notification-daemon')
-  install=$pkgname.install
-
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-# Remove khelpcenter
-  cd $pkgdir
-  find -name '*khelpcenter*' | xargs rm -fr
-  find -name 'khc*' | xargs rm -fr
-  rm usr/share/applications/kde4/Help.desktop
-
-# Remove docs
-  rm -r $pkgdir/usr/share/{doc,man}
-
-# Remove kdesu
-  rm $pkgdir/usr/lib/kde4/libexec/kdesu*
-}
-
-package_kdebase-runtime-doc() {
-  pkgdesc=(KDE4 documentation)
-  conflicts=('khelpcenter15' 'plasma-desktop' 'kio-extras')
-
-  cd build/doc
-  make DESTDIR=$pkgdir install
-
-# Remove kdesu docs
-  rm -r $pkgdir/usr/share/doc/HTML/en/kdesu/
-  rm $pkgdir/usr/share/man/man1/kdesu.1
-}
-
-package_kdesu4() {
-  pkgdesc=(Run KDE applications as root)
-  depends=('kdebase-runtime')
-  conflicts=('kde-cli-tools')
-
-  cd build/kdesu
-  make DESTDIR=$pkgdir install
-
-  cd ../doc/kdesu
-  make DESTDIR=$pkgdir install
-
-  mkdir -p $pkgdir/usr/bin
-  ln -sf /usr/lib/kde4/libexec/kdesu $pkgdir/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 238971, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-12 07:07:11 UTC (rev 238972)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz 

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

2015-04-20 Thread Antonio Rojas
Date: Monday, April 20, 2015 @ 20:55:17
  Author: arojas
Revision: 237799

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 237798, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
(from rev 237798, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 237798, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install
(from rev 237798, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install

--+
 /PKGBUILD|  202 +
 /kdebase-runtime.install |   26 
 extra-i686/PKGBUILD  |  101 
 extra-i686/kdebase-runtime.install   |   13 --
 extra-x86_64/PKGBUILD|  101 
 extra-x86_64/kdebase-runtime.install |   13 --
 6 files changed, 228 insertions(+), 228 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-04-20 18:54:26 UTC (rev 237798)
+++ extra-i686/PKGBUILD 2015-04-20 18:55:17 UTC (rev 237799)
@@ -1,101 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgbase=kdebase-runtime
-pkgname=('kdebase-runtime' 'khelpcenter4' 'kdebase-runtime-doc' 'kdesu4')
-pkgver=15.04.0
-pkgrel=3
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('kdelibs' 'libkactivities4' 'smbclient' 'libssh' 'libcanberra' 
'libwebp'
-   'pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-source=(http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('5cbfec48ead85a1cd3dab675b98623dd4a831d91')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package_khelpcenter4() {
-  pkgdesc=(Application to show KDE Applications' documentation)
-  depends=('kdebase-runtime' 'htdig' 'rarian' 'kdebase-runtime-doc')
-  provides=('khelpcenter')
-  conflicts=('khelpcenter')
-
-  cd build/khelpcenter
-  make DESTDIR=$pkgdir install
-}
-
-package_kdebase-runtime() {
-  depends=('kdelibs' 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-  optdepends=('kdepimlibs: for kwalletd, and is needed by DrKonqi to send 
crash reports to KDE.org' 'kdebase-runtime-doc: KDE4 documentation'
-'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-  provides=('notification-daemon')
-  install=$pkgname.install
-
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-# Remove khelpcenter
-  cd $pkgdir
-  find -name '*khelpcenter*' | xargs rm -fr
-  find -name 'khc*' | xargs rm -fr
-  rm usr/share/applications/kde4/Help.desktop
-
-# Remove docs
-  rm -r $pkgdir/usr/share/{doc,man}
-
-# Remove kdesu
-  rm $pkgdir/usr/lib/kde4/libexec/kdesu*
-}
-
-package_kdebase-runtime-doc() {
-  pkgdesc=(KDE4 documentation)
-  conflicts=('khelpcenter' 'plasma-desktop' 'kio-extras')
-
-  cd build/doc
-  make DESTDIR=$pkgdir install
-
-# Remove kdesu docs
-  rm -r $pkgdir/usr/share/doc/HTML/en/kdesu/
-  rm $pkgdir/usr/share/man/man1/kdesu.1
-}
-
-package_kdesu4() {
-  pkgdesc=(Run KDE applications as root)
-  depends=('kdebase-runtime')
-  conflicts=('kde-cli-tools')
-
-  cd build/kdesu
-  make DESTDIR=$pkgdir install
-
-  cd ../doc/kdesu
-  make DESTDIR=$pkgdir install
-
-  mkdir -p $pkgdir/usr/bin
-  ln -sf /usr/lib/kde4/libexec/kdesu $pkgdir/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 237798, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-04-20 18:55:17 UTC (rev 237799)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz 

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

2015-04-17 Thread Antonio Rojas
Date: Friday, April 17, 2015 @ 09:35:35
  Author: arojas
Revision: 237271

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  kdebase-runtime/repos/testing-i686/PKGBUILD
(from rev 237270, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-i686/kdebase-runtime.install
(from rev 237270, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/testing-x86_64/PKGBUILD
(from rev 237270, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-x86_64/kdebase-runtime.install
(from rev 237270, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/testing-i686/PKGBUILD
  kdebase-runtime/repos/testing-i686/kdebase-runtime.install
  kdebase-runtime/repos/testing-x86_64/PKGBUILD
  kdebase-runtime/repos/testing-x86_64/kdebase-runtime.install

+
 /PKGBUILD  |  202 +++
 /kdebase-runtime.install   |   26 +++
 testing-i686/PKGBUILD  |  101 ---
 testing-i686/kdebase-runtime.install   |   13 -
 testing-x86_64/PKGBUILD|  101 ---
 testing-x86_64/kdebase-runtime.install |   13 -
 6 files changed, 228 insertions(+), 228 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2015-04-17 07:34:06 UTC (rev 237270)
+++ testing-i686/PKGBUILD   2015-04-17 07:35:35 UTC (rev 237271)
@@ -1,101 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgbase=kdebase-runtime
-pkgname=('kdebase-runtime' 'khelpcenter4' 'kdebase-runtime-doc' 'kdesu4')
-pkgver=15.04.0
-pkgrel=2
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('kdelibs' 'libkactivities4' 'smbclient' 'libssh' 'libcanberra' 
'libwebp'
-   'pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-source=(http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('5cbfec48ead85a1cd3dab675b98623dd4a831d91')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package_khelpcenter4() {
-  pkgdesc=(Application to show KDE Applications' documentation)
-  depends=('kdebase-runtime' 'htdig' 'rarian' 'kdebase-runtime-doc')
-  provides=('khelpcenter')
-  conflicts=('khelpcenter')
-
-  cd build/khelpcenter
-  make DESTDIR=$pkgdir install
-}
-
-package_kdebase-runtime() {
-  depends=('kdelibs' 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-  optdepends=('kdepimlibs: for kwalletd, and is needed by DrKonqi to send 
crash reports to KDE.org' 'kdebase-runtime-doc: KDE4 documentation'
-'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-  provides=('notification-daemon')
-  install=$pkgname.install
-
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-# Remove khelpcenter
-  cd $pkgdir
-  find -name '*khelpcenter*' | xargs rm -fr
-  find -name 'khc*' | xargs rm -fr
-  rm usr/share/applications/kde4/Help.desktop
-
-# Remove docs
-  rm -r $pkgdir/usr/share/{doc,man}
-
-# Remove kdesu
-  rm $pkgdir/usr/lib/kde4/libexec/kdesu*
-}
-
-package_kdebase-runtime-doc() {
-  pkgdesc=(KDE4 documentation)
-  conflicts=('khelpcenter' 'plasma-desktop' 'kio-extras')
-
-  cd build/doc
-  make DESTDIR=$pkgdir install
-
-# Remove kdesu docs
-  rm -r $pkgdir/usr/share/doc/HTML/en/kdesu/
-  rm $pkgdir/usr/share/man/man1/kdesu.1
-}
-
-package_kdesu4() {
-  pkgdesc=(Run KDE applications as root)
-  depends=('kdebase-runtime')
-  conflicts=('kde-cli-tools')
-
-  cd build/kdesu
-  make DESTDIR=$pkgdir install
-
-  cd ../doc/kdesu
-  make DESTDIR=$pkgdir install
-
-  mkdir -p $pkgdir/usr/bin
-  ln -sf /usr/lib/kde4/libexec/kdesu $pkgdir/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/testing-i686/PKGBUILD (from rev 237270, 
kdebase-runtime/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-04-17 07:35:35 UTC (rev 237271)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino 

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

2015-04-11 Thread Antonio Rojas
Date: Saturday, April 11, 2015 @ 10:16:03
  Author: arojas
Revision: 236252

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  kdebase-runtime/repos/staging-i686/PKGBUILD
(from rev 236251, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/staging-i686/kdebase-runtime.install
(from rev 236251, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/staging-x86_64/PKGBUILD
(from rev 236251, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/staging-x86_64/kdebase-runtime.install
(from rev 236251, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/staging-i686/PKGBUILD
  kdebase-runtime/repos/staging-i686/kdebase-runtime.install
  kdebase-runtime/repos/staging-x86_64/PKGBUILD
  kdebase-runtime/repos/staging-x86_64/kdebase-runtime.install

+
 /PKGBUILD  |  202 +++
 /kdebase-runtime.install   |   26 +++
 staging-i686/PKGBUILD  |   72 ---
 staging-i686/kdebase-runtime.install   |   13 -
 staging-x86_64/PKGBUILD|   72 ---
 staging-x86_64/kdebase-runtime.install |   13 -
 6 files changed, 228 insertions(+), 170 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2015-04-11 08:13:52 UTC (rev 236251)
+++ staging-i686/PKGBUILD   2015-04-11 08:16:03 UTC (rev 236252)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgbase=kdebase-runtime
-pkgname=('kdebase-runtime' 'khelpcenter4')
-pkgver=15.04.0
-pkgrel=1
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-makedepends=('kdelibs' 'libkactivities4' 'smbclient' 'libssh' 'libcanberra' 
'libwebp'
-   'pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen' 
'networkmanager' 'boost')
-source=(http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('5cbfec48ead85a1cd3dab675b98623dd4a831d91')
-
-prepare() {
-  mkdir build
-
-  cd kde-runtime-${pkgver}
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package_khelpcenter4() {
-  pkgdesc=(Application to show KDE Applications' documentation)
-  depends=('kdebase-runtime' 'htdig' 'rarian')
-  provides=('khelpcenter')
-  conflicts=('khelpcenter')
-
-  cd build/khelpcenter
-  make DESTDIR=$pkgdir install
-}
-
-package_kdebase-runtime() {
-  depends=(kdelibs 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-  optdepends=('kdepimlibs: for kwalletd, and is needed by DrKonqi to send 
crash reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace' 'khelpcenter: to 
display applications documentation')
-  provides=('notification-daemon')
-  install=$pkgname.install
-
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-
-# Remove khelpcenter
-  cd $pkgdir
-  find -name '*khelpcenter*' | xargs rm -fr
-  find -name 'khc*' | xargs rm -fr
-  rm usr/share/applications/kde4/Help.desktop
-}

Copied: kdebase-runtime/repos/staging-i686/PKGBUILD (from rev 236251, 
kdebase-runtime/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-04-11 08:16:03 UTC (rev 236252)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=kdebase-runtime
+pkgname=('kdebase-runtime' 'khelpcenter4' 'kdebase-runtime-doc' 'kdesu4')
+pkgver=15.04.0
+pkgrel=2
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('kdelibs' 'libkactivities4' 'smbclient' 'libssh' 'libcanberra' 
'libwebp'
+   'pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+source=(http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('5cbfec48ead85a1cd3dab675b98623dd4a831d91')
+

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

2015-04-04 Thread Antonio Rojas
Date: Saturday, April 4, 2015 @ 11:47:48
  Author: arojas
Revision: 235445

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 235444, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
(from rev 235444, kdebase-runtime/kde-unstable/kdebase-runtime.install)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 235444, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install
(from rev 235444, kdebase-runtime/kde-unstable/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install

-+
 /PKGBUILD   |  144 ++
 /kdebase-runtime.install|   26 
 kde-unstable-i686/PKGBUILD  |   56 --
 kde-unstable-i686/kdebase-runtime.install   |   13 --
 kde-unstable-x86_64/PKGBUILD|   56 --
 kde-unstable-x86_64/kdebase-runtime.install |   13 --
 6 files changed, 170 insertions(+), 138 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2015-04-04 09:36:22 UTC (rev 235444)
+++ kde-unstable-i686/PKGBUILD  2015-04-04 09:47:48 UTC (rev 235445)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdebase-runtime
-pkgver=15.03.97
-pkgrel=1
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-depends=(kdelibs 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
- 'networkmanager' 'boost')
-optdepends=('kdepimlibs: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace'
-'htdig: to build the search index in the KHelpCenter'
-'rarian: needed by KHelpCenter')
-provides=('khelpcenter' 'notification-daemon')
-install=${pkgname}.install
-source=(http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('0e72a7b80400d420176cbb64830836dd5a970942')
-
-prepare() {
-  mkdir build
-
-  cd kde-runtime-${pkgver}
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 235444, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-04-04 09:47:48 UTC (rev 235445)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=kdebase-runtime
+pkgname=('kdebase-runtime' 'khelpcenter4')
+pkgver=15.03.97
+pkgrel=2
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+makedepends=('kdelibs' 'libkactivities4' 'smbclient' 'libssh' 'libcanberra' 
'libwebp'
+   'pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen' 
'networkmanager' 'boost')
+source=(http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('0e72a7b80400d420176cbb64830836dd5a970942')
+
+prepare() {
+  mkdir build
+
+  cd kde-runtime-${pkgver}
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF
+  make
+}
+
+package_khelpcenter4() {

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

2015-03-27 Thread Antonio Rojas
Date: Friday, March 27, 2015 @ 09:07:35
  Author: arojas
Revision: 235008

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 235007, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
(from rev 235007, kdebase-runtime/kde-unstable/kdebase-runtime.install)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 235007, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install
(from rev 235007, kdebase-runtime/kde-unstable/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install

-+
 /PKGBUILD   |  112 ++
 /kdebase-runtime.install|   26 ++
 kde-unstable-i686/PKGBUILD  |   56 -
 kde-unstable-i686/kdebase-runtime.install   |   13 ---
 kde-unstable-x86_64/PKGBUILD|   56 -
 kde-unstable-x86_64/kdebase-runtime.install |   13 ---
 6 files changed, 138 insertions(+), 138 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2015-03-27 07:59:51 UTC (rev 235007)
+++ kde-unstable-i686/PKGBUILD  2015-03-27 08:07:35 UTC (rev 235008)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdebase-runtime
-pkgver=15.03.95
-pkgrel=1
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-depends=(kdelibs 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
- 'networkmanager' 'boost')
-optdepends=('kdepimlibs: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace'
-'htdig: to build the search index in the KHelpCenter'
-'rarian: needed by KHelpCenter')
-provides=('khelpcenter' 'notification-daemon')
-install=${pkgname}.install
-source=(http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('b1ab62a12a4bd2ac40711ace8d81557d178f07e5')
-
-prepare() {
-  mkdir build
-
-  cd kde-runtime-${pkgver}
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 235007, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-03-27 08:07:35 UTC (rev 235008)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=15.03.97
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+provides=('khelpcenter' 'notification-daemon')
+install=${pkgname}.install
+source=(http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('0e72a7b80400d420176cbb64830836dd5a970942')
+
+prepare() {

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

2015-03-20 Thread Antonio Rojas
Date: Friday, March 20, 2015 @ 21:30:13
  Author: arojas
Revision: 234256

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 234255, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
(from rev 234255, kdebase-runtime/kde-unstable/kdebase-runtime.install)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 234255, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install
(from rev 234255, kdebase-runtime/kde-unstable/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install

-+
 /PKGBUILD   |  112 ++
 /kdebase-runtime.install|   26 ++
 kde-unstable-i686/PKGBUILD  |   56 -
 kde-unstable-i686/kdebase-runtime.install   |   13 ---
 kde-unstable-x86_64/PKGBUILD|   56 -
 kde-unstable-x86_64/kdebase-runtime.install |   13 ---
 6 files changed, 138 insertions(+), 138 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2015-03-20 20:11:11 UTC (rev 234255)
+++ kde-unstable-i686/PKGBUILD  2015-03-20 20:30:13 UTC (rev 234256)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdebase-runtime
-pkgver=15.03.90
-pkgrel=1
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-depends=(kdelibs 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
- 'networkmanager' 'boost')
-optdepends=('kdepimlibs: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace'
-'htdig: to build the search index in the KHelpCenter'
-'rarian: needed by KHelpCenter')
-provides=('khelpcenter' 'notification-daemon')
-install=${pkgname}.install
-source=(http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('740a66ca8806ce89d06e45f038d2c09d40db6c06')
-
-prepare() {
-  mkdir build
-
-  cd kde-runtime-${pkgver}
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 234255, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-03-20 20:30:13 UTC (rev 234256)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=15.03.95
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+provides=('khelpcenter' 'notification-daemon')
+install=${pkgname}.install
+source=(http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('b1ab62a12a4bd2ac40711ace8d81557d178f07e5')
+
+prepare() {

[arch-commits] Commit in kdebase-runtime/repos (6 files)

2015-03-14 Thread Antonio Rojas
Date: Saturday, March 14, 2015 @ 10:48:13
  Author: arojas
Revision: 233619

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 233618, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
(from rev 233618, kdebase-runtime/kde-unstable/kdebase-runtime.install)
  kdebase-runtime/repos/kde-unstable-x86_64/
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 233618, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install
(from rev 233618, kdebase-runtime/kde-unstable/kdebase-runtime.install)

-+
 kde-unstable-i686/PKGBUILD  |   56 ++
 kde-unstable-i686/kdebase-runtime.install   |   13 ++
 kde-unstable-x86_64/PKGBUILD|   56 ++
 kde-unstable-x86_64/kdebase-runtime.install |   13 ++
 4 files changed, 138 insertions(+)

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 233618, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-03-14 09:48:13 UTC (rev 233619)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=15.03.90
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+provides=('khelpcenter' 'notification-daemon')
+install=${pkgname}.install
+source=(http://download.kde.org/unstable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('740a66ca8806ce89d06e45f038d2c09d40db6c06')
+
+prepare() {
+  mkdir build
+
+  cd kde-runtime-${pkgver}
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
+
+  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
+
+  # FS#36668
+  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
+  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install (from 
rev 233618, kdebase-runtime/kde-unstable/kdebase-runtime.install)
===
--- kde-unstable-i686/kdebase-runtime.install   (rev 0)
+++ kde-unstable-i686/kdebase-runtime.install   2015-03-14 09:48:13 UTC (rev 
233619)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-mime-database usr/share/mime  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD (from rev 233618, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2015-03-14 09:48:13 UTC (rev 233619)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=15.03.90
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: for kwalletd, and is 

[arch-commits] Commit in kdebase-runtime/repos (6 files)

2015-03-03 Thread Felix Yan
Date: Wednesday, March 4, 2015 @ 06:16:44
  Author: fyan
Revision: 232527

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  kdebase-runtime/repos/testing-i686/
  kdebase-runtime/repos/testing-i686/PKGBUILD
(from rev 232526, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-i686/kdebase-runtime.install
(from rev 232526, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/testing-x86_64/
  kdebase-runtime/repos/testing-x86_64/PKGBUILD
(from rev 232526, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-x86_64/kdebase-runtime.install
(from rev 232526, kdebase-runtime/trunk/kdebase-runtime.install)

+
 testing-i686/PKGBUILD  |   56 +++
 testing-i686/kdebase-runtime.install   |   13 +++
 testing-x86_64/PKGBUILD|   56 +++
 testing-x86_64/kdebase-runtime.install |   13 +++
 4 files changed, 138 insertions(+)

Copied: kdebase-runtime/repos/testing-i686/PKGBUILD (from rev 232526, 
kdebase-runtime/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-03-04 05:16:44 UTC (rev 232527)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=14.12.3
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+provides=('khelpcenter' 'notification-daemon')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('f597893c4801106d790b3beb17b213a91ee89b9a')
+
+prepare() {
+  mkdir build
+
+  cd kde-runtime-${pkgver}
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
+
+  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
+
+  # FS#36668
+  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
+  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/testing-i686/kdebase-runtime.install (from rev 
232526, kdebase-runtime/trunk/kdebase-runtime.install)
===
--- testing-i686/kdebase-runtime.install(rev 0)
+++ testing-i686/kdebase-runtime.install2015-03-04 05:16:44 UTC (rev 
232527)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-mime-database usr/share/mime  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdebase-runtime/repos/testing-x86_64/PKGBUILD (from rev 232526, 
kdebase-runtime/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-03-04 05:16:44 UTC (rev 232527)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=14.12.3
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: for kwalletd, and is needed by DrKonqi to send crash 
reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the 

[arch-commits] Commit in kdebase-runtime/repos (12 files)

2015-02-08 Thread Felix Yan
Date: Sunday, February 8, 2015 @ 13:38:06
  Author: fyan
Revision: 231146

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/CVE-2014-8600.patch
(from rev 231145, kdebase-runtime/trunk/CVE-2014-8600.patch)
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 231145, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
(from rev 231145, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/extra-x86_64/CVE-2014-8600.patch
(from rev 231145, kdebase-runtime/trunk/CVE-2014-8600.patch)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 231145, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install
(from rev 231145, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/extra-i686/CVE-2014-8600.patch
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
  kdebase-runtime/repos/extra-x86_64/CVE-2014-8600.patch
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install

--+
 /CVE-2014-8600.patch |   40 +++
 /PKGBUILD|  112 +
 /kdebase-runtime.install |   26 +++
 extra-i686/CVE-2014-8600.patch   |   20 -
 extra-i686/PKGBUILD  |   56 
 extra-i686/kdebase-runtime.install   |   13 ---
 extra-x86_64/CVE-2014-8600.patch |   20 -
 extra-x86_64/PKGBUILD|   56 
 extra-x86_64/kdebase-runtime.install |   13 ---
 9 files changed, 178 insertions(+), 178 deletions(-)

Deleted: extra-i686/CVE-2014-8600.patch
===
--- extra-i686/CVE-2014-8600.patch  2015-02-08 12:37:19 UTC (rev 231145)
+++ extra-i686/CVE-2014-8600.patch  2015-02-08 12:38:06 UTC (rev 231146)
@@ -1,20 +0,0 @@
 a/kioslave/bookmarks/kio_bookmarks.cpp
-+++ b/kioslave/bookmarks/kio_bookmarks.cpp
-@@ -22,6 +22,7 @@
- #include stdlib.h
- 
- #include qregexp.h
-+#include qtextdocument.h
- 
- #include kapplication.h
- #include kcmdlineargs.h
-@@ -197,7 +198,7 @@
- echoImage(regexp.cap(1), regexp.cap(2), url.queryItem(size));
-   } else {
- echoHead();
--echo(p class=\message\ + i18n(Wrong request: %1,path) + /p);
-+echo(p class=\message\ + i18n(Bad request: %1, 
Qt::escape(Qt::escape(url.prettyUrl( + /p);
-   }
-   finished();
- }
-

Copied: kdebase-runtime/repos/extra-i686/CVE-2014-8600.patch (from rev 231145, 
kdebase-runtime/trunk/CVE-2014-8600.patch)
===
--- extra-i686/CVE-2014-8600.patch  (rev 0)
+++ extra-i686/CVE-2014-8600.patch  2015-02-08 12:38:06 UTC (rev 231146)
@@ -0,0 +1,20 @@
+--- a/kioslave/bookmarks/kio_bookmarks.cpp
 b/kioslave/bookmarks/kio_bookmarks.cpp
+@@ -22,6 +22,7 @@
+ #include stdlib.h
+ 
+ #include qregexp.h
++#include qtextdocument.h
+ 
+ #include kapplication.h
+ #include kcmdlineargs.h
+@@ -197,7 +198,7 @@
+ echoImage(regexp.cap(1), regexp.cap(2), url.queryItem(size));
+   } else {
+ echoHead();
+-echo(p class=\message\ + i18n(Wrong request: %1,path) + /p);
++echo(p class=\message\ + i18n(Bad request: %1, 
Qt::escape(Qt::escape(url.prettyUrl( + /p);
+   }
+   finished();
+ }
+

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-02-08 12:37:19 UTC (rev 231145)
+++ extra-i686/PKGBUILD 2015-02-08 12:38:06 UTC (rev 231146)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdebase-runtime
-pkgver=14.12.2
-pkgrel=1
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-depends=(kdelibs 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
- 'networkmanager' 'boost')
-optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace'
-'htdig: to build the search index in the KHelpCenter'
-'rarian: needed by KHelpCenter')
-provides=('khelpcenter' 'notification-daemon')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('96811840cb04a879109739f3df4f8075fb876ea7')
-
-prepare() {
-  mkdir build
-
-  cd kde-runtime-${pkgver}
-}
-
-build() {
-  cd build
-  cmake 

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

2015-02-03 Thread Felix Yan
Date: Wednesday, February 4, 2015 @ 04:54:46
  Author: fyan
Revision: 230421

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  kdebase-runtime/repos/testing-i686/
  kdebase-runtime/repos/testing-i686/CVE-2014-8600.patch
(from rev 230420, kdebase-runtime/trunk/CVE-2014-8600.patch)
  kdebase-runtime/repos/testing-i686/PKGBUILD
(from rev 230420, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-i686/kdebase-runtime.install
(from rev 230420, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/testing-x86_64/
  kdebase-runtime/repos/testing-x86_64/CVE-2014-8600.patch
(from rev 230420, kdebase-runtime/trunk/CVE-2014-8600.patch)
  kdebase-runtime/repos/testing-x86_64/PKGBUILD
(from rev 230420, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-x86_64/kdebase-runtime.install
(from rev 230420, kdebase-runtime/trunk/kdebase-runtime.install)

+
 testing-i686/CVE-2014-8600.patch   |   20 +++
 testing-i686/PKGBUILD  |   56 +++
 testing-i686/kdebase-runtime.install   |   13 +++
 testing-x86_64/CVE-2014-8600.patch |   20 +++
 testing-x86_64/PKGBUILD|   56 +++
 testing-x86_64/kdebase-runtime.install |   13 +++
 6 files changed, 178 insertions(+)

Copied: kdebase-runtime/repos/testing-i686/CVE-2014-8600.patch (from rev 
230420, kdebase-runtime/trunk/CVE-2014-8600.patch)
===
--- testing-i686/CVE-2014-8600.patch(rev 0)
+++ testing-i686/CVE-2014-8600.patch2015-02-04 03:54:46 UTC (rev 230421)
@@ -0,0 +1,20 @@
+--- a/kioslave/bookmarks/kio_bookmarks.cpp
 b/kioslave/bookmarks/kio_bookmarks.cpp
+@@ -22,6 +22,7 @@
+ #include stdlib.h
+ 
+ #include qregexp.h
++#include qtextdocument.h
+ 
+ #include kapplication.h
+ #include kcmdlineargs.h
+@@ -197,7 +198,7 @@
+ echoImage(regexp.cap(1), regexp.cap(2), url.queryItem(size));
+   } else {
+ echoHead();
+-echo(p class=\message\ + i18n(Wrong request: %1,path) + /p);
++echo(p class=\message\ + i18n(Bad request: %1, 
Qt::escape(Qt::escape(url.prettyUrl( + /p);
+   }
+   finished();
+ }
+

Copied: kdebase-runtime/repos/testing-i686/PKGBUILD (from rev 230420, 
kdebase-runtime/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-02-04 03:54:46 UTC (rev 230421)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=14.12.2
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+provides=('khelpcenter' 'notification-daemon')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('96811840cb04a879109739f3df4f8075fb876ea7')
+
+prepare() {
+  mkdir build
+
+  cd kde-runtime-${pkgver}
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
+
+  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
+
+  # FS#36668
+  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
+  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/testing-i686/kdebase-runtime.install (from rev 
230420, kdebase-runtime/trunk/kdebase-runtime.install)
===
--- testing-i686/kdebase-runtime.install(rev 0)
+++ testing-i686/kdebase-runtime.install2015-02-04 03:54:46 UTC (rev 
230421)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-mime-database usr/share/mime  /dev/null
+update-desktop-database -q
+}
+

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

2015-01-15 Thread Felix Yan
Date: Thursday, January 15, 2015 @ 11:35:25
  Author: fyan
Revision: 229034

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  kdebase-runtime/repos/testing-i686/
  kdebase-runtime/repos/testing-i686/CVE-2014-8600.patch
(from rev 229033, kdebase-runtime/trunk/CVE-2014-8600.patch)
  kdebase-runtime/repos/testing-i686/PKGBUILD
(from rev 229033, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-i686/kdebase-runtime.install
(from rev 229033, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/testing-x86_64/
  kdebase-runtime/repos/testing-x86_64/CVE-2014-8600.patch
(from rev 229033, kdebase-runtime/trunk/CVE-2014-8600.patch)
  kdebase-runtime/repos/testing-x86_64/PKGBUILD
(from rev 229033, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-x86_64/kdebase-runtime.install
(from rev 229033, kdebase-runtime/trunk/kdebase-runtime.install)

+
 testing-i686/CVE-2014-8600.patch   |   20 +++
 testing-i686/PKGBUILD  |   55 +++
 testing-i686/kdebase-runtime.install   |   13 +++
 testing-x86_64/CVE-2014-8600.patch |   20 +++
 testing-x86_64/PKGBUILD|   55 +++
 testing-x86_64/kdebase-runtime.install |   13 +++
 6 files changed, 176 insertions(+)

Copied: kdebase-runtime/repos/testing-i686/CVE-2014-8600.patch (from rev 
229033, kdebase-runtime/trunk/CVE-2014-8600.patch)
===
--- testing-i686/CVE-2014-8600.patch(rev 0)
+++ testing-i686/CVE-2014-8600.patch2015-01-15 10:35:25 UTC (rev 229034)
@@ -0,0 +1,20 @@
+--- a/kioslave/bookmarks/kio_bookmarks.cpp
 b/kioslave/bookmarks/kio_bookmarks.cpp
+@@ -22,6 +22,7 @@
+ #include stdlib.h
+ 
+ #include qregexp.h
++#include qtextdocument.h
+ 
+ #include kapplication.h
+ #include kcmdlineargs.h
+@@ -197,7 +198,7 @@
+ echoImage(regexp.cap(1), regexp.cap(2), url.queryItem(size));
+   } else {
+ echoHead();
+-echo(p class=\message\ + i18n(Wrong request: %1,path) + /p);
++echo(p class=\message\ + i18n(Bad request: %1, 
Qt::escape(Qt::escape(url.prettyUrl( + /p);
+   }
+   finished();
+ }
+

Copied: kdebase-runtime/repos/testing-i686/PKGBUILD (from rev 229033, 
kdebase-runtime/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-01-15 10:35:25 UTC (rev 229034)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=14.12.1
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs 'kactivities' 'libkactivities4' 'smbclient' 'libssh' 
'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+provides=('khelpcenter' 'notification-daemon')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/applications/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('5f6e1e5ac3dcb7a42a945d003881ab47756a940b')
+
+prepare() {
+  mkdir build
+
+  cd kde-runtime-${pkgver}
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
+
+  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
+
+  # FS#36668
+  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
+  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/testing-i686/kdebase-runtime.install (from rev 
229033, kdebase-runtime/trunk/kdebase-runtime.install)
===
--- testing-i686/kdebase-runtime.install(rev 0)
+++ testing-i686/kdebase-runtime.install2015-01-15 10:35:25 UTC (rev 
229034)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-mime-database usr/share/mime  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {

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

2014-11-19 Thread Felix Yan
Date: Wednesday, November 19, 2014 @ 17:32:30
  Author: fyan
Revision: 226407

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  kdebase-runtime/repos/testing-i686/
  kdebase-runtime/repos/testing-i686/CVE-2014-8600.patch
(from rev 226406, kdebase-runtime/trunk/CVE-2014-8600.patch)
  kdebase-runtime/repos/testing-i686/PKGBUILD
(from rev 226406, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-i686/kdebase-runtime.install
(from rev 226406, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/testing-x86_64/
  kdebase-runtime/repos/testing-x86_64/CVE-2014-8600.patch
(from rev 226406, kdebase-runtime/trunk/CVE-2014-8600.patch)
  kdebase-runtime/repos/testing-x86_64/PKGBUILD
(from rev 226406, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-x86_64/kdebase-runtime.install
(from rev 226406, kdebase-runtime/trunk/kdebase-runtime.install)

+
 testing-i686/CVE-2014-8600.patch   |   20 ++
 testing-i686/PKGBUILD  |   58 +++
 testing-i686/kdebase-runtime.install   |   13 ++
 testing-x86_64/CVE-2014-8600.patch |   20 ++
 testing-x86_64/PKGBUILD|   58 +++
 testing-x86_64/kdebase-runtime.install |   13 ++
 6 files changed, 182 insertions(+)

Copied: kdebase-runtime/repos/testing-i686/CVE-2014-8600.patch (from rev 
226406, kdebase-runtime/trunk/CVE-2014-8600.patch)
===
--- testing-i686/CVE-2014-8600.patch(rev 0)
+++ testing-i686/CVE-2014-8600.patch2014-11-19 16:32:30 UTC (rev 226407)
@@ -0,0 +1,20 @@
+--- a/kioslave/bookmarks/kio_bookmarks.cpp
 b/kioslave/bookmarks/kio_bookmarks.cpp
+@@ -22,6 +22,7 @@
+ #include stdlib.h
+ 
+ #include qregexp.h
++#include qtextdocument.h
+ 
+ #include kapplication.h
+ #include kcmdlineargs.h
+@@ -197,7 +198,7 @@
+ echoImage(regexp.cap(1), regexp.cap(2), url.queryItem(size));
+   } else {
+ echoHead();
+-echo(p class=\message\ + i18n(Wrong request: %1,path) + /p);
++echo(p class=\message\ + i18n(Bad request: %1, 
Qt::escape(Qt::escape(url.prettyUrl( + /p);
+   }
+   finished();
+ }
+

Copied: kdebase-runtime/repos/testing-i686/PKGBUILD (from rev 226406, 
kdebase-runtime/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-11-19 16:32:30 UTC (rev 226407)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.14.3
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+provides=('khelpcenter' 'notification-daemon')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;
+CVE-2014-8600.patch)
+sha1sums=('d25357bf7e5d3922ce0c9b60921fb2fd738b7251'
+  '63588c9843c68c9b59e5b5e24dbc62c690ce68ce')
+
+prepare() {
+  mkdir build
+
+  cd kde-runtime-${pkgver}
+  patch -p1 -i ../CVE-2014-8600.patch
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
+
+  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
+
+  # FS#36668
+  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
+  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/testing-i686/kdebase-runtime.install (from rev 
226406, kdebase-runtime/trunk/kdebase-runtime.install)
===
--- testing-i686/kdebase-runtime.install(rev 0)
+++ testing-i686/kdebase-runtime.install2014-11-19 16:32:30 UTC (rev 
226407)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-mime-database 

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

2014-10-20 Thread Andrea Scarpino
Date: Monday, October 20, 2014 @ 10:01:46
  Author: andrea
Revision: 224898

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 224897, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
(from rev 224897, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 224897, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install
(from rev 224897, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install

--+
 /PKGBUILD|  106 +
 /kdebase-runtime.install |   26 
 extra-i686/PKGBUILD  |   53 
 extra-i686/kdebase-runtime.install   |   13 
 extra-x86_64/PKGBUILD|   53 
 extra-x86_64/kdebase-runtime.install |   13 
 6 files changed, 132 insertions(+), 132 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-10-20 08:01:06 UTC (rev 224897)
+++ extra-i686/PKGBUILD 2014-10-20 08:01:46 UTC (rev 224898)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdebase-runtime
-pkgver=4.14.1
-pkgrel=4
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
- 'networkmanager' 'boost')
-optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace'
-'htdig: to build the search index in the KHelpCenter'
-'rarian: needed by KHelpCenter')
-provides=('khelpcenter' 'notification-daemon')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('c928a7f1f5ec6a2c192e07db4e01ea2a439fe1e3')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 224897, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-10-20 08:01:46 UTC (rev 224898)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.14.2
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+provides=('khelpcenter' 'notification-daemon')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('150ad9b8484b0f519f5e9fcdb710ffe8944006a8')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install

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

2014-10-07 Thread Andrea Scarpino
Date: Tuesday, October 7, 2014 @ 20:45:46
  Author: andrea
Revision: 224010

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 224009, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
(from rev 224009, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 224009, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install
(from rev 224009, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install

--+
 /PKGBUILD|  106 +
 /kdebase-runtime.install |   26 
 extra-i686/PKGBUILD  |   53 
 extra-i686/kdebase-runtime.install   |   13 
 extra-x86_64/PKGBUILD|   53 
 extra-x86_64/kdebase-runtime.install |   13 
 6 files changed, 132 insertions(+), 132 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-10-07 18:45:39 UTC (rev 224009)
+++ extra-i686/PKGBUILD 2014-10-07 18:45:46 UTC (rev 224010)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdebase-runtime
-pkgver=4.14.1
-pkgrel=3
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
- 'networkmanager' 'boost')
-optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace'
-'htdig: to build the search index in the KHelpCenter'
-'rarian: needed by KHelpCenter')
-provides=('khelpcenter' 'notification-daemon')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('c928a7f1f5ec6a2c192e07db4e01ea2a439fe1e3')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 224009, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-10-07 18:45:46 UTC (rev 224010)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.14.1
+pkgrel=4
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+provides=('khelpcenter' 'notification-daemon')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('c928a7f1f5ec6a2c192e07db4e01ea2a439fe1e3')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install

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

2014-10-03 Thread Andrea Scarpino
Date: Friday, October 3, 2014 @ 09:34:16
  Author: andrea
Revision: 223805

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  kdebase-runtime/repos/testing-i686/PKGBUILD
(from rev 223804, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-i686/kdebase-runtime.install
(from rev 223804, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/testing-x86_64/PKGBUILD
(from rev 223804, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-x86_64/kdebase-runtime.install
(from rev 223804, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/testing-i686/PKGBUILD
  kdebase-runtime/repos/testing-i686/kdebase-runtime.install
  kdebase-runtime/repos/testing-x86_64/PKGBUILD
  kdebase-runtime/repos/testing-x86_64/kdebase-runtime.install

+
 /PKGBUILD  |  106 +++
 /kdebase-runtime.install   |   26 +++
 testing-i686/PKGBUILD  |   52 ---
 testing-i686/kdebase-runtime.install   |   13 ---
 testing-x86_64/PKGBUILD|   52 ---
 testing-x86_64/kdebase-runtime.install |   13 ---
 6 files changed, 132 insertions(+), 130 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2014-10-03 07:32:27 UTC (rev 223804)
+++ testing-i686/PKGBUILD   2014-10-03 07:34:16 UTC (rev 223805)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdebase-runtime
-pkgver=4.14.1
-pkgrel=2
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
- 'networkmanager' 'boost')
-optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace'
-'htdig: to build the search index in the KHelpCenter'
-'rarian: needed by KHelpCenter')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('c928a7f1f5ec6a2c192e07db4e01ea2a439fe1e3')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/testing-i686/PKGBUILD (from rev 223804, 
kdebase-runtime/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-10-03 07:34:16 UTC (rev 223805)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.14.1
+pkgrel=3
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+provides=('khelpcenter' 'notification-daemon')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('c928a7f1f5ec6a2c192e07db4e01ea2a439fe1e3')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF
+  make
+}
+
+package() {
+  cd build
+  make 

[arch-commits] Commit in kdebase-runtime/repos (6 files)

2014-09-27 Thread Andrea Scarpino
Date: Saturday, September 27, 2014 @ 19:05:01
  Author: andrea
Revision: 223583

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  kdebase-runtime/repos/staging-i686/
  kdebase-runtime/repos/staging-i686/PKGBUILD
(from rev 223582, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/staging-i686/kdebase-runtime.install
(from rev 223582, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/staging-x86_64/
  kdebase-runtime/repos/staging-x86_64/PKGBUILD
(from rev 223582, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/staging-x86_64/kdebase-runtime.install
(from rev 223582, kdebase-runtime/trunk/kdebase-runtime.install)

+
 staging-i686/PKGBUILD  |   52 +++
 staging-i686/kdebase-runtime.install   |   13 +++
 staging-x86_64/PKGBUILD|   52 +++
 staging-x86_64/kdebase-runtime.install |   13 +++
 4 files changed, 130 insertions(+)

Copied: kdebase-runtime/repos/staging-i686/PKGBUILD (from rev 223582, 
kdebase-runtime/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-09-27 17:05:01 UTC (rev 223583)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.14.1
+pkgrel=2
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('c928a7f1f5ec6a2c192e07db4e01ea2a439fe1e3')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
+
+  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
+
+  # FS#36668
+  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
+  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/staging-i686/kdebase-runtime.install (from rev 
223582, kdebase-runtime/trunk/kdebase-runtime.install)
===
--- staging-i686/kdebase-runtime.install(rev 0)
+++ staging-i686/kdebase-runtime.install2014-09-27 17:05:01 UTC (rev 
223583)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-mime-database usr/share/mime  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdebase-runtime/repos/staging-x86_64/PKGBUILD (from rev 223582, 
kdebase-runtime/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-09-27 17:05:01 UTC (rev 223583)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.14.1
+pkgrel=2
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)

[arch-commits] Commit in kdebase-runtime/repos (6 files)

2014-09-20 Thread Sven-Hendrik Haase
Date: Saturday, September 20, 2014 @ 18:07:20
  Author: svenstaro
Revision: 222184

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  kdebase-runtime/repos/testing-i686/
  kdebase-runtime/repos/testing-i686/PKGBUILD
(from rev 222183, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-i686/kdebase-runtime.install
(from rev 222183, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/testing-x86_64/
  kdebase-runtime/repos/testing-x86_64/PKGBUILD
(from rev 222183, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-x86_64/kdebase-runtime.install
(from rev 222183, kdebase-runtime/trunk/kdebase-runtime.install)

+
 testing-i686/PKGBUILD  |   52 +++
 testing-i686/kdebase-runtime.install   |   13 +++
 testing-x86_64/PKGBUILD|   52 +++
 testing-x86_64/kdebase-runtime.install |   13 +++
 4 files changed, 130 insertions(+)

Copied: kdebase-runtime/repos/testing-i686/PKGBUILD (from rev 222183, 
kdebase-runtime/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-09-20 16:07:20 UTC (rev 222184)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.14.1
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('c928a7f1f5ec6a2c192e07db4e01ea2a439fe1e3')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
+
+  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
+
+  # FS#36668
+  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
+  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/testing-i686/kdebase-runtime.install (from rev 
222183, kdebase-runtime/trunk/kdebase-runtime.install)
===
--- testing-i686/kdebase-runtime.install(rev 0)
+++ testing-i686/kdebase-runtime.install2014-09-20 16:07:20 UTC (rev 
222184)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-mime-database usr/share/mime  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdebase-runtime/repos/testing-x86_64/PKGBUILD (from rev 222183, 
kdebase-runtime/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-09-20 16:07:20 UTC (rev 222184)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.14.1
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)

[arch-commits] Commit in kdebase-runtime/repos (6 files)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 22:00:48
  Author: svenstaro
Revision: 219798

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  kdebase-runtime/repos/testing-i686/
  kdebase-runtime/repos/testing-i686/PKGBUILD
(from rev 219797, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-i686/kdebase-runtime.install
(from rev 219797, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/testing-x86_64/
  kdebase-runtime/repos/testing-x86_64/PKGBUILD
(from rev 219797, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-x86_64/kdebase-runtime.install
(from rev 219797, kdebase-runtime/trunk/kdebase-runtime.install)

+
 testing-i686/PKGBUILD  |   52 +++
 testing-i686/kdebase-runtime.install   |   13 +++
 testing-x86_64/PKGBUILD|   52 +++
 testing-x86_64/kdebase-runtime.install |   13 +++
 4 files changed, 130 insertions(+)

Copied: kdebase-runtime/repos/testing-i686/PKGBUILD (from rev 219797, 
kdebase-runtime/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-08-16 20:00:48 UTC (rev 219798)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.14.0
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('3847a9e6a66e4e724cff9230ff564c900243d4cd')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
+
+  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
+
+  # FS#36668
+  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
+  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/testing-i686/kdebase-runtime.install (from rev 
219797, kdebase-runtime/trunk/kdebase-runtime.install)
===
--- testing-i686/kdebase-runtime.install(rev 0)
+++ testing-i686/kdebase-runtime.install2014-08-16 20:00:48 UTC (rev 
219798)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-mime-database usr/share/mime  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdebase-runtime/repos/testing-x86_64/PKGBUILD (from rev 219797, 
kdebase-runtime/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-08-16 20:00:48 UTC (rev 219798)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.14.0
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)

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

2014-08-03 Thread Sven-Hendrik Haase
Date: Sunday, August 3, 2014 @ 15:26:57
  Author: svenstaro
Revision: 218928

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 218927, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
(from rev 218927, kdebase-runtime/kde-unstable/kdebase-runtime.install)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 218927, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install
(from rev 218927, kdebase-runtime/kde-unstable/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install

-+
 /PKGBUILD   |  104 ++
 /kdebase-runtime.install|   26 ++
 kde-unstable-i686/PKGBUILD  |   52 -
 kde-unstable-i686/kdebase-runtime.install   |   13 ---
 kde-unstable-x86_64/PKGBUILD|   52 -
 kde-unstable-x86_64/kdebase-runtime.install |   13 ---
 6 files changed, 130 insertions(+), 130 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2014-08-03 13:26:50 UTC (rev 218927)
+++ kde-unstable-i686/PKGBUILD  2014-08-03 13:26:57 UTC (rev 218928)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdebase-runtime
-pkgver=4.13.97
-pkgrel=1
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
- 'networkmanager' 'boost')
-optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace'
-'htdig: to build the search index in the KHelpCenter'
-'rarian: needed by KHelpCenter')
-install=${pkgname}.install
-source=(http://download.kde.org/unstable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('49ffa9def7f3096c7dcf3dd7c7a1ce62ed600d87')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 218927, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-08-03 13:26:57 UTC (rev 218928)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.13.97
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+install=${pkgname}.install
+source=(http://download.kde.org/unstable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('49ffa9def7f3096c7dcf3dd7c7a1ce62ed600d87')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+

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

2014-08-03 Thread Sven-Hendrik Haase
Date: Sunday, August 3, 2014 @ 15:46:46
  Author: svenstaro
Revision: 219104

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 219103, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
(from rev 219103, kdebase-runtime/kde-unstable/kdebase-runtime.install)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 219103, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install
(from rev 219103, kdebase-runtime/kde-unstable/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install

-+
 /PKGBUILD   |  104 ++
 /kdebase-runtime.install|   26 ++
 kde-unstable-i686/PKGBUILD  |   52 -
 kde-unstable-i686/kdebase-runtime.install   |   13 ---
 kde-unstable-x86_64/PKGBUILD|   52 -
 kde-unstable-x86_64/kdebase-runtime.install |   13 ---
 6 files changed, 130 insertions(+), 130 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2014-08-03 13:46:38 UTC (rev 219103)
+++ kde-unstable-i686/PKGBUILD  2014-08-03 13:46:46 UTC (rev 219104)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdebase-runtime
-pkgver=4.13.97
-pkgrel=1
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
- 'networkmanager' 'boost')
-optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace'
-'htdig: to build the search index in the KHelpCenter'
-'rarian: needed by KHelpCenter')
-install=${pkgname}.install
-source=(http://download.kde.org/unstable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('49ffa9def7f3096c7dcf3dd7c7a1ce62ed600d87')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 219103, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-08-03 13:46:46 UTC (rev 219104)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.13.97
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+install=${pkgname}.install
+source=(http://download.kde.org/unstable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('49ffa9def7f3096c7dcf3dd7c7a1ce62ed600d87')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+

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

2014-08-03 Thread Sven-Hendrik Haase
Date: Sunday, August 3, 2014 @ 14:17:09
  Author: svenstaro
Revision: 218550

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 218549, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
(from rev 218549, kdebase-runtime/kde-unstable/kdebase-runtime.install)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 218549, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install
(from rev 218549, kdebase-runtime/kde-unstable/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install

-+
 /PKGBUILD   |  104 ++
 /kdebase-runtime.install|   26 ++
 kde-unstable-i686/PKGBUILD  |   52 -
 kde-unstable-i686/kdebase-runtime.install   |   13 ---
 kde-unstable-x86_64/PKGBUILD|   52 -
 kde-unstable-x86_64/kdebase-runtime.install |   13 ---
 6 files changed, 130 insertions(+), 130 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2014-08-03 12:17:03 UTC (rev 218549)
+++ kde-unstable-i686/PKGBUILD  2014-08-03 12:17:09 UTC (rev 218550)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdebase-runtime
-pkgver=4.13.95
-pkgrel=1
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
- 'networkmanager' 'boost')
-optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace'
-'htdig: to build the search index in the KHelpCenter'
-'rarian: needed by KHelpCenter')
-install=${pkgname}.install
-source=(http://download.kde.org/unstable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('5579b85fa68fdfbde310c7fc6cf3a99cbec8664c')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 218549, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-08-03 12:17:09 UTC (rev 218550)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.13.97
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+install=${pkgname}.install
+source=(http://download.kde.org/unstable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('49ffa9def7f3096c7dcf3dd7c7a1ce62ed600d87')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+

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

2014-08-03 Thread Sven-Hendrik Haase
Date: Sunday, August 3, 2014 @ 14:57:23
  Author: svenstaro
Revision: 218718

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 218717, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
(from rev 218717, kdebase-runtime/kde-unstable/kdebase-runtime.install)
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 218717, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install
(from rev 218717, kdebase-runtime/kde-unstable/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install

-+
 /PKGBUILD   |  104 ++
 /kdebase-runtime.install|   26 ++
 kde-unstable-i686/PKGBUILD  |   52 -
 kde-unstable-i686/kdebase-runtime.install   |   13 ---
 kde-unstable-x86_64/PKGBUILD|   52 -
 kde-unstable-x86_64/kdebase-runtime.install |   13 ---
 6 files changed, 130 insertions(+), 130 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2014-08-03 12:57:14 UTC (rev 218717)
+++ kde-unstable-i686/PKGBUILD  2014-08-03 12:57:23 UTC (rev 218718)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdebase-runtime
-pkgver=4.13.97
-pkgrel=1
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
- 'networkmanager' 'boost')
-optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace'
-'htdig: to build the search index in the KHelpCenter'
-'rarian: needed by KHelpCenter')
-install=${pkgname}.install
-source=(http://download.kde.org/unstable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('49ffa9def7f3096c7dcf3dd7c7a1ce62ed600d87')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 218717, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-08-03 12:57:23 UTC (rev 218718)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.13.97
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+install=${pkgname}.install
+source=(http://download.kde.org/unstable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('49ffa9def7f3096c7dcf3dd7c7a1ce62ed600d87')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+

[arch-commits] Commit in kdebase-runtime/repos (6 files)

2014-07-25 Thread Sven-Hendrik Haase
Date: Friday, July 25, 2014 @ 16:49:40
  Author: svenstaro
Revision: 217852

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

Added:
  kdebase-runtime/repos/kde-unstable-i686/
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 217851, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
(from rev 217851, kdebase-runtime/kde-unstable/kdebase-runtime.install)
  kdebase-runtime/repos/kde-unstable-x86_64/
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 217851, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install
(from rev 217851, kdebase-runtime/kde-unstable/kdebase-runtime.install)

-+
 kde-unstable-i686/PKGBUILD  |   52 ++
 kde-unstable-i686/kdebase-runtime.install   |   13 ++
 kde-unstable-x86_64/PKGBUILD|   52 ++
 kde-unstable-x86_64/kdebase-runtime.install |   13 ++
 4 files changed, 130 insertions(+)

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 217851, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-07-25 14:49:40 UTC (rev 217852)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.13.95
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+install=${pkgname}.install
+source=(http://download.kde.org/unstable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('5579b85fa68fdfbde310c7fc6cf3a99cbec8664c')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
+
+  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
+
+  # FS#36668
+  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
+  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install (from 
rev 217851, kdebase-runtime/kde-unstable/kdebase-runtime.install)
===
--- kde-unstable-i686/kdebase-runtime.install   (rev 0)
+++ kde-unstable-i686/kdebase-runtime.install   2014-07-25 14:49:40 UTC (rev 
217852)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-mime-database usr/share/mime  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD (from rev 217851, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-07-25 14:49:40 UTC (rev 217852)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.13.95
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')

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

2014-07-21 Thread Sven-Hendrik Haase
Date: Monday, July 21, 2014 @ 22:08:55
  Author: svenstaro
Revision: 217540

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 217539, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
(from rev 217539, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 217539, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install
(from rev 217539, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install

--+
 /PKGBUILD|  104 +
 /kdebase-runtime.install |   26 
 extra-i686/PKGBUILD  |   52 
 extra-i686/kdebase-runtime.install   |   13 
 extra-x86_64/PKGBUILD|   52 
 extra-x86_64/kdebase-runtime.install |   13 
 6 files changed, 130 insertions(+), 130 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-07-21 20:08:45 UTC (rev 217539)
+++ extra-i686/PKGBUILD 2014-07-21 20:08:55 UTC (rev 217540)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdebase-runtime
-pkgver=4.13.2
-pkgrel=1
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
- 'networkmanager' 'boost')
-optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace'
-'htdig: to build the search index in the KHelpCenter'
-'rarian: needed by KHelpCenter')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('3ee6b1d263b7c87a63951a0ebc4d77a93c92214a')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 217539, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-07-21 20:08:55 UTC (rev 217540)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.13.3
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('9e28e4477856428a5c3c7f051704d2197728ac2b')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
+
+  ln -sf /usr/lib/kde4/libexec/kdesu 

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

2014-07-21 Thread Sven-Hendrik Haase
Date: Monday, July 21, 2014 @ 22:13:00
  Author: svenstaro
Revision: 217548

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kdebase-runtime/repos/extra-i686/PKGBUILD
(from rev 217547, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
(from rev 217547, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
(from rev 217547, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install
(from rev 217547, kdebase-runtime/trunk/kdebase-runtime.install)
Deleted:
  kdebase-runtime/repos/extra-i686/PKGBUILD
  kdebase-runtime/repos/extra-i686/kdebase-runtime.install
  kdebase-runtime/repos/extra-x86_64/PKGBUILD
  kdebase-runtime/repos/extra-x86_64/kdebase-runtime.install

--+
 /PKGBUILD|  104 +
 /kdebase-runtime.install |   26 
 extra-i686/PKGBUILD  |   52 
 extra-i686/kdebase-runtime.install   |   13 
 extra-x86_64/PKGBUILD|   52 
 extra-x86_64/kdebase-runtime.install |   13 
 6 files changed, 130 insertions(+), 130 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-07-21 20:12:53 UTC (rev 217547)
+++ extra-i686/PKGBUILD 2014-07-21 20:13:00 UTC (rev 217548)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdebase-runtime
-pkgver=4.13.3
-pkgrel=1
-pkgdesc=Plugins and applications necessary for the running of KDE 
applications
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kde-runtime'
-license=('GPL' 'LGPL')
-depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
- 'oxygen-icons' 'xorg-xauth' 'libwebp')
-makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
- 'networkmanager' 'boost')
-optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
-'gdb: needed by DrKonqi to generate backtrace'
-'htdig: to build the search index in the KHelpCenter'
-'rarian: needed by KHelpCenter')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('9e28e4477856428a5c3c7f051704d2197728ac2b')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_QNtrack=OFF \
--DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
--DWITH_NepomukCore=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-
-  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
-
-  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
-
-  # FS#36668
-  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
-  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
-}

Copied: kdebase-runtime/repos/extra-i686/PKGBUILD (from rev 217547, 
kdebase-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-07-21 20:13:00 UTC (rev 217548)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.13.3
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('9e28e4477856428a5c3c7f051704d2197728ac2b')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
+
+  ln -sf /usr/lib/kde4/libexec/kdesu 

[arch-commits] Commit in kdebase-runtime/repos (6 files)

2014-06-08 Thread Sven-Hendrik Haase
Date: Monday, June 9, 2014 @ 05:02:43
  Author: svenstaro
Revision: 214416

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  kdebase-runtime/repos/testing-i686/
  kdebase-runtime/repos/testing-i686/PKGBUILD
(from rev 214415, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-i686/kdebase-runtime.install
(from rev 214415, kdebase-runtime/trunk/kdebase-runtime.install)
  kdebase-runtime/repos/testing-x86_64/
  kdebase-runtime/repos/testing-x86_64/PKGBUILD
(from rev 214415, kdebase-runtime/trunk/PKGBUILD)
  kdebase-runtime/repos/testing-x86_64/kdebase-runtime.install
(from rev 214415, kdebase-runtime/trunk/kdebase-runtime.install)

+
 testing-i686/PKGBUILD  |   52 +++
 testing-i686/kdebase-runtime.install   |   13 +++
 testing-x86_64/PKGBUILD|   52 +++
 testing-x86_64/kdebase-runtime.install |   13 +++
 4 files changed, 130 insertions(+)

Copied: kdebase-runtime/repos/testing-i686/PKGBUILD (from rev 214415, 
kdebase-runtime/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-06-09 03:02:43 UTC (rev 214416)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.13.2
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
+sha1sums=('3ee6b1d263b7c87a63951a0ebc4d77a93c92214a')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
+
+  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
+
+  # FS#36668
+  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
+  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/testing-i686/kdebase-runtime.install (from rev 
214415, kdebase-runtime/trunk/kdebase-runtime.install)
===
--- testing-i686/kdebase-runtime.install(rev 0)
+++ testing-i686/kdebase-runtime.install2014-06-09 03:02:43 UTC (rev 
214416)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-mime-database usr/share/mime  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdebase-runtime/repos/testing-x86_64/PKGBUILD (from rev 214415, 
kdebase-runtime/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-06-09 03:02:43 UTC (rev 214416)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.13.2
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'libkactivities4' 'smbclient' 
'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)

  1   2   3   4   >