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

2016-08-20 Thread Pierre Schmitz
Date: Sunday, August 21, 2016 @ 05:46:03
  Author: pierre
Revision: 274514

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

Added:
  logrotate/repos/testing-i686/
  logrotate/repos/testing-i686/PKGBUILD
(from rev 274513, logrotate/trunk/PKGBUILD)
  logrotate/repos/testing-i686/logrotate.conf
(from rev 274513, logrotate/trunk/logrotate.conf)
  logrotate/repos/testing-i686/logrotate.service
(from rev 274513, logrotate/trunk/logrotate.service)
  logrotate/repos/testing-i686/logrotate.timer
(from rev 274513, logrotate/trunk/logrotate.timer)
  logrotate/repos/testing-i686/paths.patch
(from rev 274513, logrotate/trunk/paths.patch)
  logrotate/repos/testing-x86_64/
  logrotate/repos/testing-x86_64/PKGBUILD
(from rev 274513, logrotate/trunk/PKGBUILD)
  logrotate/repos/testing-x86_64/logrotate.conf
(from rev 274513, logrotate/trunk/logrotate.conf)
  logrotate/repos/testing-x86_64/logrotate.service
(from rev 274513, logrotate/trunk/logrotate.service)
  logrotate/repos/testing-x86_64/logrotate.timer
(from rev 274513, logrotate/trunk/logrotate.timer)
  logrotate/repos/testing-x86_64/paths.patch
(from rev 274513, logrotate/trunk/paths.patch)

--+
 testing-i686/PKGBUILD|   56 +
 testing-i686/logrotate.conf  |   38 +
 testing-i686/logrotate.service   |9 +
 testing-i686/logrotate.timer |7 
 testing-i686/paths.patch |   25 
 testing-x86_64/PKGBUILD  |   56 +
 testing-x86_64/logrotate.conf|   38 +
 testing-x86_64/logrotate.service |9 +
 testing-x86_64/logrotate.timer   |7 
 testing-x86_64/paths.patch   |   25 
 10 files changed, 270 insertions(+)

Copied: logrotate/repos/testing-i686/PKGBUILD (from rev 274513, 
logrotate/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:46:03 UTC (rev 274514)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=logrotate
+pkgver=3.10.0
+pkgrel=1
+pkgdesc="Rotates system logs automatically"
+arch=('i686' 'x86_64')
+url="https://github.com/logrotate/logrotate;
+license=('GPL')
+groups=('base')
+depends=('popt' 'gzip' 'acl')
+backup=('etc/logrotate.conf')
+source=("https://github.com/logrotate/logrotate/archive/${pkgver}.tar.gz;
+'paths.patch'
+'logrotate.conf'
+logrotate.{timer,service})
+md5sums=('3995acb2791a8dfd81b5ffc0046d0e71'
+ 'e76526bcd6fc33c9d921e1cb1eff1ffb'
+ '94dae4d3eded2fab9ae879533d3680db'
+ '287c2ad9b074cb5478db7692f385827c'
+ '85560be5272ed68a88bb77a0a2293369')
+
+build() {
+   cd "$srcdir/${pkgname}-${pkgver}"
+
+   patch -p0 -i "$srcdir/paths.patch"
+
+   ./autogen.sh
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --mandir=/usr/share/man \
+   --with-acl
+   make
+}
+
+check() {
+   cd "$srcdir/${pkgname}-${pkgver}"
+
+   make test
+}
+
+package() {
+   cd "$srcdir/${pkgname}-${pkgver}"
+
+   make DESTDIR="$pkgdir" install
+
+   install -dm755 "$pkgdir/etc/logrotate.d"
+   install -Dm644 "$srcdir/logrotate.conf" "$pkgdir/etc/logrotate.conf"
+
+   install -D -m644 ${srcdir}/logrotate.timer 
${pkgdir}/usr/lib/systemd/system/logrotate.timer
+   install -D -m644 ${srcdir}/logrotate.service 
${pkgdir}/usr/lib/systemd/system/logrotate.service
+   install -d -m755 
${pkgdir}/usr/lib/systemd/system/multi-user.target.wants
+   ln -s ../logrotate.timer 
${pkgdir}//usr/lib/systemd/system/multi-user.target.wants/logrotate.timer
+}

Copied: logrotate/repos/testing-i686/logrotate.conf (from rev 274513, 
logrotate/trunk/logrotate.conf)
===
--- testing-i686/logrotate.conf (rev 0)
+++ testing-i686/logrotate.conf 2016-08-21 05:46:03 UTC (rev 274514)
@@ -0,0 +1,38 @@
+# see "man logrotate" for details
+# rotate log files weekly
+weekly
+
+# keep 4 weeks worth of backlogs
+rotate 4
+
+# restrict maximum size of log files
+#size 20M
+
+# create new (empty) log files after rotating old ones
+create
+
+# uncomment this if you want your log files compressed
+#compress
+
+# Logs are moved into directory for rotation
+# olddir /var/log/archive
+
+# Ignore pacman saved files
+tabooext + .pacorig .pacnew .pacsave
+
+# Arch packages drop log rotation information into this directory
+include /etc/logrotate.d
+
+/var/log/wtmp {
+monthly
+create 0664 root utmp
+minsize 1M
+rotate 1
+}
+
+/var/log/btmp {
+missingok
+monthly
+create 0600 root utmp
+rotate 1
+}

Copied: logrotate/repos/testing-i686/logrotate.service (from rev 

[arch-commits] Commit in logrotate/trunk (PKGBUILD)

2016-08-20 Thread Pierre Schmitz
Date: Sunday, August 21, 2016 @ 05:45:51
  Author: pierre
Revision: 274513

upgpkg: logrotate 3.10.0-1

Modified:
  logrotate/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-21 05:41:43 UTC (rev 274512)
+++ PKGBUILD2016-08-21 05:45:51 UTC (rev 274513)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz 
 
 pkgname=logrotate
-pkgver=3.9.2
+pkgver=3.10.0
 pkgrel=1
 pkgdesc="Rotates system logs automatically"
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 'paths.patch'
 'logrotate.conf'
 logrotate.{timer,service})
-md5sums=('584bca013dcceeb23b06b27d6d0342fb'
+md5sums=('3995acb2791a8dfd81b5ffc0046d0e71'
  'e76526bcd6fc33c9d921e1cb1eff1ffb'
  '94dae4d3eded2fab9ae879533d3680db'
  '287c2ad9b074cb5478db7692f385827c'


[arch-commits] Commit in php/repos (32 files)

2016-08-20 Thread Pierre Schmitz
Date: Sunday, August 21, 2016 @ 05:41:43
  Author: pierre
Revision: 274512

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

Added:
  php/repos/extra-i686/PKGBUILD
(from rev 274511, php/trunk/PKGBUILD)
  php/repos/extra-i686/apache.conf
(from rev 274511, php/trunk/apache.conf)
  php/repos/extra-i686/apache.patch
(from rev 274511, php/trunk/apache.patch)
  php/repos/extra-i686/generate_patches
(from rev 274511, php/trunk/generate_patches)
  php/repos/extra-i686/php-fpm.install
(from rev 274511, php/trunk/php-fpm.install)
  php/repos/extra-i686/php-fpm.patch
(from rev 274511, php/trunk/php-fpm.patch)
  php/repos/extra-i686/php-fpm.tmpfiles
(from rev 274511, php/trunk/php-fpm.tmpfiles)
  php/repos/extra-i686/php.ini.patch
(from rev 274511, php/trunk/php.ini.patch)
  php/repos/extra-x86_64/PKGBUILD
(from rev 274511, php/trunk/PKGBUILD)
  php/repos/extra-x86_64/apache.conf
(from rev 274511, php/trunk/apache.conf)
  php/repos/extra-x86_64/apache.patch
(from rev 274511, php/trunk/apache.patch)
  php/repos/extra-x86_64/generate_patches
(from rev 274511, php/trunk/generate_patches)
  php/repos/extra-x86_64/php-fpm.install
(from rev 274511, php/trunk/php-fpm.install)
  php/repos/extra-x86_64/php-fpm.patch
(from rev 274511, php/trunk/php-fpm.patch)
  php/repos/extra-x86_64/php-fpm.tmpfiles
(from rev 274511, php/trunk/php-fpm.tmpfiles)
  php/repos/extra-x86_64/php.ini.patch
(from rev 274511, php/trunk/php.ini.patch)
Deleted:
  php/repos/extra-i686/PKGBUILD
  php/repos/extra-i686/apache.conf
  php/repos/extra-i686/apache.patch
  php/repos/extra-i686/generate_patches
  php/repos/extra-i686/php-fpm.install
  php/repos/extra-i686/php-fpm.patch
  php/repos/extra-i686/php-fpm.tmpfiles
  php/repos/extra-i686/php.ini.patch
  php/repos/extra-x86_64/PKGBUILD
  php/repos/extra-x86_64/apache.conf
  php/repos/extra-x86_64/apache.patch
  php/repos/extra-x86_64/generate_patches
  php/repos/extra-x86_64/php-fpm.install
  php/repos/extra-x86_64/php-fpm.patch
  php/repos/extra-x86_64/php-fpm.tmpfiles
  php/repos/extra-x86_64/php.ini.patch

---+
 /PKGBUILD |  668 
 /apache.conf  |   26 +
 /apache.patch |   40 ++
 /generate_patches |   96 +
 /php-fpm.install  |   18 +
 /php-fpm.patch|  148 
 /php-fpm.tmpfiles |2 
 /php.ini.patch|  194 +++
 extra-i686/PKGBUILD   |  334 
 extra-i686/apache.conf|   13 
 extra-i686/apache.patch   |   20 -
 extra-i686/generate_patches   |   48 --
 extra-i686/php-fpm.install|9 
 extra-i686/php-fpm.patch  |   74 
 extra-i686/php-fpm.tmpfiles   |1 
 extra-i686/php.ini.patch  |   97 -
 extra-x86_64/PKGBUILD |  334 
 extra-x86_64/apache.conf  |   13 
 extra-x86_64/apache.patch |   20 -
 extra-x86_64/generate_patches |   48 --
 extra-x86_64/php-fpm.install  |9 
 extra-x86_64/php-fpm.patch|   74 
 extra-x86_64/php-fpm.tmpfiles |1 
 extra-x86_64/php.ini.patch|   97 -
 24 files changed, 1192 insertions(+), 1192 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-08-21 05:41:10 UTC (rev 274511)
+++ extra-i686/PKGBUILD 2016-08-21 05:41:43 UTC (rev 274512)
@@ -1,334 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz 
-
-pkgbase=php
-pkgname=('php'
- 'php-cgi'
- 'php-apache'
- 'php-fpm'
- 'php-embed'
- 'php-phpdbg'
- 'php-dblib'
- 'php-enchant'
- 'php-gd'
- 'php-imap'
- 'php-intl'
- 'php-mcrypt'
- 'php-odbc'
- 'php-pgsql'
- 'php-pspell'
- 'php-snmp'
- 'php-sqlite'
- 'php-tidy'
- 'php-xsl')
-pkgver=7.0.9
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('PHP')
-url='http://www.php.net'
-makedepends=('apache' 'aspell' 'c-client' 'db' 'enchant' 'gd' 'gmp' 'icu' 
'libmcrypt' 'libxslt' 'libzip' 'net-snmp'
- 'postgresql-libs' 'sqlite' 'systemd' 'tidy' 'unixodbc' 'curl' 
'libtool' 'postfix' 'freetds')
-checkdepends=('procps-ng')
-source=("https://www.php.net/distributions/${pkgbase}-${pkgver}.tar.xz"{,.asc}
-'apache.patch' 'apache.conf' 'php-fpm.patch' 'php-fpm.tmpfiles' 
'php.ini.patch')
-sha256sums=('970c322ba3e472cb0264b8ba9d4d92e87918da5d0cca53c4aba2a70545b8626d'
-'SKIP'
-'be0cf25ed81f3b6b9098cb349907b912aad1f00bf0a4c37afdef6cfdc9baf0ab'
-'ebc0af1ef3a6baccb013d0ccb29923895a7b22ff2d032e3bba802dc6328301ce'
-'136e197384255420c73678aef812e70aa86320f6dbefcc5a952df1a65fdd53fa'
-'640dba0d960bfeaae9ad38d2826d3f6b5d6c175a4d3e16664eefff29141faad5'
-

[arch-commits] Commit in php/trunk (PKGBUILD php.ini.patch)

2016-08-20 Thread Pierre Schmitz
Date: Sunday, August 21, 2016 @ 05:41:10
  Author: pierre
Revision: 274511

upgpkg: php 7.0.10-1

Modified:
  php/trunk/PKGBUILD
  php/trunk/php.ini.patch

---+
 PKGBUILD  |6 +++---
 php.ini.patch |4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-21 05:39:32 UTC (rev 274510)
+++ PKGBUILD2016-08-21 05:41:10 UTC (rev 274511)
@@ -21,7 +21,7 @@
  'php-sqlite'
  'php-tidy'
  'php-xsl')
-pkgver=7.0.9
+pkgver=7.0.10
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('PHP')
@@ -31,13 +31,13 @@
 checkdepends=('procps-ng')
 source=("https://www.php.net/distributions/${pkgbase}-${pkgver}.tar.xz"{,.asc}
 'apache.patch' 'apache.conf' 'php-fpm.patch' 'php-fpm.tmpfiles' 
'php.ini.patch')
-sha256sums=('970c322ba3e472cb0264b8ba9d4d92e87918da5d0cca53c4aba2a70545b8626d'
+sha256sums=('348476ff7ba8d95a1e28e1059430c10470c5f8110f6d9133d30153dda4cdf56a'
 'SKIP'
 'be0cf25ed81f3b6b9098cb349907b912aad1f00bf0a4c37afdef6cfdc9baf0ab'
 'ebc0af1ef3a6baccb013d0ccb29923895a7b22ff2d032e3bba802dc6328301ce'
 '136e197384255420c73678aef812e70aa86320f6dbefcc5a952df1a65fdd53fa'
 '640dba0d960bfeaae9ad38d2826d3f6b5d6c175a4d3e16664eefff29141faad5'
-'97523d8407cde123c8f63466707c6d30e06aca9b83a815644de92275bb06c12d')
+'f6888d92cf9aab2aa690f4f5343e07173fd1c3793bfe0a5603d30155de57ba36')
 validpgpkeys=('1A4E8B7277C42E53DBA9C7B9BCAA30EA9C0D5763'
   '6E4F6AB321FDC07F2C332E3AC2BF0BC433CFC8B3')
 

Modified: php.ini.patch
===
--- php.ini.patch   2016-08-21 05:39:32 UTC (rev 274510)
+++ php.ini.patch   2016-08-21 05:41:10 UTC (rev 274511)
@@ -1,6 +1,6 @@
 --- php.ini-production.orig
 +++ php.ini-production
-@@ -719,7 +719,7 @@
+@@ -718,7 +718,7 @@
  
  ; Directory in which the loadable extensions (modules) reside.
  ; http://php.net/extension-dir
@@ -9,7 +9,7 @@
  ; On windows:
  ; extension_dir = "ext"
  
-@@ -857,47 +857,44 @@
+@@ -856,47 +856,44 @@
  ; If you only provide the name of the extension, PHP will look for it in its
  ; default extension directory.
  ;


[arch-commits] Commit in kde-l10n/trunk (PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:39:06
  Author: felixonmars
Revision: 274509

upgpkg: kde-l10n 16.08.0-1

Upstream release

Modified:
  kde-l10n/trunk/PKGBUILD

--+
 PKGBUILD |  112 ++---
 1 file changed, 56 insertions(+), 56 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-21 05:37:53 UTC (rev 274508)
+++ PKGBUILD2016-08-21 05:39:06 UTC (rev 274509)
@@ -4,7 +4,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgbase=kde-l10n
-pkgver=16.04.3
+pkgver=16.08.0
 pkgrel=1
 arch=('any')
 url='http://www.kde.org/'
@@ -84,61 +84,61 @@
   }"
 done
 
-md5sums=('aee1398dec0b1fca101d05611c690dbd'
- '5df9b24b37124c797fb008bc41af4128'
- '542fb0154069c77fac4829b6af9d90f6'
- 'd1c842848b1b3007d98715e256ec35ae'
- 'c3e302608bc7aadf0bf672422359c74b'
- '2c6e885d8570f5700eb0499ab49f198c'
- 'fe2f97cea9bd82a7e1a04d964ef25ba7'
- 'e46189c14f4a5e9a9bd7fe1a9e34e2ac'
- 'bd43b4e5cae02cf2439da62be4e4d646'
- '1262bd08ae456ff65f47a6dffb238a8e'
- '0d011c09edcd8815e02becc011303500'
- '74ede69039275d47109b02e4117d7598'
- 'e52bce6ea03c892cf7b76b98eb42ff49'
- '063f4fec3fb383b227c52710cc1bff1a'
- '7af3e82e1da4f453e19b89b731c79fcb'
- '0fc9c4f7ecef9e8500f54396af1296b4'
- '69ac7c5a4e716a26b9aae0d0bf326b90'
- '193e1116cc700d1a46eff3231d290fcc'
- '7758ce99825223fa4c52c20a11560f4b'
- 'a90546542659a280ff0f8e21c2d6bea0'
- '884fdee7e203e22b3ad0a909de4d128c'
- '650c1921500e757f8e274329d1e2b2fa'
- '63c17676af7d6f353c5a10cc645cbd36'
- 'd2805b6a04dbd627c95e3e8f88924609'
- '35e1452b8f821031843097d704fbc257'
- '90afca22c4c4b5fbee7fc10f266ce38c'
- 'dba725f06e968fc8457fda145880a7f9'
- 'd4b2b2b82728ff70e7ed6367af036c85'
- '57ff56060452d3be124e9ab769e2a708'
- 'b3a7fa4fceb0637f8e04e684dc02790d'
- '53be1a81902486f870c50aec2522e0c6'
- 'e93f10435a9688b36bf2313ea1769fa6'
- '13ba1e3b668322ff7c4f1e53d0322719'
- '273d10d15fe4a94824ae43b02d5a025b'
- '2fc0b417ab261bc7452d14fcaee72331'
- '3f0dc698f3ec91f133c1db17760a0480'
- 'c2269a68bc9bd0d4902156784ab008da'
- '93ae819f0990c9d2c3815a3566f3ebfc'
- 'd9be3fe497b951faf7ec558b4ecd2104'
- '97362e17584278a356b4e1f17411f8fb'
- 'ec90c889549f57aa03aa105b99b407ec'
- '237df945b6923912e6cd34a4c868a046'
- '645a250a0e50489c1be1ff9cfd119ab6'
- 'b5a3a50ffa6e02267a158fdaaa63ec26'
- 'e128e0a3e09326931c4f06ffdb2cdeb2'
- 'b01d956de316ab7d27eae12ef928e7e6'
- 'b9c85a546c060d4608c10a89cf460734'
- '6db45d705beacbcee5aab4e96f9bc907'
- '32bd10abf8e7d7080fa7f10f41843dee'
- '3667220836a938132d94e12e157f1188'
- '23d7e11323221f2b42712489ecb45589'
- '8e0bbf31003a752a9db137f6a6492f08'
- '7a79e491965cbe2b707f916d3e00a394'
- 'eebce77ba3d22b0c9d7048b6385fd946'
- '8dc83a08bb93690d76e560968ea2d4f3')
+md5sums=('92103905145c89e98d3189689bb5d0ae'
+ '6700dfa3c9462c2d790e525efdb8cbed'
+ 'e45a0550caa0e0e552116557aefedd31'
+ '3117f6bb0b413b955a37af60838675b4'
+ '1d03b11c22e0511a90024ee56fc64645'
+ '9c69d1682dd715ebd78470c1d42562ed'
+ '683edaf6dc1a11c6dd10515ca5793fa2'
+ 'edceb743472cf82a66e7f185b91227de'
+ 'd650ec76b22e1a4b12e9dc1c1f75135c'
+ '5e283f9e4956f305d03785133d900094'
+ '12411da965bbe05c83e47b277004dbd2'
+ '817fc2f0c1a9cd398e496e9b50c5164b'
+ '1d15768f581b1f66de0edc42c9393e1c'
+ '58706be160d34f914c2e6665c87e3c0e'
+ '2ddec375ca3d06686c453968de84f96a'
+ '6fa60535d1ff232d0aa362379d1dd78c'
+ '1936bfee6b9ca42d55d6d17e27e18515'
+ '3add3a1153ecfea5b62e106d9c0118bc'
+ '52cc7ffcf304851a531b8b30c5a6df73'
+ 'dad3cdcf9ccb515d17c9b53c1fef14bf'
+ '337108310d6964bf583608dbf15ca5dc'
+ '04955f6b89f83a0cb1a440884a9a16c3'
+ '6891c6cd00ae6399c8944cbc89891ee9'
+ '7c2c0e044bcacd138543ea419bd713e7'
+ '3f63e088011ebcde9df7d77ea5611c66'
+ '8db201be9e15c2eb7512f0483c545590'
+ 'e02ec168f558fc19f8df2692e7d3bb3a'
+ 'c588e88f9225441cd7990fe26ddd7d4e'
+ '37a96dfcb062588727a998f08f414541'
+ 'be47adc03e81846b21f34e7f711315e9'
+ 'b22abe6d57cc3d2ce25032c0e0df9eb7'
+ '936c90c41e4ba55c2bda6b6d1db2dc55'
+ '4a4b1774e23ab99fa695b3d62322431b'
+ '7ca324e130c43ecaedcacdab77b7eee4'
+ '898df27e3938e0b4ce9a9fe92207a449'
+ 'b30de5beeffc3f03ef76a20d3c218b18'
+ '576a779bcc5d950393b0a94e8fc4fea0'
+ '0b90d658b35598452950dbfd209feddf'
+ '7291239ee9c70c8750165efc7b00c66d'
+ '2eabdd71d49cf3166e1a0930289a829e'
+ 

[arch-commits] Commit in kde-l10n/repos (testing-any testing-any/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:39:32
  Author: felixonmars
Revision: 274510

archrelease: copy trunk to testing-any

Added:
  kde-l10n/repos/testing-any/
  kde-l10n/repos/testing-any/PKGBUILD
(from rev 274509, kde-l10n/trunk/PKGBUILD)

--+
 PKGBUILD |  174 +
 1 file changed, 174 insertions(+)

Copied: kde-l10n/repos/testing-any/PKGBUILD (from rev 274509, 
kde-l10n/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2016-08-21 05:39:32 UTC (rev 274510)
@@ -0,0 +1,174 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=kde-l10n
+pkgver=16.08.0
+pkgrel=1
+arch=('any')
+url='http://www.kde.org/'
+license=('GPL')
+makedepends=('extra-cmake-modules' 'kdoctools' 'kdelibs' 'automoc4' 'kconfig' 
'ki18n' 'qt5-tools' 'python')
+options=('docs')
+
+_languages=(
+  'ar "Arabic"'
+  'ast"Asturian"'
+  'bg "Bulgarian"'
+  'bs "Bosnian"'
+  'ca "Catalan"'
+  'ca@valencia "Catalan (Valencian)"'
+  'cs "Czech"'
+  'da "Danish"'
+  'de "German"'
+  'el "Greek"'
+  'en_GB  "British English"'
+  'eo "Esperanto"'
+  'es "Spanish"'
+  'et "Estonian"'
+  'eu "Basque"'
+  'fa "Farsi"'
+  'fi "Finnish"'
+  'fr "French"'
+  'ga "Irish"'
+  'gl "Galician"'
+  'he "Hebrew"'
+  'hi "Hindi"'
+  'hr "Croatian"'
+  'hu "Hungarian"'
+  'ia "Interlingua"'
+  'id "Indonesian"'
+  'is "Icelandic"'
+  'it "Italian"'
+  'ja "Japanese"'
+  'kk "Kazakh"'
+  'km "Khmer"'
+  'ko "Korean"'
+  'lt "Lithuanian"'
+  'lv "Latvian"'
+  'mr "Marathi"'
+  'nb "Norwegian Bokmal"'
+  'nds"Low Saxon"'
+  'nl "Dutch"'
+  'nn "Norwegian Nynorsk"'
+  'pa "Panjabi/Punjabi"'
+  'pl "Polish"'
+  'pt "Portuguese"'
+  'pt_BR  "Brazilian Portuguese"'
+  'ro "Romanian"'
+  'ru "Russian"'
+  'sk "Slovak"'
+  'sl "Slovenian"'
+  'sr "Serbian"'
+  'sv "Swedish"'
+  'tr "Turkish"'
+  'ug "Uyghur"'
+  'uk "Ukrainian"'
+  'wa "Walloon"'
+  'zh_CN  "Chinese Simplified"'
+  'zh_TW  "Chinese Traditional"'
+)
+
+pkgname=()
+source=()
+
+for _lang in "${_languages[@]}"; do
+  _locale=${_lang%% *}
+  _pkgname=kde-l10n-${_locale,,}
+  
+  pkgname+=($_pkgname)
+  
source+=("http://download.kde.org/stable/applications/$pkgver/src/$pkgbase/$pkgbase-$_locale-$pkgver.tar.xz;)
+  eval "package_$_pkgname() {
+_package $_lang
+  }"
+done
+
+md5sums=('92103905145c89e98d3189689bb5d0ae'
+ '6700dfa3c9462c2d790e525efdb8cbed'
+ 'e45a0550caa0e0e552116557aefedd31'
+ '3117f6bb0b413b955a37af60838675b4'
+ '1d03b11c22e0511a90024ee56fc64645'
+ '9c69d1682dd715ebd78470c1d42562ed'
+ '683edaf6dc1a11c6dd10515ca5793fa2'
+ 'edceb743472cf82a66e7f185b91227de'
+ 'd650ec76b22e1a4b12e9dc1c1f75135c'
+ '5e283f9e4956f305d03785133d900094'
+ '12411da965bbe05c83e47b277004dbd2'
+ '817fc2f0c1a9cd398e496e9b50c5164b'
+ '1d15768f581b1f66de0edc42c9393e1c'
+ '58706be160d34f914c2e6665c87e3c0e'
+ '2ddec375ca3d06686c453968de84f96a'
+ '6fa60535d1ff232d0aa362379d1dd78c'
+ '1936bfee6b9ca42d55d6d17e27e18515'
+ '3add3a1153ecfea5b62e106d9c0118bc'
+ '52cc7ffcf304851a531b8b30c5a6df73'
+ 'dad3cdcf9ccb515d17c9b53c1fef14bf'
+ '337108310d6964bf583608dbf15ca5dc'
+ '04955f6b89f83a0cb1a440884a9a16c3'
+ '6891c6cd00ae6399c8944cbc89891ee9'
+ '7c2c0e044bcacd138543ea419bd713e7'
+ '3f63e088011ebcde9df7d77ea5611c66'
+ '8db201be9e15c2eb7512f0483c545590'
+ 'e02ec168f558fc19f8df2692e7d3bb3a'
+ 'c588e88f9225441cd7990fe26ddd7d4e'
+ '37a96dfcb062588727a998f08f414541'
+ 'be47adc03e81846b21f34e7f711315e9'
+ 'b22abe6d57cc3d2ce25032c0e0df9eb7'
+ '936c90c41e4ba55c2bda6b6d1db2dc55'
+ '4a4b1774e23ab99fa695b3d62322431b'
+ '7ca324e130c43ecaedcacdab77b7eee4'
+ '898df27e3938e0b4ce9a9fe92207a449'
+ 'b30de5beeffc3f03ef76a20d3c218b18'
+ '576a779bcc5d950393b0a94e8fc4fea0'
+ '0b90d658b35598452950dbfd209feddf'
+ '7291239ee9c70c8750165efc7b00c66d'
+ '2eabdd71d49cf3166e1a0930289a829e'
+ '4ea6116add632aeaa72056cc6f511c81'
+ '45e5323c09874ee8ecf5c9437fae48ec'
+ '987fb1e0c1c481fe2246fd821113fa4c'
+ 'c26964b41b8c4714c0f41f746fdcd45e'
+ '8e1e3ef649d980756126e86393c99237'
+ '95875ef8c7ad16349559c8aba35e7412'
+ 'f2074158016a3b6d2b3792b5f22adb02'
+ '9f16c4c7f0dfc28d2f360245d518b074'
+ 'b65f5b1f8f45037493a09e84ad389179'
+ 'b82cf1105b30d1d8f3e09bb61316eac4'
+  

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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:37:53
  Author: felixonmars
Revision: 274508

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

Added:
  kdewebdev/repos/testing-i686/
  kdewebdev/repos/testing-i686/PKGBUILD
(from rev 274507, kdewebdev/trunk/PKGBUILD)
  kdewebdev/repos/testing-x86_64/
  kdewebdev/repos/testing-x86_64/PKGBUILD
(from rev 274507, kdewebdev/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   69 ++
 testing-x86_64/PKGBUILD |   69 ++
 2 files changed, 138 insertions(+)

Copied: kdewebdev/repos/testing-i686/PKGBUILD (from rev 274507, 
kdewebdev/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:37:53 UTC (rev 274508)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=kdewebdev
+pkgname=('kdewebdev-kfilereplace'
+ 'kdewebdev-kimagemapeditor'
+ 'kdewebdev-klinkstatus'
+ 'kdewebdev-kommander')
+pkgver=16.08.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.kde.org'
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdewebdev')
+makedepends=('cmake' 'automoc4' 'ruby' 'tidy' 'kdepimlibs4' 'boost')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;)
+sha1sums=('416ef3b58cf0d3bfe8a71a212c8b64329b3b2b2f')
+
+build() {
+   cd $srcdir
+   mkdir -p build
+   cd build
+   cmake ../${pkgbase}-${pkgver} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DKDE4_BUILD_TESTS=OFF \
+   -DCMAKE_SKIP_RPATH=ON \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package_kdewebdev-kfilereplace() {
+   pkgdesc='Search & Replace Tool'
+   depends=('kdebase-runtime')
+   url="http://kde.org/applications/utilities/kfilereplace/;
+   cd $srcdir/build/kfilereplace
+   make DESTDIR=$pkgdir install
+   cd $srcdir/build/doc/kfilereplace
+   make DESTDIR=$pkgdir install
+}
+
+package_kdewebdev-kimagemapeditor() {
+   pkgdesc='HTML Image Map Editor'
+   depends=('kdebase-runtime')
+url="http://www.kde.org/applications/development/kimagemapeditor/;
+   cd $srcdir/build/kimagemapeditor
+   make DESTDIR=$pkgdir install
+   cd $srcdir/build/doc/kimagemapeditor
+   make DESTDIR=$pkgdir install
+}
+
+package_kdewebdev-klinkstatus() {
+   pkgdesc='Link Checker'
+   depends=('kdebase-runtime' 'tidy')
+url="http://www.kde.org/applications/development/klinkstatus/;
+   cd $srcdir/build/klinkstatus
+   make DESTDIR=$pkgdir install
+   cd $srcdir/build/doc/klinkstatus
+   make DESTDIR=$pkgdir install
+}
+
+package_kdewebdev-kommander() {
+   pkgdesc='Executor for Kommander dialogs'
+   depends=('kdebase-runtime')
+url="http://www.kde.org/applications/development/kommander/;
+   cd $srcdir/build/kommander
+   make DESTDIR=$pkgdir install
+}

Copied: kdewebdev/repos/testing-x86_64/PKGBUILD (from rev 274507, 
kdewebdev/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:37:53 UTC (rev 274508)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=kdewebdev
+pkgname=('kdewebdev-kfilereplace'
+ 'kdewebdev-kimagemapeditor'
+ 'kdewebdev-klinkstatus'
+ 'kdewebdev-kommander')
+pkgver=16.08.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.kde.org'
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdewebdev')
+makedepends=('cmake' 'automoc4' 'ruby' 'tidy' 'kdepimlibs4' 'boost')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;)
+sha1sums=('416ef3b58cf0d3bfe8a71a212c8b64329b3b2b2f')
+
+build() {
+   cd $srcdir
+   mkdir -p build
+   cd build
+   cmake ../${pkgbase}-${pkgver} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DKDE4_BUILD_TESTS=OFF \
+   -DCMAKE_SKIP_RPATH=ON \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package_kdewebdev-kfilereplace() {
+   pkgdesc='Search & Replace Tool'
+   depends=('kdebase-runtime')
+   url="http://kde.org/applications/utilities/kfilereplace/;
+   cd $srcdir/build/kfilereplace
+   make DESTDIR=$pkgdir install
+   cd $srcdir/build/doc/kfilereplace
+   make DESTDIR=$pkgdir install
+}
+
+package_kdewebdev-kimagemapeditor() {
+   pkgdesc='HTML Image Map Editor'
+   depends=('kdebase-runtime')
+

[arch-commits] Commit in kdeutils-sweeper/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:37:18
  Author: felixonmars
Revision: 274506

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

Added:
  kdeutils-sweeper/repos/testing-i686/
  kdeutils-sweeper/repos/testing-i686/PKGBUILD
(from rev 274505, kdeutils-sweeper/trunk/PKGBUILD)
  kdeutils-sweeper/repos/testing-x86_64/
  kdeutils-sweeper/repos/testing-x86_64/PKGBUILD
(from rev 274505, kdeutils-sweeper/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   34 ++
 testing-x86_64/PKGBUILD |   34 ++
 2 files changed, 68 insertions(+)

Copied: kdeutils-sweeper/repos/testing-i686/PKGBUILD (from rev 274505, 
kdeutils-sweeper/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:37:18 UTC (rev 274506)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeutils-sweeper
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='System Cleaner'
+url='http://kde.org/applications/utilities/sweeper'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+groups=('kde-applications' 'kdeutils')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/sweeper-${pkgver}.tar.xz;)
+sha1sums=('f3687ae75bbd2860deb4a795d96d67fa6eabea58')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../sweeper-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: kdeutils-sweeper/repos/testing-x86_64/PKGBUILD (from rev 274505, 
kdeutils-sweeper/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:37:18 UTC (rev 274506)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeutils-sweeper
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='System Cleaner'
+url='http://kde.org/applications/utilities/sweeper'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+groups=('kde-applications' 'kdeutils')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/sweeper-${pkgver}.tar.xz;)
+sha1sums=('f3687ae75bbd2860deb4a795d96d67fa6eabea58')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../sweeper-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in kdewebdev (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:37:28
  Author: felixonmars
Revision: 274507

upgpkg: kdewebdev 16.08.0-1

Upstream release

Added:
  kdewebdev/trunk/
  kdewebdev/trunk/PKGBUILD
Deleted:
  kdewebdev/trunk/

--+
 PKGBUILD |   69 +
 1 file changed, 69 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:37:28 UTC (rev 274507)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=kdewebdev
+pkgname=('kdewebdev-kfilereplace'
+ 'kdewebdev-kimagemapeditor'
+ 'kdewebdev-klinkstatus'
+ 'kdewebdev-kommander')
+pkgver=16.08.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.kde.org'
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdewebdev')
+makedepends=('cmake' 'automoc4' 'ruby' 'tidy' 'kdepimlibs4' 'boost')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;)
+sha1sums=('416ef3b58cf0d3bfe8a71a212c8b64329b3b2b2f')
+
+build() {
+   cd $srcdir
+   mkdir -p build
+   cd build
+   cmake ../${pkgbase}-${pkgver} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DKDE4_BUILD_TESTS=OFF \
+   -DCMAKE_SKIP_RPATH=ON \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package_kdewebdev-kfilereplace() {
+   pkgdesc='Search & Replace Tool'
+   depends=('kdebase-runtime')
+   url="http://kde.org/applications/utilities/kfilereplace/;
+   cd $srcdir/build/kfilereplace
+   make DESTDIR=$pkgdir install
+   cd $srcdir/build/doc/kfilereplace
+   make DESTDIR=$pkgdir install
+}
+
+package_kdewebdev-kimagemapeditor() {
+   pkgdesc='HTML Image Map Editor'
+   depends=('kdebase-runtime')
+url="http://www.kde.org/applications/development/kimagemapeditor/;
+   cd $srcdir/build/kimagemapeditor
+   make DESTDIR=$pkgdir install
+   cd $srcdir/build/doc/kimagemapeditor
+   make DESTDIR=$pkgdir install
+}
+
+package_kdewebdev-klinkstatus() {
+   pkgdesc='Link Checker'
+   depends=('kdebase-runtime' 'tidy')
+url="http://www.kde.org/applications/development/klinkstatus/;
+   cd $srcdir/build/klinkstatus
+   make DESTDIR=$pkgdir install
+   cd $srcdir/build/doc/klinkstatus
+   make DESTDIR=$pkgdir install
+}
+
+package_kdewebdev-kommander() {
+   pkgdesc='Executor for Kommander dialogs'
+   depends=('kdebase-runtime')
+url="http://www.kde.org/applications/development/kommander/;
+   cd $srcdir/build/kommander
+   make DESTDIR=$pkgdir install
+}


Property changes on: kdewebdev/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in kdeutils-sweeper (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:35:33
  Author: felixonmars
Revision: 274505

upgpkg: kdeutils-sweeper 16.08.0-1

Upstream release

Added:
  kdeutils-sweeper/trunk/
  kdeutils-sweeper/trunk/PKGBUILD
Deleted:
  kdeutils-sweeper/trunk/

--+
 PKGBUILD |   34 ++
 1 file changed, 34 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:35:33 UTC (rev 274505)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeutils-sweeper
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='System Cleaner'
+url='http://kde.org/applications/utilities/sweeper'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+groups=('kde-applications' 'kdeutils')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/sweeper-${pkgver}.tar.xz;)
+sha1sums=('f3687ae75bbd2860deb4a795d96d67fa6eabea58')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../sweeper-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: kdeutils-sweeper/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in print-manager/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:34:47
  Author: felixonmars
Revision: 274504

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

Added:
  print-manager/repos/testing-i686/
  print-manager/repos/testing-i686/PKGBUILD
(from rev 274503, print-manager/trunk/PKGBUILD)
  print-manager/repos/testing-x86_64/
  print-manager/repos/testing-x86_64/PKGBUILD
(from rev 274503, print-manager/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   35 +++
 testing-x86_64/PKGBUILD |   35 +++
 2 files changed, 70 insertions(+)

Copied: print-manager/repos/testing-i686/PKGBUILD (from rev 274503, 
print-manager/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:34:47 UTC (rev 274504)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=print-manager
+pkgver=16.08.0
+pkgrel=1
+pkgdesc="A tool for managing print jobs and printers"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/applications/utilities/'
+license=('GPL' 'LGPL' 'FDL')
+depends=('libcups' 'kcmutils')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools' 'plasma-framework')
+optdepends=('system-config-printer: auto-detect the printer driver')
+replaces=('kdeutils-print-manager')
+conflicts=('kdeutils-print-manager')
+groups=('kde-applications' 'kdeutils')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/print-manager-${pkgver}.tar.xz;)
+sha1sums=('68007655baf38282f5a1fc4bd290d589c5a13ab9')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../print-manager-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: print-manager/repos/testing-x86_64/PKGBUILD (from rev 274503, 
print-manager/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:34:47 UTC (rev 274504)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=print-manager
+pkgver=16.08.0
+pkgrel=1
+pkgdesc="A tool for managing print jobs and printers"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/applications/utilities/'
+license=('GPL' 'LGPL' 'FDL')
+depends=('libcups' 'kcmutils')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools' 'plasma-framework')
+optdepends=('system-config-printer: auto-detect the printer driver')
+replaces=('kdeutils-print-manager')
+conflicts=('kdeutils-print-manager')
+groups=('kde-applications' 'kdeutils')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/print-manager-${pkgver}.tar.xz;)
+sha1sums=('68007655baf38282f5a1fc4bd290d589c5a13ab9')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../print-manager-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in print-manager (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:34:26
  Author: felixonmars
Revision: 274503

upgpkg: print-manager 16.08.0-1

Upstream release

Added:
  print-manager/trunk/
  print-manager/trunk/PKGBUILD
Deleted:
  print-manager/trunk/

--+
 PKGBUILD |   35 +++
 1 file changed, 35 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:34:26 UTC (rev 274503)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=print-manager
+pkgver=16.08.0
+pkgrel=1
+pkgdesc="A tool for managing print jobs and printers"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/applications/utilities/'
+license=('GPL' 'LGPL' 'FDL')
+depends=('libcups' 'kcmutils')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools' 'plasma-framework')
+optdepends=('system-config-printer: auto-detect the printer driver')
+replaces=('kdeutils-print-manager')
+conflicts=('kdeutils-print-manager')
+groups=('kde-applications' 'kdeutils')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/print-manager-${pkgver}.tar.xz;)
+sha1sums=('68007655baf38282f5a1fc4bd290d589c5a13ab9')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../print-manager-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


Property changes on: print-manager/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:34:02
  Author: felixonmars
Revision: 274502

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

Added:
  kwalletmanager/repos/testing-i686/
  kwalletmanager/repos/testing-i686/PKGBUILD
(from rev 274501, kwalletmanager/trunk/PKGBUILD)
  kwalletmanager/repos/testing-x86_64/
  kwalletmanager/repos/testing-x86_64/PKGBUILD
(from rev 274501, kwalletmanager/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   39 +++
 testing-x86_64/PKGBUILD |   39 +++
 2 files changed, 78 insertions(+)

Copied: kwalletmanager/repos/testing-i686/PKGBUILD (from rev 274501, 
kwalletmanager/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:34:02 UTC (rev 274502)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kwalletmanager
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Wallet management tool'
+arch=(i686 x86_64)
+url='http://www.kde.org/applications/system/kwalletmanager/'
+license=(LGPL)
+depends=(kdelibs4support hicolor-icon-theme)
+makedepends=(extra-cmake-modules python kdoctools kdesignerplugin kcmutils)
+conflicts=(kdeutils-kwalletmanager)
+replaces=(kdeutils-kwalletmanager)
+groups=(kde-applications kdeutils)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('e865e455ae7029726a6db4297bef2971')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+

Copied: kwalletmanager/repos/testing-x86_64/PKGBUILD (from rev 274501, 
kwalletmanager/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:34:02 UTC (rev 274502)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kwalletmanager
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Wallet management tool'
+arch=(i686 x86_64)
+url='http://www.kde.org/applications/system/kwalletmanager/'
+license=(LGPL)
+depends=(kdelibs4support hicolor-icon-theme)
+makedepends=(extra-cmake-modules python kdoctools kdesignerplugin kcmutils)
+conflicts=(kdeutils-kwalletmanager)
+replaces=(kdeutils-kwalletmanager)
+groups=(kde-applications kdeutils)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('e865e455ae7029726a6db4297bef2971')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+


[arch-commits] Commit in kwalletmanager (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:33:41
  Author: felixonmars
Revision: 274501

upgpkg: kwalletmanager 16.08.0-1

Upstream release

Added:
  kwalletmanager/trunk/
  kwalletmanager/trunk/PKGBUILD
Deleted:
  kwalletmanager/trunk/

--+
 PKGBUILD |   39 +++
 1 file changed, 39 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:33:41 UTC (rev 274501)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kwalletmanager
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Wallet management tool'
+arch=(i686 x86_64)
+url='http://www.kde.org/applications/system/kwalletmanager/'
+license=(LGPL)
+depends=(kdelibs4support hicolor-icon-theme)
+makedepends=(extra-cmake-modules python kdoctools kdesignerplugin kcmutils)
+conflicts=(kdeutils-kwalletmanager)
+replaces=(kdeutils-kwalletmanager)
+groups=(kde-applications kdeutils)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('e865e455ae7029726a6db4297bef2971')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+


Property changes on: kwalletmanager/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:33:29
  Author: felixonmars
Revision: 274500

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

Added:
  ktimer/repos/testing-i686/
  ktimer/repos/testing-i686/PKGBUILD
(from rev 274499, ktimer/trunk/PKGBUILD)
  ktimer/repos/testing-x86_64/
  ktimer/repos/testing-x86_64/PKGBUILD
(from rev 274499, ktimer/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   34 ++
 testing-x86_64/PKGBUILD |   34 ++
 2 files changed, 68 insertions(+)

Copied: ktimer/repos/testing-i686/PKGBUILD (from rev 274499, 
ktimer/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:33:29 UTC (rev 274500)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=ktimer
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Countdown Launcher'
+url='http://kde.org/applications/utilities/ktimer/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kio' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+conflicts=('kdeutils-ktimer')
+replaces=('kdeutils-ktimer')
+groups=('kde-applications' 'kdeutils')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/ktimer-${pkgver}.tar.xz;)
+sha1sums=('42bc1c2ce25010f322e7eea7a4b06f24cbbf475a')
+
+build() {
+  cd "${srcdir}"
+  mkdir -p build
+  cd build
+  cmake ../ktimer-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: ktimer/repos/testing-x86_64/PKGBUILD (from rev 274499, 
ktimer/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:33:29 UTC (rev 274500)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=ktimer
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Countdown Launcher'
+url='http://kde.org/applications/utilities/ktimer/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kio' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+conflicts=('kdeutils-ktimer')
+replaces=('kdeutils-ktimer')
+groups=('kde-applications' 'kdeutils')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/ktimer-${pkgver}.tar.xz;)
+sha1sums=('42bc1c2ce25010f322e7eea7a4b06f24cbbf475a')
+
+build() {
+  cd "${srcdir}"
+  mkdir -p build
+  cd build
+  cmake ../ktimer-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}


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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:32:59
  Author: felixonmars
Revision: 274498

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

Added:
  kteatime/repos/testing-i686/
  kteatime/repos/testing-i686/PKGBUILD
(from rev 274497, kteatime/trunk/PKGBUILD)
  kteatime/repos/testing-x86_64/
  kteatime/repos/testing-x86_64/PKGBUILD
(from rev 274497, kteatime/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   33 +
 testing-x86_64/PKGBUILD |   33 +
 2 files changed, 66 insertions(+)

Copied: kteatime/repos/testing-i686/PKGBUILD (from rev 274497, 
kteatime/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:32:59 UTC (rev 274498)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kteatime
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Tea Cooker'
+url='http://kde.org/applications/games/kteatime/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeutils')
+depends=('knotifyconfig' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+conflicts=('kdetoys-kteatime')
+replaces=('kdetoys-kteatime')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kteatime-${pkgver}.tar.xz;)
+sha1sums=('6fffad9c8ebffc8998ad0c3140ef744802aa4575')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../kteatime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kteatime/repos/testing-x86_64/PKGBUILD (from rev 274497, 
kteatime/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:32:59 UTC (rev 274498)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kteatime
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Tea Cooker'
+url='http://kde.org/applications/games/kteatime/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeutils')
+depends=('knotifyconfig' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+conflicts=('kdetoys-kteatime')
+replaces=('kdetoys-kteatime')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kteatime-${pkgver}.tar.xz;)
+sha1sums=('6fffad9c8ebffc8998ad0c3140ef744802aa4575')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../kteatime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}


[arch-commits] Commit in ktimer (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:33:08
  Author: felixonmars
Revision: 274499

upgpkg: ktimer 16.08.0-1

Upstream release

Added:
  ktimer/trunk/
  ktimer/trunk/PKGBUILD
Deleted:
  ktimer/trunk/

--+
 PKGBUILD |   34 ++
 1 file changed, 34 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:33:08 UTC (rev 274499)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=ktimer
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Countdown Launcher'
+url='http://kde.org/applications/utilities/ktimer/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kio' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+conflicts=('kdeutils-ktimer')
+replaces=('kdeutils-ktimer')
+groups=('kde-applications' 'kdeutils')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/ktimer-${pkgver}.tar.xz;)
+sha1sums=('42bc1c2ce25010f322e7eea7a4b06f24cbbf475a')
+
+build() {
+  cd "${srcdir}"
+  mkdir -p build
+  cd build
+  cmake ../ktimer-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}


Property changes on: ktimer/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in kteatime (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:32:38
  Author: felixonmars
Revision: 274497

upgpkg: kteatime 16.08.0-1

Upstream release

Added:
  kteatime/trunk/
  kteatime/trunk/PKGBUILD
Deleted:
  kteatime/trunk/

--+
 PKGBUILD |   33 +
 1 file changed, 33 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:32:38 UTC (rev 274497)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kteatime
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Tea Cooker'
+url='http://kde.org/applications/games/kteatime/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeutils')
+depends=('knotifyconfig' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+conflicts=('kdetoys-kteatime')
+replaces=('kdetoys-kteatime')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kteatime-${pkgver}.tar.xz;)
+sha1sums=('6fffad9c8ebffc8998ad0c3140ef744802aa4575')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../kteatime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}


Property changes on: kteatime/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in kdeutils-kremotecontrol/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:31:16
  Author: felixonmars
Revision: 274496

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

Added:
  kdeutils-kremotecontrol/repos/testing-i686/
  kdeutils-kremotecontrol/repos/testing-i686/PKGBUILD
(from rev 274495, kdeutils-kremotecontrol/trunk/PKGBUILD)
  kdeutils-kremotecontrol/repos/testing-x86_64/
  kdeutils-kremotecontrol/repos/testing-x86_64/PKGBUILD
(from rev 274495, kdeutils-kremotecontrol/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   34 ++
 testing-x86_64/PKGBUILD |   34 ++
 2 files changed, 68 insertions(+)

Copied: kdeutils-kremotecontrol/repos/testing-i686/PKGBUILD (from rev 274495, 
kdeutils-kremotecontrol/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:31:16 UTC (rev 274496)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeutils-kremotecontrol
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Configure your remote controls for use with applications'
+url='http://kde.org/applications/utilities/kremotecontrol/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+groups=('kde-applications' 'kdeutils')
+replaces=('kdeutils-kdelirc')
+conflicts=('kdeutils-kdelirc')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kremotecontrol-${pkgver}.tar.xz;)
+sha1sums=('ed86a001120c9ed5c9433d9a3e9c4ebe13fb612c')
+
+build() {
+  cd "${srcdir}"
+  mkdir -p build
+  cd build
+  cmake ../kremotecontrol-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeutils-kremotecontrol/repos/testing-x86_64/PKGBUILD (from rev 274495, 
kdeutils-kremotecontrol/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:31:16 UTC (rev 274496)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeutils-kremotecontrol
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Configure your remote controls for use with applications'
+url='http://kde.org/applications/utilities/kremotecontrol/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+groups=('kde-applications' 'kdeutils')
+replaces=('kdeutils-kdelirc')
+conflicts=('kdeutils-kdelirc')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kremotecontrol-${pkgver}.tar.xz;)
+sha1sums=('ed86a001120c9ed5c9433d9a3e9c4ebe13fb612c')
+
+build() {
+  cd "${srcdir}"
+  mkdir -p build
+  cd build
+  cmake ../kremotecontrol-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}


[arch-commits] Commit in kdeutils-kremotecontrol (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:30:48
  Author: felixonmars
Revision: 274495

upgpkg: kdeutils-kremotecontrol 16.08.0-1

Upstream release

Added:
  kdeutils-kremotecontrol/trunk/
  kdeutils-kremotecontrol/trunk/PKGBUILD
Deleted:
  kdeutils-kremotecontrol/trunk/

--+
 PKGBUILD |   34 ++
 1 file changed, 34 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:30:48 UTC (rev 274495)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeutils-kremotecontrol
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Configure your remote controls for use with applications'
+url='http://kde.org/applications/utilities/kremotecontrol/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+groups=('kde-applications' 'kdeutils')
+replaces=('kdeutils-kdelirc')
+conflicts=('kdeutils-kdelirc')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kremotecontrol-${pkgver}.tar.xz;)
+sha1sums=('ed86a001120c9ed5c9433d9a3e9c4ebe13fb612c')
+
+build() {
+  cd "${srcdir}"
+  mkdir -p build
+  cd build
+  cmake ../kremotecontrol-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}


Property changes on: kdeutils-kremotecontrol/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in kdeutils-kgpg/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:30:07
  Author: felixonmars
Revision: 274494

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

Added:
  kdeutils-kgpg/repos/testing-i686/
  kdeutils-kgpg/repos/testing-i686/PKGBUILD
(from rev 274493, kdeutils-kgpg/trunk/PKGBUILD)
  kdeutils-kgpg/repos/testing-x86_64/
  kdeutils-kgpg/repos/testing-x86_64/PKGBUILD
(from rev 274493, kdeutils-kgpg/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   34 ++
 testing-x86_64/PKGBUILD |   34 ++
 2 files changed, 68 insertions(+)

Copied: kdeutils-kgpg/repos/testing-i686/PKGBUILD (from rev 274493, 
kdeutils-kgpg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:30:07 UTC (rev 274494)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeutils-kgpg
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='A GnuPG frontend'
+url='http://kde.org/applications/utilities/kgpg/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4' 'boost')
+groups=('kde-applications' 'kdeutils')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kgpg-${pkgver}.tar.xz;)
+sha1sums=('ac17a34ef272b965edbb92397dc7bf031b8981ca')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kgpg-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeutils-kgpg/repos/testing-x86_64/PKGBUILD (from rev 274493, 
kdeutils-kgpg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:30:07 UTC (rev 274494)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeutils-kgpg
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='A GnuPG frontend'
+url='http://kde.org/applications/utilities/kgpg/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4' 'boost')
+groups=('kde-applications' 'kdeutils')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kgpg-${pkgver}.tar.xz;)
+sha1sums=('ac17a34ef272b965edbb92397dc7bf031b8981ca')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kgpg-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}


[arch-commits] Commit in kdeutils-kgpg (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:29:45
  Author: felixonmars
Revision: 274493

upgpkg: kdeutils-kgpg 16.08.0-1

Upstream release

Added:
  kdeutils-kgpg/trunk/
  kdeutils-kgpg/trunk/PKGBUILD
Deleted:
  kdeutils-kgpg/trunk/

--+
 PKGBUILD |   34 ++
 1 file changed, 34 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:29:45 UTC (rev 274493)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeutils-kgpg
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='A GnuPG frontend'
+url='http://kde.org/applications/utilities/kgpg/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4' 'boost')
+groups=('kde-applications' 'kdeutils')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kgpg-${pkgver}.tar.xz;)
+sha1sums=('ac17a34ef272b965edbb92397dc7bf031b8981ca')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kgpg-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}


Property changes on: kdeutils-kgpg/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:29:35
  Author: felixonmars
Revision: 274492

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

Added:
  kfloppy/repos/testing-i686/
  kfloppy/repos/testing-i686/PKGBUILD
(from rev 274491, kfloppy/trunk/PKGBUILD)
  kfloppy/repos/testing-x86_64/
  kfloppy/repos/testing-x86_64/PKGBUILD
(from rev 274491, kfloppy/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   37 +
 testing-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: kfloppy/repos/testing-i686/PKGBUILD (from rev 274491, 
kfloppy/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:29:35 UTC (rev 274492)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kfloppy
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Floppy Formatter'
+url='http://kde.org/applications/utilities/kfloppy/'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+depends=(kdelibs4support hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools python kdesignerplugin)
+conflicts=(kdeutils-kfloppy)
+replaces=(kdeutils-kfloppy)
+groups=(kde-applications kdeutils)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('99e1f11087ee70143cb28e243058f31a2474acb0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: kfloppy/repos/testing-x86_64/PKGBUILD (from rev 274491, 
kfloppy/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:29:35 UTC (rev 274492)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kfloppy
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Floppy Formatter'
+url='http://kde.org/applications/utilities/kfloppy/'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+depends=(kdelibs4support hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools python kdesignerplugin)
+conflicts=(kdeutils-kfloppy)
+replaces=(kdeutils-kfloppy)
+groups=(kde-applications kdeutils)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('99e1f11087ee70143cb28e243058f31a2474acb0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in kdf (trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:28:41
  Author: felixonmars
Revision: 274489

upgpkg: kdf 16.08.0-1

Upstream release

Added:
  kdf/trunk/
  kdf/trunk/PKGBUILD

--+
 PKGBUILD |   37 +
 1 file changed, 37 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:28:41 UTC (rev 274489)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdf
+pkgver=16.08.0
+pkgrel=1
+url="http://kde.org/applications/system/kdiskfree/;
+arch=(i686 x86_64)
+pkgdesc='View Disk Usage'
+license=(GPL LGPL FDL)
+depends=(kio hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools python kcmutils)
+conflicts=(kdeutils-kdf)
+replaces=(kdeutils-kdf)
+groups=(kde-applications kdeutils)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('b3509774559b89940097595f8899ab5435e6')
+
+prepare() {
+  mkdir -p build
+}
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: kdf/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:29:02
  Author: felixonmars
Revision: 274490

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

Added:
  kdf/repos/testing-i686/
  kdf/repos/testing-i686/PKGBUILD
(from rev 274489, kdf/trunk/PKGBUILD)
  kdf/repos/testing-x86_64/
  kdf/repos/testing-x86_64/PKGBUILD
(from rev 274489, kdf/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   37 +
 testing-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: kdf/repos/testing-i686/PKGBUILD (from rev 274489, kdf/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:29:02 UTC (rev 274490)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdf
+pkgver=16.08.0
+pkgrel=1
+url="http://kde.org/applications/system/kdiskfree/;
+arch=(i686 x86_64)
+pkgdesc='View Disk Usage'
+license=(GPL LGPL FDL)
+depends=(kio hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools python kcmutils)
+conflicts=(kdeutils-kdf)
+replaces=(kdeutils-kdf)
+groups=(kde-applications kdeutils)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('b3509774559b89940097595f8899ab5435e6')
+
+prepare() {
+  mkdir -p build
+}
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: kdf/repos/testing-x86_64/PKGBUILD (from rev 274489, kdf/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:29:02 UTC (rev 274490)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdf
+pkgver=16.08.0
+pkgrel=1
+url="http://kde.org/applications/system/kdiskfree/;
+arch=(i686 x86_64)
+pkgdesc='View Disk Usage'
+license=(GPL LGPL FDL)
+depends=(kio hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools python kcmutils)
+conflicts=(kdeutils-kdf)
+replaces=(kdeutils-kdf)
+groups=(kde-applications kdeutils)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('b3509774559b89940097595f8899ab5435e6')
+
+prepare() {
+  mkdir -p build
+}
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in kfloppy (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:29:14
  Author: felixonmars
Revision: 274491

upgpkg: kfloppy 16.08.0-1

Upstream release

Added:
  kfloppy/trunk/
  kfloppy/trunk/PKGBUILD
Deleted:
  kfloppy/trunk/

--+
 PKGBUILD |   37 +
 1 file changed, 37 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:29:14 UTC (rev 274491)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kfloppy
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Floppy Formatter'
+url='http://kde.org/applications/utilities/kfloppy/'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+depends=(kdelibs4support hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools python kdesignerplugin)
+conflicts=(kdeutils-kfloppy)
+replaces=(kdeutils-kfloppy)
+groups=(kde-applications kdeutils)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('99e1f11087ee70143cb28e243058f31a2474acb0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: kfloppy/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in kdebugsettings (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:28:13
  Author: felixonmars
Revision: 274487

upgpkg: kdebugsettings 16.08.0-1

Upstream release

Added:
  kdebugsettings/trunk/
  kdebugsettings/trunk/PKGBUILD
Deleted:
  kdebugsettings/trunk/

--+
 PKGBUILD |   35 +++
 1 file changed, 35 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:28:13 UTC (rev 274487)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=kdebugsettings
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='An application to enable/disable qCDebug'
+arch=(i686 x86_64)
+url='https://utils.kde.org/'
+license=(GPL)
+depends=(kdbusaddons ki18n kitemviews kcompletion kcoreaddons)
+makedepends=(extra-cmake-modules python)
+groups=(kde-applications kdeutils)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha256sums=('d603422fbb1467d0554f6705d80cb8cac077318fa682d8e7e54d42598623')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+


Property changes on: kdebugsettings/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in kcharselect (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:27:44
  Author: felixonmars
Revision: 274485

upgpkg: kcharselect 16.08.0-1

Upstream release

Added:
  kcharselect/trunk/
  kcharselect/trunk/PKGBUILD
Deleted:
  kcharselect/trunk/

--+
 PKGBUILD |   36 
 1 file changed, 36 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:27:44 UTC (rev 274485)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kcharselect
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Character Selector'
+url="http://kde.org/applications/utilities/kcharselect/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kxmlgui')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+groups=('kde-applications' 'kdeutils')
+conflicts=('kdeutils-kcharselect')
+replaces=('kdeutils-kcharselect')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kcharselect-${pkgver}.tar.xz;)
+sha1sums=('7236e3503f38d153205cfc5fe0cdb230e8ad501f')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}


Property changes on: kcharselect/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:28:33
  Author: felixonmars
Revision: 274488

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

Added:
  kdebugsettings/repos/testing-i686/
  kdebugsettings/repos/testing-i686/PKGBUILD
(from rev 274487, kdebugsettings/trunk/PKGBUILD)
  kdebugsettings/repos/testing-x86_64/
  kdebugsettings/repos/testing-x86_64/PKGBUILD
(from rev 274487, kdebugsettings/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   35 +++
 testing-x86_64/PKGBUILD |   35 +++
 2 files changed, 70 insertions(+)

Copied: kdebugsettings/repos/testing-i686/PKGBUILD (from rev 274487, 
kdebugsettings/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:28:33 UTC (rev 274488)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=kdebugsettings
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='An application to enable/disable qCDebug'
+arch=(i686 x86_64)
+url='https://utils.kde.org/'
+license=(GPL)
+depends=(kdbusaddons ki18n kitemviews kcompletion kcoreaddons)
+makedepends=(extra-cmake-modules python)
+groups=(kde-applications kdeutils)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha256sums=('d603422fbb1467d0554f6705d80cb8cac077318fa682d8e7e54d42598623')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+

Copied: kdebugsettings/repos/testing-x86_64/PKGBUILD (from rev 274487, 
kdebugsettings/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:28:33 UTC (rev 274488)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=kdebugsettings
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='An application to enable/disable qCDebug'
+arch=(i686 x86_64)
+url='https://utils.kde.org/'
+license=(GPL)
+depends=(kdbusaddons ki18n kitemviews kcompletion kcoreaddons)
+makedepends=(extra-cmake-modules python)
+groups=(kde-applications kdeutils)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha256sums=('d603422fbb1467d0554f6705d80cb8cac077318fa682d8e7e54d42598623')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+


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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:28:05
  Author: felixonmars
Revision: 274486

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

Added:
  kcharselect/repos/testing-i686/
  kcharselect/repos/testing-i686/PKGBUILD
(from rev 274485, kcharselect/trunk/PKGBUILD)
  kcharselect/repos/testing-x86_64/
  kcharselect/repos/testing-x86_64/PKGBUILD
(from rev 274485, kcharselect/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   36 
 testing-x86_64/PKGBUILD |   36 
 2 files changed, 72 insertions(+)

Copied: kcharselect/repos/testing-i686/PKGBUILD (from rev 274485, 
kcharselect/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:28:05 UTC (rev 274486)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kcharselect
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Character Selector'
+url="http://kde.org/applications/utilities/kcharselect/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kxmlgui')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+groups=('kde-applications' 'kdeutils')
+conflicts=('kdeutils-kcharselect')
+replaces=('kdeutils-kcharselect')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kcharselect-${pkgver}.tar.xz;)
+sha1sums=('7236e3503f38d153205cfc5fe0cdb230e8ad501f')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kcharselect/repos/testing-x86_64/PKGBUILD (from rev 274485, 
kcharselect/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:28:05 UTC (rev 274486)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kcharselect
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Character Selector'
+url="http://kde.org/applications/utilities/kcharselect/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kxmlgui')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+groups=('kde-applications' 'kdeutils')
+conflicts=('kdeutils-kcharselect')
+replaces=('kdeutils-kcharselect')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kcharselect-${pkgver}.tar.xz;)
+sha1sums=('7236e3503f38d153205cfc5fe0cdb230e8ad501f')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}


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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:27:31
  Author: felixonmars
Revision: 274484

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

Added:
  kcalc/repos/testing-i686/
  kcalc/repos/testing-i686/PKGBUILD
(from rev 274483, kcalc/trunk/PKGBUILD)
  kcalc/repos/testing-i686/kcalc-qt5.6.patch
(from rev 274483, kcalc/trunk/kcalc-qt5.6.patch)
  kcalc/repos/testing-x86_64/
  kcalc/repos/testing-x86_64/PKGBUILD
(from rev 274483, kcalc/trunk/PKGBUILD)
  kcalc/repos/testing-x86_64/kcalc-qt5.6.patch
(from rev 274483, kcalc/trunk/kcalc-qt5.6.patch)

--+
 testing-i686/PKGBUILD|   37 +
 testing-i686/kcalc-qt5.6.patch   |   11 +++
 testing-x86_64/PKGBUILD  |   37 +
 testing-x86_64/kcalc-qt5.6.patch |   11 +++
 4 files changed, 96 insertions(+)

Copied: kcalc/repos/testing-i686/PKGBUILD (from rev 274483, 
kcalc/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:27:31 UTC (rev 274484)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kcalc
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Scientific Calculator'
+url='http://kde.org/applications/utilities/kcalc/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kinit')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+conflicts=('kdeutils-kcalc')
+replaces=('kdeutils-kcalc')
+groups=('kde-applications' 'kdeutils')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kcalc-${pkgver}.tar.xz;)
+sha1sums=('95dbbf7a589c6cb249e8c8bba6f64a26a6be3a79')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: kcalc/repos/testing-i686/kcalc-qt5.6.patch (from rev 274483, 
kcalc/trunk/kcalc-qt5.6.patch)
===
--- testing-i686/kcalc-qt5.6.patch  (rev 0)
+++ testing-i686/kcalc-qt5.6.patch  2016-08-21 05:27:31 UTC (rev 274484)
@@ -0,0 +1,11 @@
+--- kcalc-15.12.3/kcalc.cpp.orig   2016-03-16 16:26:37.327157522 +
 kcalc-15.12.3/kcalc.cpp2016-03-16 16:28:08.533357025 +
+@@ -123,7 +123,7 @@
+ 
+   updateGeometry();
+ 
+-  setFixedSize(minimumSize());
++  if ( ! minimumSize().isEmpty() ) setFixedSize(minimumSize());
+ 
+   updateDisplay(UPDATE_FROM_CORE);
+ 

Copied: kcalc/repos/testing-x86_64/PKGBUILD (from rev 274483, 
kcalc/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:27:31 UTC (rev 274484)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kcalc
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Scientific Calculator'
+url='http://kde.org/applications/utilities/kcalc/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kinit')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+conflicts=('kdeutils-kcalc')
+replaces=('kdeutils-kcalc')
+groups=('kde-applications' 'kdeutils')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kcalc-${pkgver}.tar.xz;)
+sha1sums=('95dbbf7a589c6cb249e8c8bba6f64a26a6be3a79')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: kcalc/repos/testing-x86_64/kcalc-qt5.6.patch (from rev 274483, 
kcalc/trunk/kcalc-qt5.6.patch)
===
--- testing-x86_64/kcalc-qt5.6.patch(rev 0)
+++ testing-x86_64/kcalc-qt5.6.patch2016-08-21 05:27:31 UTC (rev 274484)
@@ -0,0 +1,11 @@
+--- kcalc-15.12.3/kcalc.cpp.orig   2016-03-16 16:26:37.327157522 +
 kcalc-15.12.3/kcalc.cpp2016-03-16 16:28:08.533357025 +
+@@ -123,7 +123,7 @@
+ 
+   updateGeometry();
+ 
+-  setFixedSize(minimumSize());
++  if ( ! minimumSize().isEmpty() ) setFixedSize(minimumSize());
+ 
+   updateDisplay(UPDATE_FROM_CORE);
+ 


[arch-commits] Commit in kcalc (trunk trunk trunk/PKGBUILD trunk/kcalc-qt5.6.patch)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:27:05
  Author: felixonmars
Revision: 274483

upgpkg: kcalc 16.08.0-1

Upstream release

Added:
  kcalc/trunk/
  kcalc/trunk/PKGBUILD
  kcalc/trunk/kcalc-qt5.6.patch
Deleted:
  kcalc/trunk/

---+
 PKGBUILD  |   37 +
 kcalc-qt5.6.patch |   11 +++
 2 files changed, 48 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:27:05 UTC (rev 274483)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kcalc
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Scientific Calculator'
+url='http://kde.org/applications/utilities/kcalc/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kinit')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+conflicts=('kdeutils-kcalc')
+replaces=('kdeutils-kcalc')
+groups=('kde-applications' 'kdeutils')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kcalc-${pkgver}.tar.xz;)
+sha1sums=('95dbbf7a589c6cb249e8c8bba6f64a26a6be3a79')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: kcalc/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: trunk/kcalc-qt5.6.patch
===
--- trunk/kcalc-qt5.6.patch (rev 0)
+++ trunk/kcalc-qt5.6.patch 2016-08-21 05:27:05 UTC (rev 274483)
@@ -0,0 +1,11 @@
+--- kcalc-15.12.3/kcalc.cpp.orig   2016-03-16 16:26:37.327157522 +
 kcalc-15.12.3/kcalc.cpp2016-03-16 16:28:08.533357025 +
+@@ -123,7 +123,7 @@
+ 
+   updateGeometry();
+ 
+-  setFixedSize(minimumSize());
++  if ( ! minimumSize().isEmpty() ) setFixedSize(minimumSize());
+ 
+   updateDisplay(UPDATE_FROM_CORE);
+ 


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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:26:51
  Author: felixonmars
Revision: 274482

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

Added:
  filelight/repos/testing-i686/
  filelight/repos/testing-i686/PKGBUILD
(from rev 274481, filelight/trunk/PKGBUILD)
  filelight/repos/testing-x86_64/
  filelight/repos/testing-x86_64/PKGBUILD
(from rev 274481, filelight/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   36 
 testing-x86_64/PKGBUILD |   36 
 2 files changed, 72 insertions(+)

Copied: filelight/repos/testing-i686/PKGBUILD (from rev 274481, 
filelight/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:26:51 UTC (rev 274482)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=filelight
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='View disk usage information'
+url='http://kde.org/applications/utilities/filelight'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kparts' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+groups=('kde-applications' 'kdeutils')
+replaces=('kdeutils-filelight')
+conflicts=('kdeutils-filelight')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/filelight-${pkgver}.tar.xz;)
+sha1sums=('951a996f3f257a5cacbba208c0a9baed97d0a949')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: filelight/repos/testing-x86_64/PKGBUILD (from rev 274481, 
filelight/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:26:51 UTC (rev 274482)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=filelight
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='View disk usage information'
+url='http://kde.org/applications/utilities/filelight'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kparts' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+groups=('kde-applications' 'kdeutils')
+replaces=('kdeutils-filelight')
+conflicts=('kdeutils-filelight')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/filelight-${pkgver}.tar.xz;)
+sha1sums=('951a996f3f257a5cacbba208c0a9baed97d0a949')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:26:03
  Author: felixonmars
Revision: 274480

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

Added:
  ark/repos/testing-i686/
  ark/repos/testing-i686/PKGBUILD
(from rev 274479, ark/trunk/PKGBUILD)
  ark/repos/testing-x86_64/
  ark/repos/testing-x86_64/PKGBUILD
(from rev 274479, ark/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   40 
 testing-x86_64/PKGBUILD |   40 
 2 files changed, 80 insertions(+)

Copied: ark/repos/testing-i686/PKGBUILD (from rev 274479, ark/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:26:03 UTC (rev 274480)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Antonio Rojas  
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=ark
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Archiving Tool'
+arch=(i686 x86_64)
+url='http://kde.org/applications/utilities/ark/'
+license=(GPL)
+depends=(kparts kpty libarchive hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools python)
+optdepends=('p7zip: 7Z format support' 'zip: ZIP compression support' 'unzip: 
ZIP format support' 'unrar: RAR format support')
+conflicts=(kdeutils-ark)
+replaces=(kdeutils-ark)
+groups=(kde-applications kdeutils)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('0b2adfbb6472002fdb8be34f52a3314d')
+
+prepare() {
+  mkdir -p build
+}
+
+build() { 
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+

Copied: ark/repos/testing-x86_64/PKGBUILD (from rev 274479, ark/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:26:03 UTC (rev 274480)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Antonio Rojas  
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=ark
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Archiving Tool'
+arch=(i686 x86_64)
+url='http://kde.org/applications/utilities/ark/'
+license=(GPL)
+depends=(kparts kpty libarchive hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools python)
+optdepends=('p7zip: 7Z format support' 'zip: ZIP compression support' 'unzip: 
ZIP format support' 'unrar: RAR format support')
+conflicts=(kdeutils-ark)
+replaces=(kdeutils-ark)
+groups=(kde-applications kdeutils)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('0b2adfbb6472002fdb8be34f52a3314d')
+
+prepare() {
+  mkdir -p build
+}
+
+build() { 
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+


[arch-commits] Commit in ark (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:25:41
  Author: felixonmars
Revision: 274479

upgpkg: ark 16.08.0-1

Upstream release

Added:
  ark/trunk/
  ark/trunk/PKGBUILD
Deleted:
  ark/trunk/

--+
 PKGBUILD |   40 
 1 file changed, 40 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:25:41 UTC (rev 274479)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Antonio Rojas  
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=ark
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Archiving Tool'
+arch=(i686 x86_64)
+url='http://kde.org/applications/utilities/ark/'
+license=(GPL)
+depends=(kparts kpty libarchive hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools python)
+optdepends=('p7zip: 7Z format support' 'zip: ZIP compression support' 'unzip: 
ZIP format support' 'unrar: RAR format support')
+conflicts=(kdeutils-ark)
+replaces=(kdeutils-ark)
+groups=(kde-applications kdeutils)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('0b2adfbb6472002fdb8be34f52a3314d')
+
+prepare() {
+  mkdir -p build
+}
+
+build() { 
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+


Property changes on: ark/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in filelight (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:26:29
  Author: felixonmars
Revision: 274481

upgpkg: filelight 16.08.0-1

Upstream release

Added:
  filelight/trunk/
  filelight/trunk/PKGBUILD
Deleted:
  filelight/trunk/

--+
 PKGBUILD |   36 
 1 file changed, 36 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:26:29 UTC (rev 274481)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=filelight
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='View disk usage information'
+url='http://kde.org/applications/utilities/filelight'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kparts' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+groups=('kde-applications' 'kdeutils')
+replaces=('kdeutils-filelight')
+conflicts=('kdeutils-filelight')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/filelight-${pkgver}.tar.xz;)
+sha1sums=('951a996f3f257a5cacbba208c0a9baed97d0a949')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: filelight/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in umbrello (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:24:01
  Author: felixonmars
Revision: 274477

upgpkg: umbrello 16.08.0-1

Upstream release

Added:
  umbrello/trunk/
  umbrello/trunk/PKGBUILD
Deleted:
  umbrello/trunk/

--+
 PKGBUILD |   39 +++
 1 file changed, 39 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:24:01 UTC (rev 274477)
@@ -0,0 +1,39 @@
+# Maintainer: Antonio Rojas  
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=umbrello
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='UML modeller'
+arch=(i686 x86_64)
+url='http://kde.org/applications/development/umbrello'
+license=(GPL)
+depends=(hicolor-icon-theme ktexteditor)
+makedepends=(extra-cmake-modules kdoctools python)
+conflicts=(kdesdk-umbrello)
+replaces=(kdesdk-umbrello)
+groups=(kde-applications kdesdk)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('89c4d6a458448d4d1ce791e31bf0721f')
+
+prepare() {
+  mkdir -p build
+}
+
+build() { 
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DBUILD_KF5=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+


Property changes on: umbrello/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in kdesdk-thumbnailers/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:23:54
  Author: felixonmars
Revision: 274476

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

Added:
  kdesdk-thumbnailers/repos/testing-i686/
  kdesdk-thumbnailers/repos/testing-i686/PKGBUILD
(from rev 274475, kdesdk-thumbnailers/trunk/PKGBUILD)
  kdesdk-thumbnailers/repos/testing-x86_64/
  kdesdk-thumbnailers/repos/testing-x86_64/PKGBUILD
(from rev 274475, kdesdk-thumbnailers/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   35 +++
 testing-x86_64/PKGBUILD |   35 +++
 2 files changed, 70 insertions(+)

Copied: kdesdk-thumbnailers/repos/testing-i686/PKGBUILD (from rev 274475, 
kdesdk-thumbnailers/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:23:54 UTC (rev 274476)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdesdk-thumbnailers
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Plugins for the thumbnailing system'
+url='https://www.kde.org/applications/development/'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdesdk)
+depends=(kio gettext)
+makedepends=(extra-cmake-modules python)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('67114d103a0cca6cda4297d727e455c038cda821')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: kdesdk-thumbnailers/repos/testing-x86_64/PKGBUILD (from rev 274475, 
kdesdk-thumbnailers/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:23:54 UTC (rev 274476)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdesdk-thumbnailers
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Plugins for the thumbnailing system'
+url='https://www.kde.org/applications/development/'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdesdk)
+depends=(kio gettext)
+makedepends=(extra-cmake-modules python)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('67114d103a0cca6cda4297d727e455c038cda821')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:24:21
  Author: felixonmars
Revision: 274478

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

Added:
  umbrello/repos/testing-i686/
  umbrello/repos/testing-i686/PKGBUILD
(from rev 274477, umbrello/trunk/PKGBUILD)
  umbrello/repos/testing-x86_64/
  umbrello/repos/testing-x86_64/PKGBUILD
(from rev 274477, umbrello/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   39 +++
 testing-x86_64/PKGBUILD |   39 +++
 2 files changed, 78 insertions(+)

Copied: umbrello/repos/testing-i686/PKGBUILD (from rev 274477, 
umbrello/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:24:21 UTC (rev 274478)
@@ -0,0 +1,39 @@
+# Maintainer: Antonio Rojas  
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=umbrello
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='UML modeller'
+arch=(i686 x86_64)
+url='http://kde.org/applications/development/umbrello'
+license=(GPL)
+depends=(hicolor-icon-theme ktexteditor)
+makedepends=(extra-cmake-modules kdoctools python)
+conflicts=(kdesdk-umbrello)
+replaces=(kdesdk-umbrello)
+groups=(kde-applications kdesdk)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('89c4d6a458448d4d1ce791e31bf0721f')
+
+prepare() {
+  mkdir -p build
+}
+
+build() { 
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DBUILD_KF5=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+

Copied: umbrello/repos/testing-x86_64/PKGBUILD (from rev 274477, 
umbrello/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:24:21 UTC (rev 274478)
@@ -0,0 +1,39 @@
+# Maintainer: Antonio Rojas  
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=umbrello
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='UML modeller'
+arch=(i686 x86_64)
+url='http://kde.org/applications/development/umbrello'
+license=(GPL)
+depends=(hicolor-icon-theme ktexteditor)
+makedepends=(extra-cmake-modules kdoctools python)
+conflicts=(kdesdk-umbrello)
+replaces=(kdesdk-umbrello)
+groups=(kde-applications kdesdk)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('89c4d6a458448d4d1ce791e31bf0721f')
+
+prepare() {
+  mkdir -p build
+}
+
+build() { 
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DBUILD_KF5=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+


[arch-commits] Commit in kdesdk-thumbnailers (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:23:32
  Author: felixonmars
Revision: 274475

upgpkg: kdesdk-thumbnailers 16.08.0-1

Upstream release

Added:
  kdesdk-thumbnailers/trunk/
  kdesdk-thumbnailers/trunk/PKGBUILD
Deleted:
  kdesdk-thumbnailers/trunk/

--+
 PKGBUILD |   35 +++
 1 file changed, 35 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:23:32 UTC (rev 274475)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdesdk-thumbnailers
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Plugins for the thumbnailing system'
+url='https://www.kde.org/applications/development/'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdesdk)
+depends=(kio gettext)
+makedepends=(extra-cmake-modules python)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('67114d103a0cca6cda4297d727e455c038cda821')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: kdesdk-thumbnailers/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:23:20
  Author: felixonmars
Revision: 274474

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

Added:
  poxml/repos/testing-i686/
  poxml/repos/testing-i686/PKGBUILD
(from rev 274473, poxml/trunk/PKGBUILD)
  poxml/repos/testing-x86_64/
  poxml/repos/testing-x86_64/PKGBUILD
(from rev 274473, poxml/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   37 +
 testing-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: poxml/repos/testing-i686/PKGBUILD (from rev 274473, 
poxml/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:23:20 UTC (rev 274474)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=poxml
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Translates DocBook XML files using gettext po files'
+url='https://www.kde.org/applications/development/'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdesdk)
+depends=(qt5-base gettext)
+makedepends=(extra-cmake-modules kdoctools)
+conflicts=(kdesdk-poxml)
+replaces=(kdesdk-poxml)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('a77327c1a62e6fa1553a68584ce747425532f1bf')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: poxml/repos/testing-x86_64/PKGBUILD (from rev 274473, 
poxml/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:23:20 UTC (rev 274474)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=poxml
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Translates DocBook XML files using gettext po files'
+url='https://www.kde.org/applications/development/'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdesdk)
+depends=(qt5-base gettext)
+makedepends=(extra-cmake-modules kdoctools)
+conflicts=(kdesdk-poxml)
+replaces=(kdesdk-poxml)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('a77327c1a62e6fa1553a68584ce747425532f1bf')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in poxml (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:22:59
  Author: felixonmars
Revision: 274473

upgpkg: poxml 16.08.0-1

Upstream release

Added:
  poxml/trunk/
  poxml/trunk/PKGBUILD
Deleted:
  poxml/trunk/

--+
 PKGBUILD |   37 +
 1 file changed, 37 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:22:59 UTC (rev 274473)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=poxml
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Translates DocBook XML files using gettext po files'
+url='https://www.kde.org/applications/development/'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdesdk)
+depends=(qt5-base gettext)
+makedepends=(extra-cmake-modules kdoctools)
+conflicts=(kdesdk-poxml)
+replaces=(kdesdk-poxml)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('a77327c1a62e6fa1553a68584ce747425532f1bf')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: poxml/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:22:23
  Author: felixonmars
Revision: 274472

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

Added:
  okteta/repos/testing-i686/
  okteta/repos/testing-i686/PKGBUILD
(from rev 274471, okteta/trunk/PKGBUILD)
  okteta/repos/testing-x86_64/
  okteta/repos/testing-x86_64/PKGBUILD
(from rev 274471, okteta/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   37 +
 testing-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: okteta/repos/testing-i686/PKGBUILD (from rev 274471, 
okteta/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:22:23 UTC (rev 274472)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=okteta
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Hex Editor'
+url='http://kde.org/applications/utilities/okteta/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdesdk')
+depends=('kcmutils' 'kparts' 'knewstuff' 'qca-qt5' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'qt5-tools')
+replaces=('kdesdk-okteta')
+conflicts=('kdesdk-okteta<4.14.3-2')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/okteta-${pkgver}.tar.xz;)
+sha1sums=('7ad5f516566726718e597a52fc9d9b4bd17521c0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../okteta-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: okteta/repos/testing-x86_64/PKGBUILD (from rev 274471, 
okteta/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:22:23 UTC (rev 274472)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=okteta
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Hex Editor'
+url='http://kde.org/applications/utilities/okteta/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdesdk')
+depends=('kcmutils' 'kparts' 'knewstuff' 'qca-qt5' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'qt5-tools')
+replaces=('kdesdk-okteta')
+conflicts=('kdesdk-okteta<4.14.3-2')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/okteta-${pkgver}.tar.xz;)
+sha1sums=('7ad5f516566726718e597a52fc9d9b4bd17521c0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../okteta-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in okteta (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:22:02
  Author: felixonmars
Revision: 274471

upgpkg: okteta 16.08.0-1

Upstream release

Added:
  okteta/trunk/
  okteta/trunk/PKGBUILD
Deleted:
  okteta/trunk/

--+
 PKGBUILD |   37 +
 1 file changed, 37 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:22:02 UTC (rev 274471)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=okteta
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Hex Editor'
+url='http://kde.org/applications/utilities/okteta/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdesdk')
+depends=('kcmutils' 'kparts' 'knewstuff' 'qca-qt5' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'qt5-tools')
+replaces=('kdesdk-okteta')
+conflicts=('kdesdk-okteta<4.14.3-2')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/okteta-${pkgver}.tar.xz;)
+sha1sums=('7ad5f516566726718e597a52fc9d9b4bd17521c0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../okteta-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: okteta/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in lokalize (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:20:56
  Author: felixonmars
Revision: 274469

upgpkg: lokalize 16.08.0-1

Upstream release

Added:
  lokalize/trunk/
  lokalize/trunk/PKGBUILD
  lokalize/trunk/fix-python2-path.patch
Deleted:
  lokalize/trunk/

+
 PKGBUILD   |   40 
 fix-python2-path.patch |   22 ++
 2 files changed, 62 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:20:56 UTC (rev 274469)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=lokalize
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Computer-Aided Translation System'
+url='http://kde.org/applications/development/lokalize/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdesdk')
+depends=('kross' 'hunspell' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+conflicts=('kdesdk-lokalize')
+replaces=('kdesdk-lokalize')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/lokalize-${pkgver}.tar.xz;)
+sha1sums=('f1af9cc36b7c9b0ae7f8b28d3c41020fa965042c')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../lokalize-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  # Fix python 2 path
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+"${pkgdir}"/usr/share/lokalize/scripts/odf/xliffmerge.py
+}


Property changes on: lokalize/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: trunk/fix-python2-path.patch
===
--- trunk/fix-python2-path.patch(rev 0)
+++ trunk/fix-python2-path.patch2016-08-21 05:20:56 UTC (rev 274469)
@@ -0,0 +1,22 @@
+--- kdesdk-4.5.80/lokalize/scripts/msgmerge.py~2010-11-24 
11:22:42.12002 +0100
 kdesdk-4.5.80/lokalize/scripts/msgmerge.py 2010-11-24 11:22:42.14670 
+0100
+@@ -114,7 +114,7 @@
+ print >>sys.stderr, "Execution failed:", e
+ 
+ cmd='%s/odf/xliffmerge.py -i %s -t %s -o %s' % 
(ourPath,xliffpathname,xlifftemplatepathname,xliffpathname)
+-if os.name!='nt': cmd='python '+cmd
++if os.name!='nt': cmd='python2 '+cmd
+ else: cmd=cmd.replace('/','\\')
+ os.system(cmd)
+
+--- kdesdk-4.5.80/lokalize/scripts/xliff2odf.py~   2010-11-24 
11:24:10.85336 +0100
 kdesdk-4.5.80/lokalize/scripts/xliff2odf.py2010-11-24 
11:24:10.88336 +0100
+@@ -42,7 +42,7 @@
+ xliff2odf.convertxliff(xliffinput, translatedodfpathname, odf)
+ 
+ ourpath=([p for p in sys.path if 
os.path.exists(p+'/xliff2odf.py')]+[''])[0]
+-os.system('python "'+ourpath+'/xliff2odf-standalone.py" "%s" "%s" 
&'%(translatedodfpathname, Editor.currentEntryId()))
++os.system('python2 "'+ourpath+'/xliff2odf-standalone.py" "%s" "%s" 
&'%(translatedodfpathname, Editor.currentEntryId()))
+ 
+ try: convert()
+ except: print 'error occured'


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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:21:15
  Author: felixonmars
Revision: 274470

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

Added:
  lokalize/repos/testing-i686/
  lokalize/repos/testing-i686/PKGBUILD
(from rev 274469, lokalize/trunk/PKGBUILD)
  lokalize/repos/testing-i686/fix-python2-path.patch
(from rev 274469, lokalize/trunk/fix-python2-path.patch)
  lokalize/repos/testing-x86_64/
  lokalize/repos/testing-x86_64/PKGBUILD
(from rev 274469, lokalize/trunk/PKGBUILD)
  lokalize/repos/testing-x86_64/fix-python2-path.patch
(from rev 274469, lokalize/trunk/fix-python2-path.patch)

---+
 testing-i686/PKGBUILD |   40 
 testing-i686/fix-python2-path.patch   |   22 +
 testing-x86_64/PKGBUILD   |   40 
 testing-x86_64/fix-python2-path.patch |   22 +
 4 files changed, 124 insertions(+)

Copied: lokalize/repos/testing-i686/PKGBUILD (from rev 274469, 
lokalize/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:21:15 UTC (rev 274470)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=lokalize
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Computer-Aided Translation System'
+url='http://kde.org/applications/development/lokalize/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdesdk')
+depends=('kross' 'hunspell' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+conflicts=('kdesdk-lokalize')
+replaces=('kdesdk-lokalize')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/lokalize-${pkgver}.tar.xz;)
+sha1sums=('f1af9cc36b7c9b0ae7f8b28d3c41020fa965042c')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../lokalize-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  # Fix python 2 path
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+"${pkgdir}"/usr/share/lokalize/scripts/odf/xliffmerge.py
+}

Copied: lokalize/repos/testing-i686/fix-python2-path.patch (from rev 274469, 
lokalize/trunk/fix-python2-path.patch)
===
--- testing-i686/fix-python2-path.patch (rev 0)
+++ testing-i686/fix-python2-path.patch 2016-08-21 05:21:15 UTC (rev 274470)
@@ -0,0 +1,22 @@
+--- kdesdk-4.5.80/lokalize/scripts/msgmerge.py~2010-11-24 
11:22:42.12002 +0100
 kdesdk-4.5.80/lokalize/scripts/msgmerge.py 2010-11-24 11:22:42.14670 
+0100
+@@ -114,7 +114,7 @@
+ print >>sys.stderr, "Execution failed:", e
+ 
+ cmd='%s/odf/xliffmerge.py -i %s -t %s -o %s' % 
(ourPath,xliffpathname,xlifftemplatepathname,xliffpathname)
+-if os.name!='nt': cmd='python '+cmd
++if os.name!='nt': cmd='python2 '+cmd
+ else: cmd=cmd.replace('/','\\')
+ os.system(cmd)
+
+--- kdesdk-4.5.80/lokalize/scripts/xliff2odf.py~   2010-11-24 
11:24:10.85336 +0100
 kdesdk-4.5.80/lokalize/scripts/xliff2odf.py2010-11-24 
11:24:10.88336 +0100
+@@ -42,7 +42,7 @@
+ xliff2odf.convertxliff(xliffinput, translatedodfpathname, odf)
+ 
+ ourpath=([p for p in sys.path if 
os.path.exists(p+'/xliff2odf.py')]+[''])[0]
+-os.system('python "'+ourpath+'/xliff2odf-standalone.py" "%s" "%s" 
&'%(translatedodfpathname, Editor.currentEntryId()))
++os.system('python2 "'+ourpath+'/xliff2odf-standalone.py" "%s" "%s" 
&'%(translatedodfpathname, Editor.currentEntryId()))
+ 
+ try: convert()
+ except: print 'error occured'

Copied: lokalize/repos/testing-x86_64/PKGBUILD (from rev 274469, 
lokalize/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:21:15 UTC (rev 274470)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=lokalize
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Computer-Aided Translation System'
+url='http://kde.org/applications/development/lokalize/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdesdk')
+depends=('kross' 'hunspell' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+conflicts=('kdesdk-lokalize')
+replaces=('kdesdk-lokalize')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/lokalize-${pkgver}.tar.xz;)
+sha1sums=('f1af9cc36b7c9b0ae7f8b28d3c41020fa965042c')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../lokalize-${pkgver} \
+

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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:20:41
  Author: felixonmars
Revision: 274468

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

Added:
  kompare/repos/testing-i686/
  kompare/repos/testing-i686/PKGBUILD
(from rev 274467, kompare/trunk/PKGBUILD)
  kompare/repos/testing-x86_64/
  kompare/repos/testing-x86_64/PKGBUILD
(from rev 274467, kompare/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   37 +
 testing-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: kompare/repos/testing-i686/PKGBUILD (from rev 274467, 
kompare/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:20:41 UTC (rev 274468)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kompare
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Diff/Patch Frontend'
+url='http://kde.org/applications/development/kompare/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdesdk')
+depends=('libkomparediff2' 'ktexteditor' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+conflicts=('kdesdk-kompare')
+replaces=('kdesdk-kompare')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kompare-${pkgver}.tar.xz;)
+sha1sums=('92402382f9b2e0e6fc01b485672d0e0cd3134061')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kompare/repos/testing-x86_64/PKGBUILD (from rev 274467, 
kompare/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:20:41 UTC (rev 274468)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kompare
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Diff/Patch Frontend'
+url='http://kde.org/applications/development/kompare/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdesdk')
+depends=('libkomparediff2' 'ktexteditor' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+conflicts=('kdesdk-kompare')
+replaces=('kdesdk-kompare')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kompare-${pkgver}.tar.xz;)
+sha1sums=('92402382f9b2e0e6fc01b485672d0e0cd3134061')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}


[arch-commits] Commit in kompare (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:20:16
  Author: felixonmars
Revision: 274467

upgpkg: kompare 16.08.0-1

Upstream release

Added:
  kompare/trunk/
  kompare/trunk/PKGBUILD
Deleted:
  kompare/trunk/

--+
 PKGBUILD |   37 +
 1 file changed, 37 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:20:16 UTC (rev 274467)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kompare
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Diff/Patch Frontend'
+url='http://kde.org/applications/development/kompare/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdesdk')
+depends=('libkomparediff2' 'ktexteditor' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+conflicts=('kdesdk-kompare')
+replaces=('kdesdk-kompare')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kompare-${pkgver}.tar.xz;)
+sha1sums=('92402382f9b2e0e6fc01b485672d0e0cd3134061')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}


Property changes on: kompare/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in kdesdk-kcachegrind/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:19:55
  Author: felixonmars
Revision: 274466

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

Added:
  kdesdk-kcachegrind/repos/testing-i686/
  kdesdk-kcachegrind/repos/testing-i686/PKGBUILD
(from rev 274465, kdesdk-kcachegrind/trunk/PKGBUILD)
  kdesdk-kcachegrind/repos/testing-x86_64/
  kdesdk-kcachegrind/repos/testing-x86_64/PKGBUILD
(from rev 274465, kdesdk-kcachegrind/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   39 +++
 testing-x86_64/PKGBUILD |   39 +++
 2 files changed, 78 insertions(+)

Copied: kdesdk-kcachegrind/repos/testing-i686/PKGBUILD (from rev 274465, 
kdesdk-kcachegrind/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:19:55 UTC (rev 274466)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdesdk-kcachegrind
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Visualization of Performance Profiling Data'
+url='http://kde.org/applications/development/kcachegrind/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdesdk')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+optdepends=('php: PHP support')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kcachegrind-${pkgver}.tar.xz;)
+sha1sums=('7e7bd6f84faaa3f42bdbd33381229c34fffc3bbc')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kcachegrind-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  # Fix python 2 path
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+"${pkgdir}"/usr/bin/hotshot2calltree
+}

Copied: kdesdk-kcachegrind/repos/testing-x86_64/PKGBUILD (from rev 274465, 
kdesdk-kcachegrind/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:19:55 UTC (rev 274466)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdesdk-kcachegrind
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Visualization of Performance Profiling Data'
+url='http://kde.org/applications/development/kcachegrind/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdesdk')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+optdepends=('php: PHP support')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kcachegrind-${pkgver}.tar.xz;)
+sha1sums=('7e7bd6f84faaa3f42bdbd33381229c34fffc3bbc')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kcachegrind-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  # Fix python 2 path
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+"${pkgdir}"/usr/bin/hotshot2calltree
+}


[arch-commits] Commit in kdesdk-kcachegrind (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:19:33
  Author: felixonmars
Revision: 274465

upgpkg: kdesdk-kcachegrind 16.08.0-1

Upstream release

Added:
  kdesdk-kcachegrind/trunk/
  kdesdk-kcachegrind/trunk/PKGBUILD
Deleted:
  kdesdk-kcachegrind/trunk/

--+
 PKGBUILD |   39 +++
 1 file changed, 39 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:19:33 UTC (rev 274465)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdesdk-kcachegrind
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Visualization of Performance Profiling Data'
+url='http://kde.org/applications/development/kcachegrind/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdesdk')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+optdepends=('php: PHP support')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kcachegrind-${pkgver}.tar.xz;)
+sha1sums=('7e7bd6f84faaa3f42bdbd33381229c34fffc3bbc')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kcachegrind-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  # Fix python 2 path
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+"${pkgdir}"/usr/bin/hotshot2calltree
+}


Property changes on: kdesdk-kcachegrind/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:19:07
  Author: felixonmars
Revision: 274464

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

Added:
  kapptemplate/repos/testing-i686/
  kapptemplate/repos/testing-i686/PKGBUILD
(from rev 274463, kapptemplate/trunk/PKGBUILD)
  kapptemplate/repos/testing-x86_64/
  kapptemplate/repos/testing-x86_64/PKGBUILD
(from rev 274463, kapptemplate/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   36 
 testing-x86_64/PKGBUILD |   36 
 2 files changed, 72 insertions(+)

Copied: kapptemplate/repos/testing-i686/PKGBUILD (from rev 274463, 
kapptemplate/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:19:07 UTC (rev 274464)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kapptemplate
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='KDE Template Generator'
+url='http://kde.org/applications/development/kapptemplate/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdesdk')
+depends=('kio' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+replaces=('kdesdk-kapptemplate')
+conflicts=('kdesdk-kapptemplate')
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('38fe7c797d6c3f53cab629d98c14e79758e7b415')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: kapptemplate/repos/testing-x86_64/PKGBUILD (from rev 274463, 
kapptemplate/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:19:07 UTC (rev 274464)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kapptemplate
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='KDE Template Generator'
+url='http://kde.org/applications/development/kapptemplate/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdesdk')
+depends=('kio' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+replaces=('kdesdk-kapptemplate')
+conflicts=('kdesdk-kapptemplate')
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('38fe7c797d6c3f53cab629d98c14e79758e7b415')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in kapptemplate (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:18:47
  Author: felixonmars
Revision: 274463

upgpkg: kapptemplate 16.08.0-1

Upstream release

Added:
  kapptemplate/trunk/
  kapptemplate/trunk/PKGBUILD
Deleted:
  kapptemplate/trunk/

--+
 PKGBUILD |   36 
 1 file changed, 36 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:18:47 UTC (rev 274463)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kapptemplate
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='KDE Template Generator'
+url='http://kde.org/applications/development/kapptemplate/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdesdk')
+depends=('kio' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+replaces=('kdesdk-kapptemplate')
+conflicts=('kdesdk-kapptemplate')
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('38fe7c797d6c3f53cab629d98c14e79758e7b415')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: kapptemplate/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in dolphin-plugins/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:18:36
  Author: felixonmars
Revision: 274462

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

Added:
  dolphin-plugins/repos/testing-i686/
  dolphin-plugins/repos/testing-i686/PKGBUILD
(from rev 274461, dolphin-plugins/trunk/PKGBUILD)
  dolphin-plugins/repos/testing-x86_64/
  dolphin-plugins/repos/testing-x86_64/PKGBUILD
(from rev 274461, dolphin-plugins/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   39 +++
 testing-x86_64/PKGBUILD |   39 +++
 2 files changed, 78 insertions(+)

Copied: dolphin-plugins/repos/testing-i686/PKGBUILD (from rev 274461, 
dolphin-plugins/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:18:36 UTC (rev 274462)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=dolphin-plugins
+pkgver=16.08.0
+pkgrel=1
+pkgdesc="Extra Dolphin plugins"
+arch=(i686 x86_64)
+url="https://www.kde.org/applications/system/dolphin/;
+license=(LGPL)
+depends=(dolphin)
+makedepends=(extra-cmake-modules kdoctools ktexteditor kdesignerplugin)
+optdepends=('ktexteditor: Mercurial plugin')
+conflicts=(kdesdk-dolphin-plugins)
+replaces=(kdesdk-dolphin-plugins)
+groups=(kde-applications kdesdk)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('14f9f0fb5931f823f1c3a304b1060466')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: dolphin-plugins/repos/testing-x86_64/PKGBUILD (from rev 274461, 
dolphin-plugins/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:18:36 UTC (rev 274462)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=dolphin-plugins
+pkgver=16.08.0
+pkgrel=1
+pkgdesc="Extra Dolphin plugins"
+arch=(i686 x86_64)
+url="https://www.kde.org/applications/system/dolphin/;
+license=(LGPL)
+depends=(dolphin)
+makedepends=(extra-cmake-modules kdoctools ktexteditor kdesignerplugin)
+optdepends=('ktexteditor: Mercurial plugin')
+conflicts=(kdesdk-dolphin-plugins)
+replaces=(kdesdk-dolphin-plugins)
+groups=(kde-applications kdesdk)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('14f9f0fb5931f823f1c3a304b1060466')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in kde-dev-scripts/repos (testing-any testing-any/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:17:57
  Author: felixonmars
Revision: 274460

archrelease: copy trunk to testing-any

Added:
  kde-dev-scripts/repos/testing-any/
  kde-dev-scripts/repos/testing-any/PKGBUILD
(from rev 274459, kde-dev-scripts/trunk/PKGBUILD)

--+
 PKGBUILD |   46 ++
 1 file changed, 46 insertions(+)

Copied: kde-dev-scripts/repos/testing-any/PKGBUILD (from rev 274459, 
kde-dev-scripts/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2016-08-21 05:17:57 UTC (rev 274460)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kde-dev-scripts
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Scripts and setting files useful during development of KDE software'
+url='https://www.kde.org/applications/development/'
+arch=('any')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdesdk')
+makedepends=('extra-cmake-modules' 'kdoctools' 'kdelibs4support')
+replaces=('kdesdk-dev-scripts')
+conflicts=('kdesdk-dev-scripts')
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('cde890bbf3e185fbc99765344d403522e97c029e')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  # Fix python 2 path
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+
"$pkgdir"/usr/bin/{zonetab2pot.py,kde-systemsettings-tree.py,reviewboard-am}
+  sed -i 's|#! /usr/bin/env python|#!/usr/bin/env python2|' \
+"$pkgdir"/usr/bin/{kdelnk2desktop.py,kde_generate_export_header}
+
+# Install additional files
+  cd "$srcdir"/$pkgname-$pkgver
+  mkdir -p "$pkgdir"/usr/share/kde-dev-scripts
+  cp -r kde-devel-* gdb "$pkgdir"/usr/share/kde-dev-scripts
+}


[arch-commits] Commit in dolphin-plugins (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:18:04
  Author: felixonmars
Revision: 274461

upgpkg: dolphin-plugins 16.08.0-1

Upstream release

Added:
  dolphin-plugins/trunk/
  dolphin-plugins/trunk/PKGBUILD
Deleted:
  dolphin-plugins/trunk/

--+
 PKGBUILD |   39 +++
 1 file changed, 39 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:18:04 UTC (rev 274461)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=dolphin-plugins
+pkgver=16.08.0
+pkgrel=1
+pkgdesc="Extra Dolphin plugins"
+arch=(i686 x86_64)
+url="https://www.kde.org/applications/system/dolphin/;
+license=(LGPL)
+depends=(dolphin)
+makedepends=(extra-cmake-modules kdoctools ktexteditor kdesignerplugin)
+optdepends=('ktexteditor: Mercurial plugin')
+conflicts=(kdesdk-dolphin-plugins)
+replaces=(kdesdk-dolphin-plugins)
+groups=(kde-applications kdesdk)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('14f9f0fb5931f823f1c3a304b1060466')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: dolphin-plugins/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in kde-dev-scripts (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:17:44
  Author: felixonmars
Revision: 274459

upgpkg: kde-dev-scripts 16.08.0-1

Upstream release

Added:
  kde-dev-scripts/trunk/
  kde-dev-scripts/trunk/PKGBUILD
Deleted:
  kde-dev-scripts/trunk/

--+
 PKGBUILD |   46 ++
 1 file changed, 46 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:17:44 UTC (rev 274459)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kde-dev-scripts
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Scripts and setting files useful during development of KDE software'
+url='https://www.kde.org/applications/development/'
+arch=('any')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdesdk')
+makedepends=('extra-cmake-modules' 'kdoctools' 'kdelibs4support')
+replaces=('kdesdk-dev-scripts')
+conflicts=('kdesdk-dev-scripts')
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('cde890bbf3e185fbc99765344d403522e97c029e')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  # Fix python 2 path
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+
"$pkgdir"/usr/bin/{zonetab2pot.py,kde-systemsettings-tree.py,reviewboard-am}
+  sed -i 's|#! /usr/bin/env python|#!/usr/bin/env python2|' \
+"$pkgdir"/usr/bin/{kdelnk2desktop.py,kde_generate_export_header}
+
+# Install additional files
+  cd "$srcdir"/$pkgname-$pkgver
+  mkdir -p "$pkgdir"/usr/share/kde-dev-scripts
+  cp -r kde-devel-* gdb "$pkgdir"/usr/share/kde-dev-scripts
+}


Property changes on: kde-dev-scripts/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in kdesdk-dev-utils/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:17:35
  Author: felixonmars
Revision: 274458

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

Added:
  kdesdk-dev-utils/repos/testing-i686/
  kdesdk-dev-utils/repos/testing-i686/PKGBUILD
(from rev 274457, kdesdk-dev-utils/trunk/PKGBUILD)
  kdesdk-dev-utils/repos/testing-x86_64/
  kdesdk-dev-utils/repos/testing-x86_64/PKGBUILD
(from rev 274457, kdesdk-dev-utils/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   35 +++
 testing-x86_64/PKGBUILD |   35 +++
 2 files changed, 70 insertions(+)

Copied: kdesdk-dev-utils/repos/testing-i686/PKGBUILD (from rev 274457, 
kdesdk-dev-utils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:17:35 UTC (rev 274458)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdesdk-dev-utils
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Small utilities for developers using KDE/Qt libs/frameworks'
+url='https://www.kde.org/applications/development/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdesdk')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+conflicts=('kdesdk-kmtrace' 'kdesdk-kpartloader' 'kdesdk-kprofilemethod'
+   'kdesdk-kstartperf' 'kdesdk-kuiviewer')
+replaces=('kdesdk-kmtrace' 'kdesdk-kpartloader' 'kdesdk-kprofilemethod'
+  'kdesdk-kstartperf' 'kdesdk-kuiviewer')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-dev-utils-${pkgver}.tar.xz;)
+sha1sums=('221a8e8cf869c76fe18b709b3422452c196c2576')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../kde-dev-utils-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdesdk-dev-utils/repos/testing-x86_64/PKGBUILD (from rev 274457, 
kdesdk-dev-utils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:17:35 UTC (rev 274458)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdesdk-dev-utils
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Small utilities for developers using KDE/Qt libs/frameworks'
+url='https://www.kde.org/applications/development/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdesdk')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+conflicts=('kdesdk-kmtrace' 'kdesdk-kpartloader' 'kdesdk-kprofilemethod'
+   'kdesdk-kstartperf' 'kdesdk-kuiviewer')
+replaces=('kdesdk-kmtrace' 'kdesdk-kpartloader' 'kdesdk-kprofilemethod'
+  'kdesdk-kstartperf' 'kdesdk-kuiviewer')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-dev-utils-${pkgver}.tar.xz;)
+sha1sums=('221a8e8cf869c76fe18b709b3422452c196c2576')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../kde-dev-utils-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}


[arch-commits] Commit in kdesdk-dev-utils (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:17:14
  Author: felixonmars
Revision: 274457

upgpkg: kdesdk-dev-utils 16.08.0-1

Upstream release

Added:
  kdesdk-dev-utils/trunk/
  kdesdk-dev-utils/trunk/PKGBUILD
Deleted:
  kdesdk-dev-utils/trunk/

--+
 PKGBUILD |   35 +++
 1 file changed, 35 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:17:14 UTC (rev 274457)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdesdk-dev-utils
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Small utilities for developers using KDE/Qt libs/frameworks'
+url='https://www.kde.org/applications/development/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdesdk')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+conflicts=('kdesdk-kmtrace' 'kdesdk-kpartloader' 'kdesdk-kprofilemethod'
+   'kdesdk-kstartperf' 'kdesdk-kuiviewer')
+replaces=('kdesdk-kmtrace' 'kdesdk-kpartloader' 'kdesdk-kprofilemethod'
+  'kdesdk-kstartperf' 'kdesdk-kuiviewer')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-dev-utils-${pkgver}.tar.xz;)
+sha1sums=('221a8e8cf869c76fe18b709b3422452c196c2576')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../kde-dev-utils-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}


Property changes on: kdesdk-dev-utils/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:16:45
  Author: felixonmars
Revision: 274456

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

Added:
  cervisia/repos/testing-i686/PKGBUILD
(from rev 274455, cervisia/trunk/PKGBUILD)
  cervisia/repos/testing-x86_64/PKGBUILD
(from rev 274455, cervisia/trunk/PKGBUILD)
Deleted:
  cervisia/repos/testing-i686/PKGBUILD
  cervisia/repos/testing-x86_64/PKGBUILD

-+
 /PKGBUILD   |   76 ++
 testing-i686/PKGBUILD   |   38 ---
 testing-x86_64/PKGBUILD |   38 ---
 3 files changed, 76 insertions(+), 76 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2016-08-21 05:13:17 UTC (rev 274455)
+++ testing-i686/PKGBUILD   2016-08-21 05:16:45 UTC (rev 274456)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=cervisia
-pkgver=16.08.0
-pkgrel=1
-pkgdesc='CVS Frontend'
-url='http://kde.org/applications/development/cervisia/'
-arch=(i686 x86_64)
-license=(GPL LGPL FDL)
-groups=(kde-applications kdesdk)
-depends=(kdesu kparts hicolor-icon-theme)
-makedepends=(extra-cmake-modules python kdoctools)
-conflicts=(kdesdk-cervisia)
-replaces=(kdesdk-cervisia)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-sha1sums=('c779b55a42887ba7b8dc624b8a0673712d5cf1c9')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: cervisia/repos/testing-i686/PKGBUILD (from rev 274455, 
cervisia/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:16:45 UTC (rev 274456)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=cervisia
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='CVS Frontend'
+url='http://kde.org/applications/development/cervisia/'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdesdk)
+depends=(kdesu kparts hicolor-icon-theme)
+makedepends=(extra-cmake-modules python kdoctools)
+conflicts=(kdesdk-cervisia)
+replaces=(kdesdk-cervisia)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('c779b55a42887ba7b8dc624b8a0673712d5cf1c9')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: testing-x86_64/PKGBUILD
===
--- testing-x86_64/PKGBUILD 2016-08-21 05:13:17 UTC (rev 274455)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:16:45 UTC (rev 274456)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=cervisia
-pkgver=16.08.0
-pkgrel=1
-pkgdesc='CVS Frontend'
-url='http://kde.org/applications/development/cervisia/'
-arch=(i686 x86_64)
-license=(GPL LGPL FDL)
-groups=(kde-applications kdesdk)
-depends=(kdesu kparts hicolor-icon-theme)
-makedepends=(extra-cmake-modules python kdoctools)
-conflicts=(kdesdk-cervisia)
-replaces=(kdesdk-cervisia)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-sha1sums=('c779b55a42887ba7b8dc624b8a0673712d5cf1c9')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: cervisia/repos/testing-x86_64/PKGBUILD (from rev 274455, 
cervisia/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:16:45 UTC (rev 274456)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=cervisia
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='CVS Frontend'

[arch-commits] Commit in cervisia (trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:12:56
  Author: felixonmars
Revision: 274454

upgpkg: cervisia 16.08.0-1

Upstream release

Added:
  cervisia/trunk/
  cervisia/trunk/PKGBUILD

--+
 PKGBUILD |   38 ++
 1 file changed, 38 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 05:12:56 UTC (rev 274454)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=cervisia
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='CVS Frontend'
+url='http://kde.org/applications/development/cervisia/'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdesdk)
+depends=(kdesu kparts hicolor-icon-theme)
+makedepends=(extra-cmake-modules python kdoctools)
+conflicts=(kdesdk-cervisia)
+replaces=(kdesdk-cervisia)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('c779b55a42887ba7b8dc624b8a0673712d5cf1c9')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: cervisia/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:13:17
  Author: felixonmars
Revision: 274455

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

Added:
  cervisia/repos/testing-i686/
  cervisia/repos/testing-i686/PKGBUILD
(from rev 274454, cervisia/trunk/PKGBUILD)
  cervisia/repos/testing-x86_64/
  cervisia/repos/testing-x86_64/PKGBUILD
(from rev 274454, cervisia/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   38 ++
 testing-x86_64/PKGBUILD |   38 ++
 2 files changed, 76 insertions(+)

Copied: cervisia/repos/testing-i686/PKGBUILD (from rev 274454, 
cervisia/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:13:17 UTC (rev 274455)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=cervisia
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='CVS Frontend'
+url='http://kde.org/applications/development/cervisia/'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdesdk)
+depends=(kdesu kparts hicolor-icon-theme)
+makedepends=(extra-cmake-modules python kdoctools)
+conflicts=(kdesdk-cervisia)
+replaces=(kdesdk-cervisia)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('c779b55a42887ba7b8dc624b8a0673712d5cf1c9')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: cervisia/repos/testing-x86_64/PKGBUILD (from rev 274454, 
cervisia/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:13:17 UTC (rev 274455)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=cervisia
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='CVS Frontend'
+url='http://kde.org/applications/development/cervisia/'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdesdk)
+depends=(kdesu kparts hicolor-icon-theme)
+makedepends=(extra-cmake-modules python kdoctools)
+conflicts=(kdesdk-cervisia)
+replaces=(kdesdk-cervisia)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('c779b55a42887ba7b8dc624b8a0673712d5cf1c9')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 05:12:15
  Author: felixonmars
Revision: 274453

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

Added:
  kleopatra/repos/testing-i686/
  kleopatra/repos/testing-i686/PKGBUILD
(from rev 274452, kleopatra/trunk/PKGBUILD)
  kleopatra/repos/testing-x86_64/
  kleopatra/repos/testing-x86_64/PKGBUILD
(from rev 274452, kleopatra/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   34 ++
 testing-x86_64/PKGBUILD |   34 ++
 2 files changed, 68 insertions(+)

Copied: kleopatra/repos/testing-i686/PKGBUILD (from rev 274452, 
kleopatra/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 05:12:15 UTC (rev 274453)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=kleopatra
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Certificate Manager and Unified Crypto GUI'
+arch=(i686 x86_64)
+url='https://www.kde.org/applications/utilities/kleopatra/'
+license=(GPL LGPL FDL)
+depends=(hicolor-icon-theme libkleo kcmutils kmime)
+makedepends=(extra-cmake-modules kdoctools boost python)
+groups=(kde-applications kdepim)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('6b77ee224817283b11f78ebfb2f5fa2ef8f9f73a')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: kleopatra/repos/testing-x86_64/PKGBUILD (from rev 274452, 
kleopatra/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 05:12:15 UTC (rev 274453)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=kleopatra
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Certificate Manager and Unified Crypto GUI'
+arch=(i686 x86_64)
+url='https://www.kde.org/applications/utilities/kleopatra/'
+license=(GPL LGPL FDL)
+depends=(hicolor-icon-theme libkleo kcmutils kmime)
+makedepends=(extra-cmake-modules kdoctools boost python)
+groups=(kde-applications kdepim)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('6b77ee224817283b11f78ebfb2f5fa2ef8f9f73a')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in kleopatra (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:49:50
  Author: felixonmars
Revision: 274452

upgpkg: kleopatra 16.08.0-1

Upstream release

Added:
  kleopatra/trunk/
  kleopatra/trunk/PKGBUILD
Deleted:
  kleopatra/trunk/

--+
 PKGBUILD |   34 ++
 1 file changed, 34 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 03:49:50 UTC (rev 274452)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=kleopatra
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Certificate Manager and Unified Crypto GUI'
+arch=(i686 x86_64)
+url='https://www.kde.org/applications/utilities/kleopatra/'
+license=(GPL LGPL FDL)
+depends=(hicolor-icon-theme libkleo kcmutils kmime)
+makedepends=(extra-cmake-modules kdoctools boost python)
+groups=(kde-applications kdepim)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('6b77ee224817283b11f78ebfb2f5fa2ef8f9f73a')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: kleopatra/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in kdepim-addons/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:49:42
  Author: felixonmars
Revision: 274451

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

Added:
  kdepim-addons/repos/testing-i686/
  kdepim-addons/repos/testing-i686/PKGBUILD
(from rev 274450, kdepim-addons/trunk/PKGBUILD)
  kdepim-addons/repos/testing-x86_64/
  kdepim-addons/repos/testing-x86_64/PKGBUILD
(from rev 274450, kdepim-addons/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   34 ++
 testing-x86_64/PKGBUILD |   34 ++
 2 files changed, 68 insertions(+)

Copied: kdepim-addons/repos/testing-i686/PKGBUILD (from rev 274450, 
kdepim-addons/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 03:49:42 UTC (rev 274451)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=kdepim-addons
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Addons for KDE PIM applications'
+arch=(i686 x86_64)
+url='https://community.kde.org/KDE_PIM'
+license=(GPL LGPL FDL)
+depends=(mailcommon incidenceeditor libktnef libkgapi)
+makedepends=(extra-cmake-modules kdoctools boost python kdesignerplugin)
+groups=(kde-applications kdepim)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('4059e8f12b205ac7d4ea9931b9269c4aab909faa')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: kdepim-addons/repos/testing-x86_64/PKGBUILD (from rev 274450, 
kdepim-addons/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 03:49:42 UTC (rev 274451)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=kdepim-addons
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Addons for KDE PIM applications'
+arch=(i686 x86_64)
+url='https://community.kde.org/KDE_PIM'
+license=(GPL LGPL FDL)
+depends=(mailcommon incidenceeditor libktnef libkgapi)
+makedepends=(extra-cmake-modules kdoctools boost python kdesignerplugin)
+groups=(kde-applications kdepim)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('4059e8f12b205ac7d4ea9931b9269c4aab909faa')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in kdepim-addons (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:49:17
  Author: felixonmars
Revision: 274450

upgpkg: kdepim-addons 16.08.0-1

Upstream release

Added:
  kdepim-addons/trunk/
  kdepim-addons/trunk/PKGBUILD
Deleted:
  kdepim-addons/trunk/

--+
 PKGBUILD |   34 ++
 1 file changed, 34 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 03:49:17 UTC (rev 274450)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=kdepim-addons
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Addons for KDE PIM applications'
+arch=(i686 x86_64)
+url='https://community.kde.org/KDE_PIM'
+license=(GPL LGPL FDL)
+depends=(mailcommon incidenceeditor libktnef libkgapi)
+makedepends=(extra-cmake-modules kdoctools boost python kdesignerplugin)
+groups=(kde-applications kdepim)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('4059e8f12b205ac7d4ea9931b9269c4aab909faa')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: kdepim-addons/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:48:37
  Author: felixonmars
Revision: 274449

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

Added:
  kdepim/repos/testing-i686/
  kdepim/repos/testing-i686/PKGBUILD
(from rev 274448, kdepim/trunk/PKGBUILD)
  kdepim/repos/testing-x86_64/
  kdepim/repos/testing-x86_64/PKGBUILD
(from rev 274448, kdepim/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |  205 ++
 testing-x86_64/PKGBUILD |  205 ++
 2 files changed, 410 insertions(+)

Copied: kdepim/repos/testing-i686/PKGBUILD (from rev 274448, 
kdepim/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 03:48:37 UTC (rev 274449)
@@ -0,0 +1,205 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=kdepim
+pkgname=(akonadiconsole akregator blogilo konsolekalendar kaddressbook kalarm 
kmail knotes kontact korganizer ktnef kdepim-common)
+pkgver=16.08.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://pim.kde.org'
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdepim')
+makedepends=(extra-cmake-modules kdepim-runtime qt5-tools kdoctools knewstuff 
kpimtextedit
+   ktexteditor kdnssd kldap libktnef kontactinterface 
kxmlrpcclient kblog akonadi-search boost
+   libgravatar mailcommon incidenceeditor libksieve python 
kdesignerplugin)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgbase-$pkgver.tar.xz;)
+sha1sums=('7035c9651038c456f77eef9c2ba1f1f8b7d1e9f0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+   cd build
+   cmake ../$pkgbase-$pkgver \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_TESTING=OFF \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DKDE_INSTALL_LIBDIR=lib \
+   -DKDE_INSTALL_LIBEXECDIR=lib
+   make
+}
+
+package_akonadiconsole() {
+   pkgdesc='Akonadi Management and Debugging Console'
+   depends=(calendarsupport messagelib hicolor-icon-theme)
+   conflicts=("kdepim-$pkgname")
+   replaces=("kdepim-$pkgname")
+   url='http://pim.kde.org'
+
+   cd build/akonadiconsole
+   make DESTDIR="$pkgdir" install
+}
+
+package_akregator() {
+   pkgdesc='A Feed Reader for KDE'
+   depends=('kdepim-common' 'kontactinterface')
+conflicts=("kdepim-$pkgname")
+replaces=("kdepim-$pkgname")
+   url="http://kde.org/applications/internet/akregator/;
+
+   cd build/akregator
+   make DESTDIR="$pkgdir" install
+
+   cd "$srcdir"/build/doc/akregator
+   make DESTDIR="$pkgdir" install
+}
+
+package_blogilo() {
+   pkgdesc='A KDE Blogging Client'
+   depends=('kdepim-common' 'kblog' 'ktexteditor')
+conflicts=("kdepim-$pkgname")
+replaces=("kdepim-$pkgname")
+   url="http://kde.org/applications/internet/blogilo/;
+   cd build/blogilo
+   make DESTDIR="$pkgdir" install
+   cd "$srcdir"/build/doc/blogilo
+   make DESTDIR="$pkgdir" install
+}
+
+package_konsolekalendar() {
+   pkgdesc='Command line tool for accessing calendar files'
+   depends=(calendarsupport hicolor-icon-theme)
+   conflicts=('kdepim-console')
+   replaces=('kdepim-console')
+   url='http://pim.kde.org'
+
+   cd build/console
+   make DESTDIR="$pkgdir" install
+
+cd "$srcdir"/build/doc/konsolekalendar
+make DESTDIR="$pkgdir" install
+}
+
+package_kaddressbook() {
+   pkgdesc='Contact Manager'
+   depends=('kdepim-common' 'kontactinterface')
+optdepends=('kdepim-addons: additional plugins')
+conflicts=("kdepim-$pkgname")
+replaces=("kdepim-$pkgname")
+   url="http://kde.org/applications/office/kaddressbook/;
+
+   cd "$srcdir"/build/kaddressbook
+   make DESTDIR="$pkgdir" install
+}
+
+package_kalarm() {
+   pkgdesc='Personal Alarm Scheduler'
+   depends=('kdepim-common')
+conflicts=("kdepim-$pkgname")
+replaces=("kdepim-$pkgname")
+   url="http://kde.org/applications/utilities/kalarm/;
+
+   cd build/kalarm
+   make DESTDIR="$pkgdir" install
+
+   cd "$srcdir"/build/doc/kalarm
+   make DESTDIR="$pkgdir" install
+}
+
+package_kmail() {
+   pkgdesc='Mail Client'
+   depends=(kdepim-common kontactinterface libksieve)
+optdepends=('kleopatra: mail encryption support' 'kdepim-addons: 
additional plugins')
+conflicts=("kdepim-$pkgname")
+replaces=("kdepim-$pkgname")
+   url="http://kde.org/applications/internet/kmail/;
+
+   for _i in kmail storageservicemanager importwizard grantleeeditor 
mboximporter sieveeditor; do
+ cd "$srcdir"/build/$_i
+ make DESTDIR="$pkgdir" 

[arch-commits] Commit in telepathy-kde-text-ui/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:48:00
  Author: felixonmars
Revision: 274447

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

Added:
  telepathy-kde-text-ui/repos/testing-i686/
  telepathy-kde-text-ui/repos/testing-i686/PKGBUILD
(from rev 274446, telepathy-kde-text-ui/trunk/PKGBUILD)
  telepathy-kde-text-ui/repos/testing-x86_64/
  telepathy-kde-text-ui/repos/testing-x86_64/PKGBUILD
(from rev 274446, telepathy-kde-text-ui/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   38 ++
 testing-x86_64/PKGBUILD |   38 ++
 2 files changed, 76 insertions(+)

Copied: telepathy-kde-text-ui/repos/testing-i686/PKGBUILD (from rev 274446, 
telepathy-kde-text-ui/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 03:48:00 UTC (rev 274447)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-text-ui
+_pkgname=ktp-text-ui
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Telepathy handler for Text Chats'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-kde-common-internals' 'kdewebkit' 'kemoticons')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('432472edbf2688e0048d9f8088a7c8a0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: telepathy-kde-text-ui/repos/testing-x86_64/PKGBUILD (from rev 274446, 
telepathy-kde-text-ui/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 03:48:00 UTC (rev 274447)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-text-ui
+_pkgname=ktp-text-ui
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Telepathy handler for Text Chats'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-kde-common-internals' 'kdewebkit' 'kemoticons')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('432472edbf2688e0048d9f8088a7c8a0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in kdepim (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:48:08
  Author: felixonmars
Revision: 274448

upgpkg: kdepim 16.08.0-1

Upstream release

Added:
  kdepim/trunk/
  kdepim/trunk/PKGBUILD
Deleted:
  kdepim/trunk/

--+
 PKGBUILD |  205 +
 1 file changed, 205 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 03:48:08 UTC (rev 274448)
@@ -0,0 +1,205 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=kdepim
+pkgname=(akonadiconsole akregator blogilo konsolekalendar kaddressbook kalarm 
kmail knotes kontact korganizer ktnef kdepim-common)
+pkgver=16.08.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://pim.kde.org'
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdepim')
+makedepends=(extra-cmake-modules kdepim-runtime qt5-tools kdoctools knewstuff 
kpimtextedit
+   ktexteditor kdnssd kldap libktnef kontactinterface 
kxmlrpcclient kblog akonadi-search boost
+   libgravatar mailcommon incidenceeditor libksieve python 
kdesignerplugin)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgbase-$pkgver.tar.xz;)
+sha1sums=('7035c9651038c456f77eef9c2ba1f1f8b7d1e9f0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+   cd build
+   cmake ../$pkgbase-$pkgver \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_TESTING=OFF \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DKDE_INSTALL_LIBDIR=lib \
+   -DKDE_INSTALL_LIBEXECDIR=lib
+   make
+}
+
+package_akonadiconsole() {
+   pkgdesc='Akonadi Management and Debugging Console'
+   depends=(calendarsupport messagelib hicolor-icon-theme)
+   conflicts=("kdepim-$pkgname")
+   replaces=("kdepim-$pkgname")
+   url='http://pim.kde.org'
+
+   cd build/akonadiconsole
+   make DESTDIR="$pkgdir" install
+}
+
+package_akregator() {
+   pkgdesc='A Feed Reader for KDE'
+   depends=('kdepim-common' 'kontactinterface')
+conflicts=("kdepim-$pkgname")
+replaces=("kdepim-$pkgname")
+   url="http://kde.org/applications/internet/akregator/;
+
+   cd build/akregator
+   make DESTDIR="$pkgdir" install
+
+   cd "$srcdir"/build/doc/akregator
+   make DESTDIR="$pkgdir" install
+}
+
+package_blogilo() {
+   pkgdesc='A KDE Blogging Client'
+   depends=('kdepim-common' 'kblog' 'ktexteditor')
+conflicts=("kdepim-$pkgname")
+replaces=("kdepim-$pkgname")
+   url="http://kde.org/applications/internet/blogilo/;
+   cd build/blogilo
+   make DESTDIR="$pkgdir" install
+   cd "$srcdir"/build/doc/blogilo
+   make DESTDIR="$pkgdir" install
+}
+
+package_konsolekalendar() {
+   pkgdesc='Command line tool for accessing calendar files'
+   depends=(calendarsupport hicolor-icon-theme)
+   conflicts=('kdepim-console')
+   replaces=('kdepim-console')
+   url='http://pim.kde.org'
+
+   cd build/console
+   make DESTDIR="$pkgdir" install
+
+cd "$srcdir"/build/doc/konsolekalendar
+make DESTDIR="$pkgdir" install
+}
+
+package_kaddressbook() {
+   pkgdesc='Contact Manager'
+   depends=('kdepim-common' 'kontactinterface')
+optdepends=('kdepim-addons: additional plugins')
+conflicts=("kdepim-$pkgname")
+replaces=("kdepim-$pkgname")
+   url="http://kde.org/applications/office/kaddressbook/;
+
+   cd "$srcdir"/build/kaddressbook
+   make DESTDIR="$pkgdir" install
+}
+
+package_kalarm() {
+   pkgdesc='Personal Alarm Scheduler'
+   depends=('kdepim-common')
+conflicts=("kdepim-$pkgname")
+replaces=("kdepim-$pkgname")
+   url="http://kde.org/applications/utilities/kalarm/;
+
+   cd build/kalarm
+   make DESTDIR="$pkgdir" install
+
+   cd "$srcdir"/build/doc/kalarm
+   make DESTDIR="$pkgdir" install
+}
+
+package_kmail() {
+   pkgdesc='Mail Client'
+   depends=(kdepim-common kontactinterface libksieve)
+optdepends=('kleopatra: mail encryption support' 'kdepim-addons: 
additional plugins')
+conflicts=("kdepim-$pkgname")
+replaces=("kdepim-$pkgname")
+   url="http://kde.org/applications/internet/kmail/;
+
+   for _i in kmail storageservicemanager importwizard grantleeeditor 
mboximporter sieveeditor; do
+ cd "$srcdir"/build/$_i
+ make DESTDIR="$pkgdir" install
+   done
+
+for _i in akonadi_archivemail_agent kmail importwizard sieveeditor; do
+  cd "$srcdir"/build/doc/$_i
+  make DESTDIR="$pkgdir" install
+done
+}
+
+package_knotes() {
+   pkgdesc='Popup Notes'
+   depends=('kdepim-common' 'kontactinterface')
+conflicts=("kdepim-$pkgname")
+   

[arch-commits] Commit in telepathy-kde-send-file/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:47:28
  Author: felixonmars
Revision: 274445

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

Added:
  telepathy-kde-send-file/repos/testing-i686/
  telepathy-kde-send-file/repos/testing-i686/PKGBUILD
(from rev 27, telepathy-kde-send-file/trunk/PKGBUILD)
  telepathy-kde-send-file/repos/testing-x86_64/
  telepathy-kde-send-file/repos/testing-x86_64/PKGBUILD
(from rev 27, telepathy-kde-send-file/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   37 +
 testing-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: telepathy-kde-send-file/repos/testing-i686/PKGBUILD (from rev 27, 
telepathy-kde-send-file/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 03:47:28 UTC (rev 274445)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+
+pkgname=telepathy-kde-send-file
+_pkgname=ktp-send-file
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='A File manager plugin to launch a file transfer job with a specified 
contact'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-kde-common-internals')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('d3a57800ecc875fc3a79823be8e7a5e0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: telepathy-kde-send-file/repos/testing-x86_64/PKGBUILD (from rev 27, 
telepathy-kde-send-file/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 03:47:28 UTC (rev 274445)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+
+pkgname=telepathy-kde-send-file
+_pkgname=ktp-send-file
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='A File manager plugin to launch a file transfer job with a specified 
contact'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-kde-common-internals')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('d3a57800ecc875fc3a79823be8e7a5e0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in telepathy-kde-text-ui (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:47:35
  Author: felixonmars
Revision: 274446

upgpkg: telepathy-kde-text-ui 16.08.0-1

Upstream release

Added:
  telepathy-kde-text-ui/trunk/
  telepathy-kde-text-ui/trunk/PKGBUILD
Deleted:
  telepathy-kde-text-ui/trunk/

--+
 PKGBUILD |   38 ++
 1 file changed, 38 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 03:47:35 UTC (rev 274446)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-text-ui
+_pkgname=ktp-text-ui
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Telepathy handler for Text Chats'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-kde-common-internals' 'kdewebkit' 'kemoticons')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('432472edbf2688e0048d9f8088a7c8a0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


Property changes on: telepathy-kde-text-ui/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in telepathy-kde-integration-module/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:46:55
  Author: felixonmars
Revision: 274443

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

Added:
  telepathy-kde-integration-module/repos/testing-i686/
  telepathy-kde-integration-module/repos/testing-i686/PKGBUILD
(from rev 274442, telepathy-kde-integration-module/trunk/PKGBUILD)
  telepathy-kde-integration-module/repos/testing-x86_64/
  telepathy-kde-integration-module/repos/testing-x86_64/PKGBUILD
(from rev 274442, telepathy-kde-integration-module/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   37 +
 testing-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: telepathy-kde-integration-module/repos/testing-i686/PKGBUILD (from rev 
274442, telepathy-kde-integration-module/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 03:46:55 UTC (rev 274443)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-integration-module
+_pkgname=ktp-kded-module
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Sits in KDED and takes care of various bits of system integration 
like setting user to auto-away or handling connection errors'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-kde-common-internals' 'kidletime')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('6b234f886002dc664076e1ac3248e158')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: telepathy-kde-integration-module/repos/testing-x86_64/PKGBUILD (from 
rev 274442, telepathy-kde-integration-module/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 03:46:55 UTC (rev 274443)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-integration-module
+_pkgname=ktp-kded-module
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Sits in KDED and takes care of various bits of system integration 
like setting user to auto-away or handling connection errors'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-kde-common-internals' 'kidletime')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('6b234f886002dc664076e1ac3248e158')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in telepathy-kde-send-file (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:47:03
  Author: felixonmars
Revision: 27

upgpkg: telepathy-kde-send-file 16.08.0-1

Upstream release

Added:
  telepathy-kde-send-file/trunk/
  telepathy-kde-send-file/trunk/PKGBUILD
Deleted:
  telepathy-kde-send-file/trunk/

--+
 PKGBUILD |   37 +
 1 file changed, 37 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 03:47:03 UTC (rev 27)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+
+pkgname=telepathy-kde-send-file
+_pkgname=ktp-send-file
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='A File manager plugin to launch a file transfer job with a specified 
contact'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-kde-common-internals')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('d3a57800ecc875fc3a79823be8e7a5e0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: telepathy-kde-send-file/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in telepathy-kde-filetransfer-handler/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:46:23
  Author: felixonmars
Revision: 274441

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

Added:
  telepathy-kde-filetransfer-handler/repos/testing-i686/
  telepathy-kde-filetransfer-handler/repos/testing-i686/PKGBUILD
(from rev 274440, telepathy-kde-filetransfer-handler/trunk/PKGBUILD)
  telepathy-kde-filetransfer-handler/repos/testing-x86_64/
  telepathy-kde-filetransfer-handler/repos/testing-x86_64/PKGBUILD
(from rev 274440, telepathy-kde-filetransfer-handler/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   38 ++
 testing-x86_64/PKGBUILD |   38 ++
 2 files changed, 76 insertions(+)

Copied: telepathy-kde-filetransfer-handler/repos/testing-i686/PKGBUILD (from 
rev 274440, telepathy-kde-filetransfer-handler/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 03:46:23 UTC (rev 274441)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-filetransfer-handler
+_pkgname=ktp-filetransfer-handler
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='KDE Telepathy file transfer handler'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-kde-common-internals')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('0f195897513242afa55ead1304f8a3b8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: telepathy-kde-filetransfer-handler/repos/testing-x86_64/PKGBUILD (from 
rev 274440, telepathy-kde-filetransfer-handler/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 03:46:23 UTC (rev 274441)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-filetransfer-handler
+_pkgname=ktp-filetransfer-handler
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='KDE Telepathy file transfer handler'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-kde-common-internals')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('0f195897513242afa55ead1304f8a3b8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in telepathy-kde-filetransfer-handler (3 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:45:53
  Author: felixonmars
Revision: 274440

upgpkg: telepathy-kde-filetransfer-handler 16.08.0-1

Upstream release

Added:
  telepathy-kde-filetransfer-handler/trunk/
  telepathy-kde-filetransfer-handler/trunk/PKGBUILD
Deleted:
  telepathy-kde-filetransfer-handler/trunk/

--+
 PKGBUILD |   38 ++
 1 file changed, 38 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 03:45:53 UTC (rev 274440)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-filetransfer-handler
+_pkgname=ktp-filetransfer-handler
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='KDE Telepathy file transfer handler'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-kde-common-internals')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('0f195897513242afa55ead1304f8a3b8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


Property changes on: telepathy-kde-filetransfer-handler/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in telepathy-kde-integration-module (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:46:30
  Author: felixonmars
Revision: 274442

upgpkg: telepathy-kde-integration-module 16.08.0-1

Upstream release

Added:
  telepathy-kde-integration-module/trunk/
  telepathy-kde-integration-module/trunk/PKGBUILD
Deleted:
  telepathy-kde-integration-module/trunk/

--+
 PKGBUILD |   37 +
 1 file changed, 37 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 03:46:30 UTC (rev 274442)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-integration-module
+_pkgname=ktp-kded-module
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Sits in KDED and takes care of various bits of system integration 
like setting user to auto-away or handling connection errors'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-kde-common-internals' 'kidletime')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('6b234f886002dc664076e1ac3248e158')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


Property changes on: telepathy-kde-integration-module/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in telepathy-kde-desktop-applets/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:45:46
  Author: felixonmars
Revision: 274439

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

Added:
  telepathy-kde-desktop-applets/repos/testing-i686/
  telepathy-kde-desktop-applets/repos/testing-i686/PKGBUILD
(from rev 274438, telepathy-kde-desktop-applets/trunk/PKGBUILD)
  telepathy-kde-desktop-applets/repos/testing-x86_64/
  telepathy-kde-desktop-applets/repos/testing-x86_64/PKGBUILD
(from rev 274438, telepathy-kde-desktop-applets/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   37 +
 testing-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: telepathy-kde-desktop-applets/repos/testing-i686/PKGBUILD (from rev 
274438, telepathy-kde-desktop-applets/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 03:45:46 UTC (rev 274439)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-desktop-applets
+_pkgname=ktp-desktop-applets
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='The KDE-Telepathy Plasma desktop applets'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-kde-common-internals' 'telepathy-kde-accounts-kcm')
+makedepends=('extra-cmake-modules' 'plasma-framework')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('20148fb62f1b5777b501816f669d1597')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: telepathy-kde-desktop-applets/repos/testing-x86_64/PKGBUILD (from rev 
274438, telepathy-kde-desktop-applets/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 03:45:46 UTC (rev 274439)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-desktop-applets
+_pkgname=ktp-desktop-applets
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='The KDE-Telepathy Plasma desktop applets'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-kde-common-internals' 'telepathy-kde-accounts-kcm')
+makedepends=('extra-cmake-modules' 'plasma-framework')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('20148fb62f1b5777b501816f669d1597')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in telepathy-kde-desktop-applets (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:45:19
  Author: felixonmars
Revision: 274438

upgpkg: telepathy-kde-desktop-applets 16.08.0-1

Upstream release

Added:
  telepathy-kde-desktop-applets/trunk/
  telepathy-kde-desktop-applets/trunk/PKGBUILD
Deleted:
  telepathy-kde-desktop-applets/trunk/

--+
 PKGBUILD |   37 +
 1 file changed, 37 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 03:45:19 UTC (rev 274438)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-desktop-applets
+_pkgname=ktp-desktop-applets
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='The KDE-Telepathy Plasma desktop applets'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-kde-common-internals' 'telepathy-kde-accounts-kcm')
+makedepends=('extra-cmake-modules' 'plasma-framework')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('20148fb62f1b5777b501816f669d1597')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


Property changes on: telepathy-kde-desktop-applets/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in telepathy-kde-contact-runner/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:45:12
  Author: felixonmars
Revision: 274437

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

Added:
  telepathy-kde-contact-runner/repos/testing-i686/
  telepathy-kde-contact-runner/repos/testing-i686/PKGBUILD
(from rev 274436, telepathy-kde-contact-runner/trunk/PKGBUILD)
  telepathy-kde-contact-runner/repos/testing-x86_64/
  telepathy-kde-contact-runner/repos/testing-x86_64/PKGBUILD
(from rev 274436, telepathy-kde-contact-runner/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   37 +
 testing-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: telepathy-kde-contact-runner/repos/testing-i686/PKGBUILD (from rev 
274436, telepathy-kde-contact-runner/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 03:45:12 UTC (rev 274437)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-contact-runner
+_pkgname=ktp-contact-runner
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='KRunner plugin for KDE Telepathy'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-kde-common-internals' 'krunner')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('2804e9eef7c24d654688273fac3ef538')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: telepathy-kde-contact-runner/repos/testing-x86_64/PKGBUILD (from rev 
274436, telepathy-kde-contact-runner/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 03:45:12 UTC (rev 274437)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-contact-runner
+_pkgname=ktp-contact-runner
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='KRunner plugin for KDE Telepathy'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-kde-common-internals' 'krunner')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('2804e9eef7c24d654688273fac3ef538')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in telepathy-kde-contact-list/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:44:28
  Author: felixonmars
Revision: 274435

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

Added:
  telepathy-kde-contact-list/repos/testing-i686/
  telepathy-kde-contact-list/repos/testing-i686/PKGBUILD
(from rev 274434, telepathy-kde-contact-list/trunk/PKGBUILD)
  telepathy-kde-contact-list/repos/testing-x86_64/
  telepathy-kde-contact-list/repos/testing-x86_64/PKGBUILD
(from rev 274434, telepathy-kde-contact-list/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   37 +
 testing-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: telepathy-kde-contact-list/repos/testing-i686/PKGBUILD (from rev 
274434, telepathy-kde-contact-list/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 03:44:28 UTC (rev 274435)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-contact-list
+_pkgname=ktp-contact-list
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='KDE Telepathy contact list application'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-kde-common-internals')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('b74cf8a6314f470fc2e81d8b1262e919')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: telepathy-kde-contact-list/repos/testing-x86_64/PKGBUILD (from rev 
274434, telepathy-kde-contact-list/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 03:44:28 UTC (rev 274435)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-contact-list
+_pkgname=ktp-contact-list
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='KDE Telepathy contact list application'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-kde-common-internals')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('b74cf8a6314f470fc2e81d8b1262e919')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in telepathy-kde-contact-list (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:44:03
  Author: felixonmars
Revision: 274434

upgpkg: telepathy-kde-contact-list 16.08.0-1

Upstream release

Added:
  telepathy-kde-contact-list/trunk/
  telepathy-kde-contact-list/trunk/PKGBUILD
Deleted:
  telepathy-kde-contact-list/trunk/

--+
 PKGBUILD |   37 +
 1 file changed, 37 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 03:44:03 UTC (rev 274434)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-contact-list
+_pkgname=ktp-contact-list
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='KDE Telepathy contact list application'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-kde-common-internals')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('b74cf8a6314f470fc2e81d8b1262e919')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


Property changes on: telepathy-kde-contact-list/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in telepathy-kde-contact-runner (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:44:35
  Author: felixonmars
Revision: 274436

upgpkg: telepathy-kde-contact-runner 16.08.0-1

Upstream release

Added:
  telepathy-kde-contact-runner/trunk/
  telepathy-kde-contact-runner/trunk/PKGBUILD
Deleted:
  telepathy-kde-contact-runner/trunk/

--+
 PKGBUILD |   37 +
 1 file changed, 37 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 03:44:35 UTC (rev 274436)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-contact-runner
+_pkgname=ktp-contact-runner
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='KRunner plugin for KDE Telepathy'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-kde-common-internals' 'krunner')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('2804e9eef7c24d654688273fac3ef538')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: telepathy-kde-contact-runner/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in telepathy-kde-call-ui/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:43:55
  Author: felixonmars
Revision: 274433

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

Added:
  telepathy-kde-call-ui/repos/testing-i686/
  telepathy-kde-call-ui/repos/testing-i686/PKGBUILD
(from rev 274432, telepathy-kde-call-ui/trunk/PKGBUILD)
  telepathy-kde-call-ui/repos/testing-x86_64/
  telepathy-kde-call-ui/repos/testing-x86_64/PKGBUILD
(from rev 274432, telepathy-kde-call-ui/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   36 
 testing-x86_64/PKGBUILD |   36 
 2 files changed, 72 insertions(+)

Copied: telepathy-kde-call-ui/repos/testing-i686/PKGBUILD (from rev 274432, 
telepathy-kde-call-ui/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 03:43:55 UTC (rev 274433)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=telepathy-kde-call-ui
+_pkgname=ktp-call-ui
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Voice/Video Call UI for Telepathy'
+arch=(i686 x86_64)
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=(GPL)
+groups=(kde-applications kdenetwork telepathy-kde)
+depends=(telepathy-kde-common-internals qt5-gstreamer)
+makedepends=(extra-cmake-modules boost python)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$_pkgname-$pkgver.tar.xz;)
+md5sums=('3320150fb1a3cb9e0bbd3a683f3b1df8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: telepathy-kde-call-ui/repos/testing-x86_64/PKGBUILD (from rev 274432, 
telepathy-kde-call-ui/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 03:43:55 UTC (rev 274433)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=telepathy-kde-call-ui
+_pkgname=ktp-call-ui
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Voice/Video Call UI for Telepathy'
+arch=(i686 x86_64)
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=(GPL)
+groups=(kde-applications kdenetwork telepathy-kde)
+depends=(telepathy-kde-common-internals qt5-gstreamer)
+makedepends=(extra-cmake-modules boost python)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$_pkgname-$pkgver.tar.xz;)
+md5sums=('3320150fb1a3cb9e0bbd3a683f3b1df8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in telepathy-kde-call-ui (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:43:30
  Author: felixonmars
Revision: 274432

upgpkg: telepathy-kde-call-ui 16.08.0-1

Upstream release

Added:
  telepathy-kde-call-ui/trunk/
  telepathy-kde-call-ui/trunk/PKGBUILD
Deleted:
  telepathy-kde-call-ui/trunk/

--+
 PKGBUILD |   36 
 1 file changed, 36 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 03:43:30 UTC (rev 274432)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=telepathy-kde-call-ui
+_pkgname=ktp-call-ui
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Voice/Video Call UI for Telepathy'
+arch=(i686 x86_64)
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=(GPL)
+groups=(kde-applications kdenetwork telepathy-kde)
+depends=(telepathy-kde-common-internals qt5-gstreamer)
+makedepends=(extra-cmake-modules boost python)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$_pkgname-$pkgver.tar.xz;)
+md5sums=('3320150fb1a3cb9e0bbd3a683f3b1df8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: telepathy-kde-call-ui/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in telepathy-kde-auth-handler (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:42:57
  Author: felixonmars
Revision: 274430

upgpkg: telepathy-kde-auth-handler 16.08.0-1

Upstream release

Added:
  telepathy-kde-auth-handler/trunk/
  telepathy-kde-auth-handler/trunk/PKGBUILD
Deleted:
  telepathy-kde-auth-handler/trunk/

--+
 PKGBUILD |   38 ++
 1 file changed, 38 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 03:42:57 UTC (rev 274430)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-auth-handler
+_pkgname=ktp-auth-handler
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Provide UI/KWallet Integration For Passwords and SSL Errors on 
Account Connect'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('qca-qt5' 'telepathy-kde-common-internals')
+makedepends=('extra-cmake-modules' 'python' 'kdewebkit')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('ed199da6e1cb6c0bbdad8f4f66ca99e9')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: telepathy-kde-auth-handler/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in telepathy-kde-approver/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:42:50
  Author: felixonmars
Revision: 274429

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

Added:
  telepathy-kde-approver/repos/testing-i686/
  telepathy-kde-approver/repos/testing-i686/PKGBUILD
(from rev 274428, telepathy-kde-approver/trunk/PKGBUILD)
  telepathy-kde-approver/repos/testing-x86_64/
  telepathy-kde-approver/repos/testing-x86_64/PKGBUILD
(from rev 274428, telepathy-kde-approver/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   37 +
 testing-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: telepathy-kde-approver/repos/testing-i686/PKGBUILD (from rev 274428, 
telepathy-kde-approver/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 03:42:50 UTC (rev 274429)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-approver
+_pkgname=ktp-approver
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='KDE Channel Approver for Telepathy'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-qt5' 'knotifications' 'kservice')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('94b590f08dd362723b58e50e02f74633')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DSYSCONF_INSTALL_DIR=/etc 
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: telepathy-kde-approver/repos/testing-x86_64/PKGBUILD (from rev 274428, 
telepathy-kde-approver/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 03:42:50 UTC (rev 274429)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-approver
+_pkgname=ktp-approver
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='KDE Channel Approver for Telepathy'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-qt5' 'knotifications' 'kservice')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('94b590f08dd362723b58e50e02f74633')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DSYSCONF_INSTALL_DIR=/etc 
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in telepathy-kde-auth-handler/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:43:23
  Author: felixonmars
Revision: 274431

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

Added:
  telepathy-kde-auth-handler/repos/testing-i686/
  telepathy-kde-auth-handler/repos/testing-i686/PKGBUILD
(from rev 274430, telepathy-kde-auth-handler/trunk/PKGBUILD)
  telepathy-kde-auth-handler/repos/testing-x86_64/
  telepathy-kde-auth-handler/repos/testing-x86_64/PKGBUILD
(from rev 274430, telepathy-kde-auth-handler/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   38 ++
 testing-x86_64/PKGBUILD |   38 ++
 2 files changed, 76 insertions(+)

Copied: telepathy-kde-auth-handler/repos/testing-i686/PKGBUILD (from rev 
274430, telepathy-kde-auth-handler/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 03:43:23 UTC (rev 274431)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-auth-handler
+_pkgname=ktp-auth-handler
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Provide UI/KWallet Integration For Passwords and SSL Errors on 
Account Connect'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('qca-qt5' 'telepathy-kde-common-internals')
+makedepends=('extra-cmake-modules' 'python' 'kdewebkit')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('ed199da6e1cb6c0bbdad8f4f66ca99e9')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: telepathy-kde-auth-handler/repos/testing-x86_64/PKGBUILD (from rev 
274430, telepathy-kde-auth-handler/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 03:43:23 UTC (rev 274431)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-auth-handler
+_pkgname=ktp-auth-handler
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Provide UI/KWallet Integration For Passwords and SSL Errors on 
Account Connect'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('qca-qt5' 'telepathy-kde-common-internals')
+makedepends=('extra-cmake-modules' 'python' 'kdewebkit')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('ed199da6e1cb6c0bbdad8f4f66ca99e9')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in telepathy-kde-accounts-kcm/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:42:17
  Author: felixonmars
Revision: 274427

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

Added:
  telepathy-kde-accounts-kcm/repos/testing-i686/
  telepathy-kde-accounts-kcm/repos/testing-i686/PKGBUILD
(from rev 274426, telepathy-kde-accounts-kcm/trunk/PKGBUILD)
  telepathy-kde-accounts-kcm/repos/testing-x86_64/
  telepathy-kde-accounts-kcm/repos/testing-x86_64/PKGBUILD
(from rev 274426, telepathy-kde-accounts-kcm/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   38 ++
 testing-x86_64/PKGBUILD |   38 ++
 2 files changed, 76 insertions(+)

Copied: telepathy-kde-accounts-kcm/repos/testing-i686/PKGBUILD (from rev 
274426, telepathy-kde-accounts-kcm/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 03:42:17 UTC (rev 274427)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-accounts-kcm
+_pkgname=ktp-accounts-kcm
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='KCM Module for configuring Telepathy Instant Messaging Accounts'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-qt5' 'kaccounts-providers')
+makedepends=('extra-cmake-modules' 'intltool' 'python')
+optdepends=('telepathy-gabble: XMPP/Jabber accounts support' 'telepathy-haze: 
account types supported by Pidgin/libpurple')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('2384b28bcce9f49ab8328f56ad366f0f')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: telepathy-kde-accounts-kcm/repos/testing-x86_64/PKGBUILD (from rev 
274426, telepathy-kde-accounts-kcm/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 03:42:17 UTC (rev 274427)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-accounts-kcm
+_pkgname=ktp-accounts-kcm
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='KCM Module for configuring Telepathy Instant Messaging Accounts'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-qt5' 'kaccounts-providers')
+makedepends=('extra-cmake-modules' 'intltool' 'python')
+optdepends=('telepathy-gabble: XMPP/Jabber accounts support' 'telepathy-haze: 
account types supported by Pidgin/libpurple')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('2384b28bcce9f49ab8328f56ad366f0f')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in telepathy-kde-approver (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:42:25
  Author: felixonmars
Revision: 274428

upgpkg: telepathy-kde-approver 16.08.0-1

Upstream release

Added:
  telepathy-kde-approver/trunk/
  telepathy-kde-approver/trunk/PKGBUILD
Deleted:
  telepathy-kde-approver/trunk/

--+
 PKGBUILD |   37 +
 1 file changed, 37 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 03:42:25 UTC (rev 274428)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-approver
+_pkgname=ktp-approver
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='KDE Channel Approver for Telepathy'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-qt5' 'knotifications' 'kservice')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('94b590f08dd362723b58e50e02f74633')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DSYSCONF_INSTALL_DIR=/etc 
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: telepathy-kde-approver/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in telepathy-kde-accounts-kcm (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:41:52
  Author: felixonmars
Revision: 274426

upgpkg: telepathy-kde-accounts-kcm 16.08.0-1

Upstream release

Added:
  telepathy-kde-accounts-kcm/trunk/
  telepathy-kde-accounts-kcm/trunk/PKGBUILD
Deleted:
  telepathy-kde-accounts-kcm/trunk/

--+
 PKGBUILD |   38 ++
 1 file changed, 38 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 03:41:52 UTC (rev 274426)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-accounts-kcm
+_pkgname=ktp-accounts-kcm
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='KCM Module for configuring Telepathy Instant Messaging Accounts'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-qt5' 'kaccounts-providers')
+makedepends=('extra-cmake-modules' 'intltool' 'python')
+optdepends=('telepathy-gabble: XMPP/Jabber accounts support' 'telepathy-haze: 
account types supported by Pidgin/libpurple')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('2384b28bcce9f49ab8328f56ad366f0f')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: telepathy-kde-accounts-kcm/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in kio-extras (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:41:18
  Author: felixonmars
Revision: 274424

upgpkg: kio-extras 16.08.0-1

Upstream release

Added:
  kio-extras/trunk/
  kio-extras/trunk/PKGBUILD
Deleted:
  kio-extras/trunk/

--+
 PKGBUILD |   37 +
 1 file changed, 37 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 03:41:18 UTC (rev 274424)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kio-extras
+pkgver=16.08.0
+pkgrel=1
+pkgdesc="Additional components to increase the functionality of KIO"
+arch=(i686 x86_64)
+url='https://www.kde.org/applications/internet/'
+license=(LGPL)
+depends=(kdelibs4support khtml kdnssd libssh smbclient exiv2 openexr openslp 
libmtp kpty kactivities)
+makedepends=(extra-cmake-modules kdoctools kdesignerplugin)
+groups=(kde-applications kdenetwork)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('d9be861f92a9b7d090ba07341e680fcc')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+


Property changes on: kio-extras/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:41:43
  Author: felixonmars
Revision: 274425

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

Added:
  kio-extras/repos/testing-i686/
  kio-extras/repos/testing-i686/PKGBUILD
(from rev 274424, kio-extras/trunk/PKGBUILD)
  kio-extras/repos/testing-x86_64/
  kio-extras/repos/testing-x86_64/PKGBUILD
(from rev 274424, kio-extras/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   37 +
 testing-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: kio-extras/repos/testing-i686/PKGBUILD (from rev 274424, 
kio-extras/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 03:41:43 UTC (rev 274425)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kio-extras
+pkgver=16.08.0
+pkgrel=1
+pkgdesc="Additional components to increase the functionality of KIO"
+arch=(i686 x86_64)
+url='https://www.kde.org/applications/internet/'
+license=(LGPL)
+depends=(kdelibs4support khtml kdnssd libssh smbclient exiv2 openexr openslp 
libmtp kpty kactivities)
+makedepends=(extra-cmake-modules kdoctools kdesignerplugin)
+groups=(kde-applications kdenetwork)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('d9be861f92a9b7d090ba07341e680fcc')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+

Copied: kio-extras/repos/testing-x86_64/PKGBUILD (from rev 274424, 
kio-extras/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 03:41:43 UTC (rev 274425)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kio-extras
+pkgver=16.08.0
+pkgrel=1
+pkgdesc="Additional components to increase the functionality of KIO"
+arch=(i686 x86_64)
+url='https://www.kde.org/applications/internet/'
+license=(LGPL)
+depends=(kdelibs4support khtml kdnssd libssh smbclient exiv2 openexr openslp 
libmtp kpty kactivities)
+makedepends=(extra-cmake-modules kdoctools kdesignerplugin)
+groups=(kde-applications kdenetwork)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('d9be861f92a9b7d090ba07341e680fcc')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+


[arch-commits] Commit in kdenetwork-zeroconf-ioslave/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:41:11
  Author: felixonmars
Revision: 274423

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

Added:
  kdenetwork-zeroconf-ioslave/repos/testing-i686/
  kdenetwork-zeroconf-ioslave/repos/testing-i686/PKGBUILD
(from rev 274422, kdenetwork-zeroconf-ioslave/trunk/PKGBUILD)
  kdenetwork-zeroconf-ioslave/repos/testing-x86_64/
  kdenetwork-zeroconf-ioslave/repos/testing-x86_64/PKGBUILD
(from rev 274422, kdenetwork-zeroconf-ioslave/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   36 
 testing-x86_64/PKGBUILD |   36 
 2 files changed, 72 insertions(+)

Copied: kdenetwork-zeroconf-ioslave/repos/testing-i686/PKGBUILD (from rev 
274422, kdenetwork-zeroconf-ioslave/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 03:41:11 UTC (rev 274423)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdenetwork-zeroconf-ioslave
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Network Monitor for DNS-SD services (Zeroconf)'
+url='https://www.kde.org/applications/internet/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdenetwork')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+conflicts=('kdenetwork-kdnssd')
+replaces=('kdenetwork-kdnssd')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/zeroconf-ioslave-${pkgver}.tar.xz;)
+sha1sums=('5b5c110d0fa8b0a90442fea3e5bf74b3f91372e3')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../zeroconf-ioslave-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdenetwork-zeroconf-ioslave/repos/testing-x86_64/PKGBUILD (from rev 
274422, kdenetwork-zeroconf-ioslave/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 03:41:11 UTC (rev 274423)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdenetwork-zeroconf-ioslave
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Network Monitor for DNS-SD services (Zeroconf)'
+url='https://www.kde.org/applications/internet/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdenetwork')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+conflicts=('kdenetwork-kdnssd')
+replaces=('kdenetwork-kdnssd')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/zeroconf-ioslave-${pkgver}.tar.xz;)
+sha1sums=('5b5c110d0fa8b0a90442fea3e5bf74b3f91372e3')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../zeroconf-ioslave-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}


[arch-commits] Commit in kdenetwork-zeroconf-ioslave (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:40:45
  Author: felixonmars
Revision: 274422

upgpkg: kdenetwork-zeroconf-ioslave 16.08.0-1

Upstream release

Added:
  kdenetwork-zeroconf-ioslave/trunk/
  kdenetwork-zeroconf-ioslave/trunk/PKGBUILD
Deleted:
  kdenetwork-zeroconf-ioslave/trunk/

--+
 PKGBUILD |   36 
 1 file changed, 36 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 03:40:45 UTC (rev 274422)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdenetwork-zeroconf-ioslave
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Network Monitor for DNS-SD services (Zeroconf)'
+url='https://www.kde.org/applications/internet/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdenetwork')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+conflicts=('kdenetwork-kdnssd')
+replaces=('kdenetwork-kdnssd')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/zeroconf-ioslave-${pkgver}.tar.xz;)
+sha1sums=('5b5c110d0fa8b0a90442fea3e5bf74b3f91372e3')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../zeroconf-ioslave-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}


Property changes on: kdenetwork-zeroconf-ioslave/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:40:02
  Author: felixonmars
Revision: 274419

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

Added:
  krdc/repos/testing-i686/
  krdc/repos/testing-i686/PKGBUILD
(from rev 274418, krdc/trunk/PKGBUILD)
  krdc/repos/testing-x86_64/
  krdc/repos/testing-x86_64/PKGBUILD
(from rev 274418, krdc/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   41 +
 testing-x86_64/PKGBUILD |   41 +
 2 files changed, 82 insertions(+)

Copied: krdc/repos/testing-i686/PKGBUILD (from rev 274418, krdc/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 03:40:02 UTC (rev 274419)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=krdc
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Remote Desktop Client'
+url='http://kde.org/applications/internet/krdc/'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdenetwork)
+depends=(kcmutils kdnssd knotifyconfig)
+makedepends=(extra-cmake-modules libvncserver freerdp kdoctools python)
+optdepends=('libvncserver: VNC support'
+'freerdp: RDP support'
+'kdebase-keditbookmarks: to edit bookmarks')
+conflicts=(kdenetwork-krdc)
+replaces=(kdenetwork-krdc)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('2a6f3cd636c66b37af1ab1037c67604cbf84c326')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: krdc/repos/testing-x86_64/PKGBUILD (from rev 274418, 
krdc/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 03:40:02 UTC (rev 274419)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=krdc
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Remote Desktop Client'
+url='http://kde.org/applications/internet/krdc/'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdenetwork)
+depends=(kcmutils kdnssd knotifyconfig)
+makedepends=(extra-cmake-modules libvncserver freerdp kdoctools python)
+optdepends=('libvncserver: VNC support'
+'freerdp: RDP support'
+'kdebase-keditbookmarks: to edit bookmarks')
+conflicts=(kdenetwork-krdc)
+replaces=(kdenetwork-krdc)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('2a6f3cd636c66b37af1ab1037c67604cbf84c326')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:40:36
  Author: felixonmars
Revision: 274421

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

Added:
  krfb/repos/testing-i686/
  krfb/repos/testing-i686/PKGBUILD
(from rev 274420, krfb/trunk/PKGBUILD)
  krfb/repos/testing-i686/krfb-gcc6.patch
(from rev 274420, krfb/trunk/krfb-gcc6.patch)
  krfb/repos/testing-x86_64/
  krfb/repos/testing-x86_64/PKGBUILD
(from rev 274420, krfb/trunk/PKGBUILD)
  krfb/repos/testing-x86_64/krfb-gcc6.patch
(from rev 274420, krfb/trunk/krfb-gcc6.patch)

+
 testing-i686/PKGBUILD  |   42 +++
 testing-i686/krfb-gcc6.patch   |   13 
 testing-x86_64/PKGBUILD|   42 +++
 testing-x86_64/krfb-gcc6.patch |   13 
 4 files changed, 110 insertions(+)

Copied: krfb/repos/testing-i686/PKGBUILD (from rev 274420, krfb/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 03:40:36 UTC (rev 274421)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=krfb
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Desktop Sharing'
+url='http://www.kde.org/applications/system/krfb'
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(kdnssd kxmlgui kwallet libvncserver libxdamage)
+makedepends=(extra-cmake-modules kdoctools python)
+conflicts=(kdenetwork-krfb)
+replaces=(kdenetwork-krfb)
+groups=(kde-applications kdenetwork)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;
 krfb-gcc6.patch)
+md5sums=('72d15d4809e2b2c89a334da99d5c1018'
+ 'fc342abdbbac31a98c9839b2f61b88e7')
+
+prepare() {
+  mkdir -p build
+
+# Fix build with GCC6 (Fedora)
+  cd $pkgname-$pkgver
+  patch -p1 -i ../krfb-gcc6.patch
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: krfb/repos/testing-i686/krfb-gcc6.patch (from rev 274420, 
krfb/trunk/krfb-gcc6.patch)
===
--- testing-i686/krfb-gcc6.patch(rev 0)
+++ testing-i686/krfb-gcc6.patch2016-08-21 03:40:36 UTC (rev 274421)
@@ -0,0 +1,13 @@
+diff -up krfb-15.12.2/krfb/rfb.h.than krfb-15.12.2/krfb/rfb.h
+--- krfb-15.12.2/krfb/rfb.h.than   2016-02-18 14:31:57.918262431 +0100
 krfb-15.12.2/krfb/rfb.h2016-02-18 14:35:20.029628544 +0100
+@@ -8,6 +8,9 @@
+ 
+ #include "rfb/rfb.h"
+ 
++#ifdef max // fix conflict with max() macro using gcc6 
++#undef max
++#endif
+ #undef TRUE
+ #undef FALSE
+ 

Copied: krfb/repos/testing-x86_64/PKGBUILD (from rev 274420, 
krfb/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 03:40:36 UTC (rev 274421)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=krfb
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Desktop Sharing'
+url='http://www.kde.org/applications/system/krfb'
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(kdnssd kxmlgui kwallet libvncserver libxdamage)
+makedepends=(extra-cmake-modules kdoctools python)
+conflicts=(kdenetwork-krfb)
+replaces=(kdenetwork-krfb)
+groups=(kde-applications kdenetwork)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;
 krfb-gcc6.patch)
+md5sums=('72d15d4809e2b2c89a334da99d5c1018'
+ 'fc342abdbbac31a98c9839b2f61b88e7')
+
+prepare() {
+  mkdir -p build
+
+# Fix build with GCC6 (Fedora)
+  cd $pkgname-$pkgver
+  patch -p1 -i ../krfb-gcc6.patch
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: krfb/repos/testing-x86_64/krfb-gcc6.patch (from rev 274420, 
krfb/trunk/krfb-gcc6.patch)
===
--- testing-x86_64/krfb-gcc6.patch  (rev 0)
+++ testing-x86_64/krfb-gcc6.patch  2016-08-21 03:40:36 UTC (rev 274421)
@@ -0,0 +1,13 @@
+diff -up krfb-15.12.2/krfb/rfb.h.than krfb-15.12.2/krfb/rfb.h
+--- krfb-15.12.2/krfb/rfb.h.than   2016-02-18 14:31:57.918262431 +0100
 krfb-15.12.2/krfb/rfb.h2016-02-18 14:35:20.029628544 +0100
+@@ -8,6 +8,9 @@
+ 
+ #include "rfb/rfb.h"
+ 
++#ifdef max // fix conflict with max() macro using gcc6 
++#undef max
++#endif
+ #undef TRUE
+ #undef FALSE
+ 


[arch-commits] Commit in krfb (trunk trunk trunk/PKGBUILD trunk/krfb-gcc6.patch)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:40:11
  Author: felixonmars
Revision: 274420

upgpkg: krfb 16.08.0-1

Upstream release

Added:
  krfb/trunk/
  krfb/trunk/PKGBUILD
  krfb/trunk/krfb-gcc6.patch
Deleted:
  krfb/trunk/

-+
 PKGBUILD|   42 ++
 krfb-gcc6.patch |   13 +
 2 files changed, 55 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 03:40:11 UTC (rev 274420)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=krfb
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Desktop Sharing'
+url='http://www.kde.org/applications/system/krfb'
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(kdnssd kxmlgui kwallet libvncserver libxdamage)
+makedepends=(extra-cmake-modules kdoctools python)
+conflicts=(kdenetwork-krfb)
+replaces=(kdenetwork-krfb)
+groups=(kde-applications kdenetwork)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;
 krfb-gcc6.patch)
+md5sums=('72d15d4809e2b2c89a334da99d5c1018'
+ 'fc342abdbbac31a98c9839b2f61b88e7')
+
+prepare() {
+  mkdir -p build
+
+# Fix build with GCC6 (Fedora)
+  cd $pkgname-$pkgver
+  patch -p1 -i ../krfb-gcc6.patch
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: krfb/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: trunk/krfb-gcc6.patch
===
--- trunk/krfb-gcc6.patch   (rev 0)
+++ trunk/krfb-gcc6.patch   2016-08-21 03:40:11 UTC (rev 274420)
@@ -0,0 +1,13 @@
+diff -up krfb-15.12.2/krfb/rfb.h.than krfb-15.12.2/krfb/rfb.h
+--- krfb-15.12.2/krfb/rfb.h.than   2016-02-18 14:31:57.918262431 +0100
 krfb-15.12.2/krfb/rfb.h2016-02-18 14:35:20.029628544 +0100
+@@ -8,6 +8,9 @@
+ 
+ #include "rfb/rfb.h"
+ 
++#ifdef max // fix conflict with max() macro using gcc6 
++#undef max
++#endif
+ #undef TRUE
+ #undef FALSE
+ 


[arch-commits] Commit in kdenetwork-kppp/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:39:28
  Author: felixonmars
Revision: 274417

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

Added:
  kdenetwork-kppp/repos/testing-i686/
  kdenetwork-kppp/repos/testing-i686/PKGBUILD
(from rev 274416, kdenetwork-kppp/trunk/PKGBUILD)
  kdenetwork-kppp/repos/testing-x86_64/
  kdenetwork-kppp/repos/testing-x86_64/PKGBUILD
(from rev 274416, kdenetwork-kppp/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   31 +++
 testing-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: kdenetwork-kppp/repos/testing-i686/PKGBUILD (from rev 274416, 
kdenetwork-kppp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 03:39:28 UTC (rev 274417)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdenetwork-kppp
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Internet Dial-Up Tool'
+url='http://kde.org/applications/internet/kppp/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdenetwork')
+depends=('kdebase-runtime' 'ppp')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kppp-${pkgver}.tar.xz;)
+sha1sums=('be85b99e3b150a89b667210c3da6d305c20a3575')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../kppp-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdenetwork-kppp/repos/testing-x86_64/PKGBUILD (from rev 274416, 
kdenetwork-kppp/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 03:39:28 UTC (rev 274417)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdenetwork-kppp
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Internet Dial-Up Tool'
+url='http://kde.org/applications/internet/kppp/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdenetwork')
+depends=('kdebase-runtime' 'ppp')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kppp-${pkgver}.tar.xz;)
+sha1sums=('be85b99e3b150a89b667210c3da6d305c20a3575')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../kppp-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}


[arch-commits] Commit in krdc (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:39:36
  Author: felixonmars
Revision: 274418

upgpkg: krdc 16.08.0-1

Upstream release

Added:
  krdc/trunk/
  krdc/trunk/PKGBUILD
Deleted:
  krdc/trunk/

--+
 PKGBUILD |   41 +
 1 file changed, 41 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 03:39:36 UTC (rev 274418)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=krdc
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Remote Desktop Client'
+url='http://kde.org/applications/internet/krdc/'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdenetwork)
+depends=(kcmutils kdnssd knotifyconfig)
+makedepends=(extra-cmake-modules libvncserver freerdp kdoctools python)
+optdepends=('libvncserver: VNC support'
+'freerdp: RDP support'
+'kdebase-keditbookmarks: to edit bookmarks')
+conflicts=(kdenetwork-krdc)
+replaces=(kdenetwork-krdc)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('2a6f3cd636c66b37af1ab1037c67604cbf84c326')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: krdc/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in kdenetwork-kppp (trunk trunk trunk/PKGBUILD)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:39:01
  Author: felixonmars
Revision: 274416

upgpkg: kdenetwork-kppp 16.08.0-1

Upstream release

Added:
  kdenetwork-kppp/trunk/
  kdenetwork-kppp/trunk/PKGBUILD
Deleted:
  kdenetwork-kppp/trunk/

--+
 PKGBUILD |   31 +++
 1 file changed, 31 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2016-08-21 03:39:01 UTC (rev 274416)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdenetwork-kppp
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Internet Dial-Up Tool'
+url='http://kde.org/applications/internet/kppp/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdenetwork')
+depends=('kdebase-runtime' 'ppp')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kppp-${pkgver}.tar.xz;)
+sha1sums=('be85b99e3b150a89b667210c3da6d305c20a3575')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../kppp-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}


Property changes on: kdenetwork-kppp/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in kdenetwork-kopete/repos (4 files)

2016-08-20 Thread Felix Yan
Date: Sunday, August 21, 2016 @ 03:38:29
  Author: felixonmars
Revision: 274415

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

Added:
  kdenetwork-kopete/repos/testing-i686/
  kdenetwork-kopete/repos/testing-i686/PKGBUILD
(from rev 274414, kdenetwork-kopete/trunk/PKGBUILD)
  kdenetwork-kopete/repos/testing-x86_64/
  kdenetwork-kopete/repos/testing-x86_64/PKGBUILD
(from rev 274414, kdenetwork-kopete/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   38 ++
 testing-x86_64/PKGBUILD |   38 ++
 2 files changed, 76 insertions(+)

Copied: kdenetwork-kopete/repos/testing-i686/PKGBUILD (from rev 274414, 
kdenetwork-kopete/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-08-21 03:38:29 UTC (rev 274415)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdenetwork-kopete
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Instant Messenger'
+url='http://kde.org/applications/internet/kopete/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdenetwork')
+depends=('kdebase-runtime' 'libotr' 'qimageblitz' 'jsoncpp')
+makedepends=('cmake' 'automoc4' 'boost' 'mediastreamer' 'libgadu')
+optdepends=('mediastreamer: jingle support' 'libgadu: Gadu-Gadu protocol')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kopete-${pkgver}.tar.xz;)
+sha1sums=('e722841470df3c832ed551db600d7ea9f421bfc5')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kopete-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_SKIP_RPATH=ON \
+-DWITH_Libmsn=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: kdenetwork-kopete/repos/testing-x86_64/PKGBUILD (from rev 274414, 
kdenetwork-kopete/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-08-21 03:38:29 UTC (rev 274415)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdenetwork-kopete
+pkgver=16.08.0
+pkgrel=1
+pkgdesc='Instant Messenger'
+url='http://kde.org/applications/internet/kopete/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdenetwork')
+depends=('kdebase-runtime' 'libotr' 'qimageblitz' 'jsoncpp')
+makedepends=('cmake' 'automoc4' 'boost' 'mediastreamer' 'libgadu')
+optdepends=('mediastreamer: jingle support' 'libgadu: Gadu-Gadu protocol')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kopete-${pkgver}.tar.xz;)
+sha1sums=('e722841470df3c832ed551db600d7ea9f421bfc5')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kopete-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_SKIP_RPATH=ON \
+-DWITH_Libmsn=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


  1   2   3   4   5   6   >