[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, kdebase-runtime/trunk/kdebase-runtime-no-kdewebkit.patch)
==

[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 djvucreator.cpp)
+ 

Copied: 
kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime-no-kdewebkit.patch 
(

[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: 
kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime-no-kdewebkit.patch 
(from rev 291262, 
kdebase-runtime/kde-unstable/kdebase-runtime-no-kdewebkit

[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 "$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/
+
+# F

[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 \
+-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 "$pkg

[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 \
+-DBUILD_drkonqi=OFF \
+-DBUILD_doc=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/usr/share/icons/hicolor/index.theme
+  ln -s /us

[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 \
+-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 "

[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
+}
+
+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/

[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 "$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
+ 

[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/
+
+# 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-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 
-# 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=

[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 
-# 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

[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 (rev 273135)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=

[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 (rev 272226)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname

[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 (rev 272223)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname

[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 (rev 272221)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname

[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 
-# 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='htt

[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 
-# 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='htt

[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 
-# 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='http

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

2014-03-22 Thread Andrea Scarpino
Date: Saturday, March 22, 2014 @ 18:42:22
  Author: andrea
Revision: 208346

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

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

-+
 kde-unstable-i686/PKGBUILD  |   57 --
 kde-unstable-i686/kdebase-runtime.install   |   13 -
 kde-unstable-x86_64/PKGBUILD|   57 --
 kde-unstable-x86_64/kdebase-runtime.install |   13 -
 4 files changed, 140 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2014-03-22 17:42:11 UTC (rev 208345)
+++ kde-unstable-i686/PKGBUILD  2014-03-22 17:42:22 UTC (rev 208346)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=4.12.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')
-depends=("kdelibs>=${pkgver}" 'kactivities' '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";
-'libssh05.patch')
-sha1sums=('7657f737088df27bfc713c040aab10275285335c'
-  'c360f682dc5b51e2f9f893b625807b4d62f646ab')
-
-prepare() {
-  mkdir build
-
-  cd kde-runtime-${pkgver}
-  patch -p1 -R -i "${srcdir}"/libssh05.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
-}

Deleted: kde-unstable-i686/kdebase-runtime.install
===
--- kde-unstable-i686/kdebase-runtime.install   2014-03-22 17:42:11 UTC (rev 
208345)
+++ kde-unstable-i686/kdebase-runtime.install   2014-03-22 17:42:22 UTC (rev 
208346)
@@ -1,13 +0,0 @@
-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
-}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2014-03-22 17:42:11 UTC (rev 208345)
+++ kde-unstable-x86_64/PKGBUILD2014-03-22 17:42:22 UTC (rev 208346)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdebase-runtime
-pkgver=4.12.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')
-depends=("kdelibs>=${pkgver}" 'kactivities' '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";
-'libssh05.patch')
-sha1sums=('7657f737088df27bfc713c040aab10275285335c'
-  'c360f682dc5b51e2f9f893b625807b4d62f646ab')
-
-prepare() {
-  mkdir build
-
-  cd kde-runtime-${pkgver}
-  patch -p1 -R -i "${srcdir}"/libssh05.patch
-}
-
-build() {
-  cd build
-  cmake ../kde-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_I

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

2011-11-24 Thread Andrea Scarpino
Date: Thursday, November 24, 2011 @ 11:13:21
  Author: andrea
Revision: 143284

db-move: moved kdebase-runtime from [staging] to [kde-unstable] (x86_64)

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

-+
 PKGBUILD|   43 +++
 kdebase-runtime.install |   12 
 2 files changed, 55 insertions(+)

Copied: kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD (from rev 143277, 
kdebase-runtime/repos/staging-x86_64/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2011-11-24 16:13:21 UTC (rev 143284)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=4.7.80
+pkgrel=1
+pkgdesc="KDE Base Runtime Environment"
+arch=('i686' 'x86_64')
+url='http://www.kde.org'
+license=('GPL' 'LGPL')
+depends=('kdelibs' 'ntrack' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons'
+'xorg-xauth')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'xine-lib')
+optdepends=('htdig: to build the search index in khelpcenter'
+'rarian: needed by khelpcenter'
+'gdb: drkonq crash handler')
+install="${pkgname}.install"
+source=("http://download.kde.org/unstable/${pkgver}/src/kde-runtime-${pkgver}.tar.bz2";)
+sha1sums=('a9c0be087a2cd96d84c1fec1b4f726e9cbcc3327')
+
+build() {
+cd "${srcdir}"
+   mkdir build
+   cd build
+   cmake ../kde-runtime-${pkgver} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_SKIP_RPATH=ON \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd "$srcdir/build"
+   make DESTDIR="$pkgdir" install
+   rm -f "${pkgdir}/usr/share/icons/hicolor/index.theme"
+   ln -sf /usr/lib/kde4/libexec/kdesu "${pkgdir}/usr/bin/"
+
+# Fix Python2 path
+sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
+  "${pkgdir}"/usr/bin/nepomuk-simpleresource-rcgen
+}

Copied: kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install (from 
rev 143277, kdebase-runtime/repos/staging-x86_64/kdebase-runtime.install)
===
--- kde-unstable-x86_64/kdebase-runtime.install (rev 0)
+++ kde-unstable-x86_64/kdebase-runtime.install 2011-11-24 16:13:21 UTC (rev 
143284)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2011-11-24 Thread Andrea Scarpino
Date: Thursday, November 24, 2011 @ 11:13:20
  Author: andrea
Revision: 143283

db-move: moved kdebase-runtime from [staging] to [kde-unstable] (i686)

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

-+
 PKGBUILD|   43 +++
 kdebase-runtime.install |   12 
 2 files changed, 55 insertions(+)

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 143277, 
kdebase-runtime/repos/staging-i686/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2011-11-24 16:13:20 UTC (rev 143283)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdebase-runtime
+pkgver=4.7.80
+pkgrel=1
+pkgdesc="KDE Base Runtime Environment"
+arch=('i686' 'x86_64')
+url='http://www.kde.org'
+license=('GPL' 'LGPL')
+depends=('kdelibs' 'ntrack' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons'
+'xorg-xauth')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'xine-lib')
+optdepends=('htdig: to build the search index in khelpcenter'
+'rarian: needed by khelpcenter'
+'gdb: drkonq crash handler')
+install="${pkgname}.install"
+source=("http://download.kde.org/unstable/${pkgver}/src/kde-runtime-${pkgver}.tar.bz2";)
+sha1sums=('a9c0be087a2cd96d84c1fec1b4f726e9cbcc3327')
+
+build() {
+cd "${srcdir}"
+   mkdir build
+   cd build
+   cmake ../kde-runtime-${pkgver} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_SKIP_RPATH=ON \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd "$srcdir/build"
+   make DESTDIR="$pkgdir" install
+   rm -f "${pkgdir}/usr/share/icons/hicolor/index.theme"
+   ln -sf /usr/lib/kde4/libexec/kdesu "${pkgdir}/usr/bin/"
+
+# Fix Python2 path
+sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
+  "${pkgdir}"/usr/bin/nepomuk-simpleresource-rcgen
+}

Copied: kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install (from 
rev 143277, kdebase-runtime/repos/staging-i686/kdebase-runtime.install)
===
--- kde-unstable-i686/kdebase-runtime.install   (rev 0)
+++ kde-unstable-i686/kdebase-runtime.install   2011-11-24 16:13:20 UTC (rev 
143283)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}