[arch-commits] Commit in smokeping/repos/community-any (8 files)

2016-01-11 Thread Florian Pritz
Date: Tuesday, January 12, 2016 @ 00:16:32
  Author: bluewind
Revision: 156036

archrelease: copy trunk to community-any

Added:
  smokeping/repos/community-any/PKGBUILD
(from rev 156035, smokeping/trunk/PKGBUILD)
  smokeping/repos/community-any/htdocs-makefile.patch
(from rev 156035, smokeping/trunk/htdocs-makefile.patch)
  smokeping/repos/community-any/install
(from rev 156035, smokeping/trunk/install)
  smokeping/repos/community-any/service
(from rev 156035, smokeping/trunk/service)
Deleted:
  smokeping/repos/community-any/PKGBUILD
  smokeping/repos/community-any/htdocs-makefile.patch
  smokeping/repos/community-any/install
  smokeping/repos/community-any/service

---+
 PKGBUILD  |   67 
 htdocs-makefile.patch |   22 +++
 install   |   20 +++---
 service   |   22 +++
 4 files changed, 66 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-01-11 23:16:27 UTC (rev 156035)
+++ PKGBUILD2016-01-11 23:16:32 UTC (rev 156036)
@@ -1,33 +0,0 @@
-# Maintainer: Florian Pritz 
-# Contributor: Christos Nouskas nous 
-
-pkgname=smokeping
-pkgver=2.6.11
-pkgrel=2
-pkgdesc="A tool to keep track of your network latency"
-arch=('any')
-url="http://oss.oetiker.ch/smokeping/;
-license=('GPL2')
-depends=('perl-config-grammar' 'perl-digest-hmac' 'perl-libwww' 'rrdtool' 
'perl-fcgi' 'perl-cgi-fast'
- 'perl-io-tty' 'perl-net-dns' 'perl-net-snmp' 'perl-net-telnet' 
'perl-ldap' 'perl-net-openssh')
-source=(http://oss.oetiker.ch/smokeping/pub/smokeping-${pkgver}.tar.gz
-service)
-sha256sums=('f2b3c386e95a74af2b1e7aec6410d0a58852339f00e9963f3c770cfd85ba30dd'
-'4691650aed6c7341bf3a898f63c8ad03f2453d4ce9874e83f24ced5ee21317d9')
-install=install
-
-build() {
-  cd "$srcdir"/${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr --sysconfdir=/etc/smokeping 
--with-htdocs-dir=/srv/http/smokeping
-  make
-}
-
-package() {
-  cd "$srcdir"/${pkgname}-${pkgver}
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 "$srcdir/service" 
"$pkgdir/usr/lib/systemd/system/smokeping.service"
-  chmod 700 "$pkgdir/etc/smokeping"
-}
-

Copied: smokeping/repos/community-any/PKGBUILD (from rev 156035, 
smokeping/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-01-11 23:16:32 UTC (rev 156036)
@@ -0,0 +1,34 @@
+# Maintainer: Florian Pritz 
+# Contributor: Christos Nouskas nous 
+
+pkgname=smokeping
+pkgver=2.6.11
+pkgrel=3
+pkgdesc="A tool to keep track of your network latency"
+arch=('any')
+url="http://oss.oetiker.ch/smokeping/;
+license=('GPL2')
+depends=('perl-config-grammar' 'perl-digest-hmac' 'perl-libwww' 'rrdtool' 
'perl-fcgi' 'perl-cgi-fast'
+ 'perl-io-tty' 'perl-net-dns' 'perl-net-snmp' 'perl-net-telnet' 
'perl-ldap' 'perl-net-openssh')
+source=(http://oss.oetiker.ch/smokeping/pub/smokeping-${pkgver}.tar.gz
+service)
+sha256sums=('f2b3c386e95a74af2b1e7aec6410d0a58852339f00e9963f3c770cfd85ba30dd'
+'4691650aed6c7341bf3a898f63c8ad03f2453d4ce9874e83f24ced5ee21317d9')
+install=install
+
+build() {
+  cd "$srcdir"/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr --sysconfdir=/etc/smokeping 
--with-htdocs-dir=/srv/http/smokeping
+  make
+}
+
+package() {
+  cd "$srcdir"/${pkgname}-${pkgver}
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 "$srcdir/service" 
"$pkgdir/usr/lib/systemd/system/smokeping.service"
+  chmod 700 "$pkgdir/etc/smokeping"
+  install -dm700 "$pkgdir/var/lib/smokeping"
+}
+

Deleted: htdocs-makefile.patch
===
--- htdocs-makefile.patch   2016-01-11 23:16:27 UTC (rev 156035)
+++ htdocs-makefile.patch   2016-01-11 23:16:32 UTC (rev 156036)
@@ -1,11 +0,0 @@
 a/htdocs/Makefile.in   2013-03-04 14:07:55.0 +0100
-+++ b/htdocs/Makefile.in   2013-09-04 19:00:19.802492714 +0200
-@@ -433,7 +433,7 @@
- install-data-local:
-   $(MKDIR) -p $(DESTDIR)$(HTDOCSDIR)
-   $(ECHO) "#!/bin/sh" > $(DESTDIR)$(HTDOCSDIR)/smokeping.fcgi.dist
--  $(ECHO) "exec $(prefix)/bin/smokeping_cgi $(prefix)/etc/config" >> 
$(DESTDIR)$(HTDOCSDIR)/smokeping.fcgi.dist
-+  $(ECHO) "exec $(prefix)/bin/smokeping_cgi $(sysconfdir)/config" >> 
$(DESTDIR)$(HTDOCSDIR)/smokeping.fcgi.dist
-   chmod +x $(DESTDIR)$(HTDOCSDIR)/smokeping.fcgi.dist
- 
- # Tell versions [3.59,3.63) of GNU make to not export all variables.

Copied: smokeping/repos/community-any/htdocs-makefile.patch (from rev 156035, 
smokeping/trunk/htdocs-makefile.patch)
===
--- htdocs-makefile.patch   (rev 0)
+++ htdocs-makefile.patch   2016-01-11 23:16:32 UTC (rev 156036)
@@ -0,0 +1,11 @@

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

2016-01-11 Thread Florian Pritz
Date: Tuesday, January 12, 2016 @ 00:16:27
  Author: bluewind
Revision: 156035

Add smokeping user home dir

upgpkg: smokeping 2.6.11-3

Modified:
  smokeping/trunk/PKGBUILD
  smokeping/trunk/install

--+
 PKGBUILD |3 ++-
 install  |2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-01-11 20:56:15 UTC (rev 156034)
+++ PKGBUILD2016-01-11 23:16:27 UTC (rev 156035)
@@ -3,7 +3,7 @@
 
 pkgname=smokeping
 pkgver=2.6.11
-pkgrel=2
+pkgrel=3
 pkgdesc="A tool to keep track of your network latency"
 arch=('any')
 url="http://oss.oetiker.ch/smokeping/;
@@ -29,5 +29,6 @@
 
   install -Dm644 "$srcdir/service" 
"$pkgdir/usr/lib/systemd/system/smokeping.service"
   chmod 700 "$pkgdir/etc/smokeping"
+  install -dm700 "$pkgdir/var/lib/smokeping"
 }
 

Modified: install
===
--- install 2016-01-11 20:56:15 UTC (rev 156034)
+++ install 2016-01-11 23:16:27 UTC (rev 156035)
@@ -1,7 +1,7 @@
 post_install() {
getent group smokeping  &>/dev/null || groupadd -g 181 smokeping  
>/dev/null
getent passwd smokeping &>/dev/null || useradd -u 181 -d 
/var/lib/smokeping -g smokeping -s /bin/false smokeping >/dev/null
-   chown -R smokeping:smokeping /srv/http/smokeping /etc/smokeping 
+   chown -R smokeping:smokeping /srv/http/smokeping /etc/smokeping 
/var/lib/smokeping
 }
 
 post_upgrade() {


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

2016-01-11 Thread Anatol Pomozov
Date: Tuesday, January 12, 2016 @ 01:34:09
  Author: anatolik
Revision: 156038

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

Added:
  rethinkdb/repos/community-testing-i686/
  rethinkdb/repos/community-testing-i686/PKGBUILD
(from rev 156037, rethinkdb/trunk/PKGBUILD)
  rethinkdb/repos/community-testing-i686/rethinkdb-tmpfile.conf
(from rev 156037, rethinkdb/trunk/rethinkdb-tmpfile.conf)
  rethinkdb/repos/community-testing-i686/rethinkdb.install
(from rev 156037, rethinkdb/trunk/rethinkdb.install)
  rethinkdb/repos/community-testing-i686/rethinkdb.service
(from rev 156037, rethinkdb/trunk/rethinkdb.service)
  rethinkdb/repos/community-testing-x86_64/
  rethinkdb/repos/community-testing-x86_64/PKGBUILD
(from rev 156037, rethinkdb/trunk/PKGBUILD)
  rethinkdb/repos/community-testing-x86_64/rethinkdb-tmpfile.conf
(from rev 156037, rethinkdb/trunk/rethinkdb-tmpfile.conf)
  rethinkdb/repos/community-testing-x86_64/rethinkdb.install
(from rev 156037, rethinkdb/trunk/rethinkdb.install)
  rethinkdb/repos/community-testing-x86_64/rethinkdb.service
(from rev 156037, rethinkdb/trunk/rethinkdb.service)

-+
 community-testing-i686/PKGBUILD |   69 ++
 community-testing-i686/rethinkdb-tmpfile.conf   |1 
 community-testing-i686/rethinkdb.install|   22 +++
 community-testing-i686/rethinkdb.service|   12 +++
 community-testing-x86_64/PKGBUILD   |   69 ++
 community-testing-x86_64/rethinkdb-tmpfile.conf |1 
 community-testing-x86_64/rethinkdb.install  |   22 +++
 community-testing-x86_64/rethinkdb.service  |   12 +++
 8 files changed, 208 insertions(+)

Copied: rethinkdb/repos/community-testing-i686/PKGBUILD (from rev 156037, 
rethinkdb/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-01-12 00:34:09 UTC (rev 156038)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Massimiliano Torromeo 
+# Contributor: Sigmund Lahn 
+
+pkgname=rethinkdb
+pkgver=2.2.3
+_tag=rethinkdb-$pkgver-1
+pkgrel=1
+pkgdesc='Distributed powerful and scalable NoSQL database'
+arch=(i686 x86_64)
+url='http://www.rethinkdb.com/'
+license=(AGPL)
+depends=(protobuf ncurses curl)
+makedepends=(boost python2 wget)
+backup=(etc/rethinkdb/instances.d/default.conf)
+install=rethinkdb.install
+options=(!emptydirs)
+source=(
+  http://download.rethinkdb.com/dist/$_tag.tgz
+  rethinkdb-tmpfile.conf
+  rethinkdb.service
+)
+sha256sums=('d2d59532bd46da8d1f947e3ec9028746b4f4bbbc13f215b8314852ab1cd0db95'
+'656d3a42e75d087e723f71aa320fdd91cbbb82071ef72eb11fd3e4a619b429a4'
+'e56bffa2b9ebc3a00ef566ab2be0719a633c89d961a2461dfa2d9ffdb258c1a2')
+
+prepare() {
+  cd $_tag
+
+  sed \
+-e 's|#!/usr/bin/python|#!/usr/bin/python2|' \
+-e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+-i scripts/*.py external/v8_*/tools/*.py
+  sed -e 's|exec python|exec python2|g' -i external/v8_*/build/gyp/gyp
+  sed -e 's|\bpython\b|python2|g' -i 
external/v8_*/{Makefile,*/*.gyp,*/*.gypi,*/*/*.gyp}
+}
+
+build() {
+  cd $_tag
+  export PYTHON=/usr/bin/python2
+  ./configure --fetch v8 --fetch jemalloc --dynamic all 
--enable-precompiled-web --prefix=/usr --sysconfdir=/etc
+  make ALLOW_WARNINGS=1
+}
+
+check() {
+  cd $_tag
+
+  # these tests are flaky and extremely slow in Arch chroot
+  # make build/release/rethinkdb-unittest
+  # ./build/release/rethinkdb-unittest 
--gtest_filter=-RDBBtree.*:RDBInterrupt.*
+  # some tests might be flaky on btrfs filesystem
+}
+
+package() {
+  cd $_tag
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 "$srcdir"/rethinkdb-tmpfile.conf 
"$pkgdir"/usr/lib/tmpfiles.d/rethinkdb.conf
+  install -Dm644 "$srcdir"/rethinkdb.service 
"$pkgdir"/usr/lib/systemd/system/rethinkdb@.service
+
+  # create 'default' database instance
+  mv "$pkgdir"/etc/rethinkdb/default.conf.sample 
"$pkgdir"/etc/rethinkdb/instances.d/default.conf
+  sed -e 's|# directory=/var/lib/rethinkdb|directory=/var/lib/rethinkdb|' \
+  -i "$pkgdir"/etc/rethinkdb/instances.d/default.conf
+
+  # Arch uses systemd, no need for init.d scripts
+  rm -r "$pkgdir"/etc/init.d
+}

Copied: rethinkdb/repos/community-testing-i686/rethinkdb-tmpfile.conf (from rev 
156037, rethinkdb/trunk/rethinkdb-tmpfile.conf)
===
--- community-testing-i686/rethinkdb-tmpfile.conf   
(rev 0)
+++ community-testing-i686/rethinkdb-tmpfile.conf   2016-01-12 00:34:09 UTC 
(rev 156038)
@@ -0,0 +1 @@
+d /run/rethinkdb 0755 rethinkdb rethinkdb -
\ No newline at end of file

Copied: 

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

2016-01-11 Thread Anatol Pomozov
Date: Tuesday, January 12, 2016 @ 01:33:22
  Author: anatolik
Revision: 156037

upgpkg: rethinkdb 2.2.3-1

Modified:
  rethinkdb/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-01-11 23:16:32 UTC (rev 156036)
+++ PKGBUILD2016-01-12 00:33:22 UTC (rev 156037)
@@ -4,8 +4,8 @@
 # Contributor: Sigmund Lahn 
 
 pkgname=rethinkdb
-pkgver=2.2.2
-_tag=rethinkdb-$pkgver
+pkgver=2.2.3
+_tag=rethinkdb-$pkgver-1
 pkgrel=1
 pkgdesc='Distributed powerful and scalable NoSQL database'
 arch=(i686 x86_64)
@@ -21,7 +21,7 @@
   rethinkdb-tmpfile.conf
   rethinkdb.service
 )
-sha256sums=('47982f07a1003c452822bec0cb358c589c85dbaf6b3dd161c533076e81bb5c7f'
+sha256sums=('d2d59532bd46da8d1f947e3ec9028746b4f4bbbc13f215b8314852ab1cd0db95'
 '656d3a42e75d087e723f71aa320fdd91cbbb82071ef72eb11fd3e4a619b429a4'
 'e56bffa2b9ebc3a00ef566ab2be0719a633c89d961a2461dfa2d9ffdb258c1a2')
 


[arch-commits] Commit in python-feedgenerator/repos (2 files)

2016-01-11 Thread Jiachen Yang
Date: Monday, January 11, 2016 @ 11:33:02
  Author: farseerfc
Revision: 155960

archrelease: copy trunk to community-any

Added:
  python-feedgenerator/repos/community-any/
  python-feedgenerator/repos/community-any/PKGBUILD
(from rev 155959, python-feedgenerator/trunk/PKGBUILD)

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

Copied: python-feedgenerator/repos/community-any/PKGBUILD (from rev 155959, 
python-feedgenerator/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-01-11 10:33:02 UTC (rev 155960)
@@ -0,0 +1,21 @@
+# Maintainer: Jiachen Yang 
+# AUR Maintainer: Sam Stuewe 
+# Contributor: Chaoswizard 
+_name=feedgenerator
+pkgname="python-${_name}"
+pkgver=1.7
+pkgrel=3
+pkgdesc="Standalone version of django.utils.feedgenerator (python3)."
+url="http://pypi.python.org/pypi/feedgenerator;
+arch=('any')
+license=('GPL')
+depends=('python' 'python-pytz' 'python-six')
+makedepends=('python-distribute')
+source=("https://pypi.python.org/packages/source/f/${_name}/${_name}-${pkgver}.tar.gz;)
+md5sums=('92978492871342ad64e8ae0ccfcf200c')
+sha256sums=('5d6b0b10134ac392be0c0c3a39c0e1d7e9c17cc7894590f75981e3f497a4a60f')
+
+package() {
+  cd "${_name}-${pkgver}"
+  python ./setup.py install --root="${pkgdir}" --optimize=1
+}


[arch-commits] Commit in (lsw)

2016-01-11 Thread Jiachen Yang
Date: Monday, January 11, 2016 @ 10:50:35
  Author: farseerfc
Revision: 155956

remove lsw which is abandoned by upstream

Deleted:
  lsw/


[arch-commits] Commit in (5 files)

2016-01-11 Thread Jiachen Yang
Date: Monday, January 11, 2016 @ 11:04:42
  Author: farseerfc
Revision: 155957

add back lsw redirect to new location

Added:
  lsw/
  lsw/repos/
  lsw/trunk/
  lsw/trunk/PKGBUILD
  lsw/trunk/makefile.patch

+
 PKGBUILD   |   33 +
 makefile.patch |2 ++
 2 files changed, 35 insertions(+)

Added: lsw/trunk/PKGBUILD
===
--- lsw/trunk/PKGBUILD  (rev 0)
+++ lsw/trunk/PKGBUILD  2016-01-11 10:04:42 UTC (rev 155957)
@@ -0,0 +1,33 @@
+# Maintainer: Jiachen Yang 
+# Contributor: Evan Gates  
+#  Dag  Odenhall   
+#  Raphael Nestler
+pkgname=lsw
+pkgver=0.3
+pkgrel=3
+pkgdesc="List window names"
+license=(MIT)
+arch=(i686 x86_64)
+url="http://tools.suckless.org/x/lsw;
+depends=(libx11)
+source=("http://dl.suckless.org/tools/$pkgname-$pkgver.tar.gz;
+"makefile.patch")
+
+md5sums=('3ae42c41a7ceda8ddf6e0fbab0866f79'
+ 'ae850a6a044a11f01a73f56c2f1c5520')
+
+build() {
+   cd -- "$srcdir/$pkgname-$pkgver"
+   sed -i "s/CFLAGS = /CFLAGS = ${CFLAGS} /" config.mk
+
+   patch "$srcdir/$pkgname-$pkgver/Makefile" "$srcdir/makefile.patch"
+   make X11INC=/usr/lib/X11 X11LIB=/usr/lib/X11
+}
+
+package(){
+   cd -- "$srcdir/$pkgname-$pkgver"
+   make PREFIX=/usr MANPREFIX=/usr/share/man DESTDIR="$pkgdir" install
+
+   install -m644 -D LICENSE "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+


Property changes on: lsw/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+lsw
\ No newline at end of property
Added: lsw/trunk/makefile.patch
===
--- lsw/trunk/makefile.patch(rev 0)
+++ lsw/trunk/makefile.patch2016-01-11 10:04:42 UTC (rev 155957)
@@ -0,0 +1,2 @@
+42a43
+>  @mkdir -p ${DESTDIR}${MANPREFIX}/man1/


[arch-commits] Commit in (4 files)

2016-01-11 Thread Jiachen Yang
Date: Monday, January 11, 2016 @ 11:31:11
  Author: farseerfc
Revision: 155959

addpkg: python-feedgenerator a dependency of pelican

Added:
  python-feedgenerator/
  python-feedgenerator/repos/
  python-feedgenerator/trunk/
  python-feedgenerator/trunk/PKGBUILD

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

Added: python-feedgenerator/trunk/PKGBUILD
===
--- python-feedgenerator/trunk/PKGBUILD (rev 0)
+++ python-feedgenerator/trunk/PKGBUILD 2016-01-11 10:31:11 UTC (rev 155959)
@@ -0,0 +1,21 @@
+# Maintainer: Jiachen Yang 
+# AUR Maintainer: Sam Stuewe 
+# Contributor: Chaoswizard 
+_name=feedgenerator
+pkgname="python-${_name}"
+pkgver=1.7
+pkgrel=3
+pkgdesc="Standalone version of django.utils.feedgenerator (python3)."
+url="http://pypi.python.org/pypi/feedgenerator;
+arch=('any')
+license=('GPL')
+depends=('python' 'python-pytz' 'python-six')
+makedepends=('python-distribute')
+source=("https://pypi.python.org/packages/source/f/${_name}/${_name}-${pkgver}.tar.gz;)
+md5sums=('92978492871342ad64e8ae0ccfcf200c')
+sha256sums=('5d6b0b10134ac392be0c0c3a39c0e1d7e9c17cc7894590f75981e3f497a4a60f')
+
+package() {
+  cd "${_name}-${pkgver}"
+  python ./setup.py install --root="${pkgdir}" --optimize=1
+}


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


[arch-commits] Commit in qt5/repos (34 files)

2016-01-11 Thread Felix Yan
Date: Monday, January 11, 2016 @ 11:30:11
  Author: fyan
Revision: 257943

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

Added:
  qt5/repos/extra-i686/PKGBUILD
(from rev 257942, qt5/trunk/PKGBUILD)
  qt5/repos/extra-i686/assistant.desktop
(from rev 257942, qt5/trunk/assistant.desktop)
  qt5/repos/extra-i686/designer.desktop
(from rev 257942, qt5/trunk/designer.desktop)
  qt5/repos/extra-i686/fs47703.patch
(from rev 257942, qt5/trunk/fs47703.patch)
  
qt5/repos/extra-i686/ibus-get-display-number-when-screen-number-is-omitted.patch
(from rev 257942, 
qt5/trunk/ibus-get-display-number-when-screen-number-is-omitted.patch)
  qt5/repos/extra-i686/linguist.desktop
(from rev 257942, qt5/trunk/linguist.desktop)
  qt5/repos/extra-i686/qdbusviewer.desktop
(from rev 257942, qt5/trunk/qdbusviewer.desktop)
  qt5/repos/extra-i686/qt5-tools.install
(from rev 257942, qt5/trunk/qt5-tools.install)
  qt5/repos/extra-i686/rebuild.list
(from rev 257942, qt5/trunk/rebuild.list)
  qt5/repos/extra-x86_64/PKGBUILD
(from rev 257942, qt5/trunk/PKGBUILD)
  qt5/repos/extra-x86_64/assistant.desktop
(from rev 257942, qt5/trunk/assistant.desktop)
  qt5/repos/extra-x86_64/designer.desktop
(from rev 257942, qt5/trunk/designer.desktop)
  qt5/repos/extra-x86_64/fs47703.patch
(from rev 257942, qt5/trunk/fs47703.patch)
  
qt5/repos/extra-x86_64/ibus-get-display-number-when-screen-number-is-omitted.patch
(from rev 257942, 
qt5/trunk/ibus-get-display-number-when-screen-number-is-omitted.patch)
  qt5/repos/extra-x86_64/linguist.desktop
(from rev 257942, qt5/trunk/linguist.desktop)
  qt5/repos/extra-x86_64/qdbusviewer.desktop
(from rev 257942, qt5/trunk/qdbusviewer.desktop)
  qt5/repos/extra-x86_64/qt5-tools.install
(from rev 257942, qt5/trunk/qt5-tools.install)
  qt5/repos/extra-x86_64/rebuild.list
(from rev 257942, qt5/trunk/rebuild.list)
Deleted:
  qt5/repos/extra-i686/PKGBUILD
  qt5/repos/extra-i686/assistant.desktop
  qt5/repos/extra-i686/designer.desktop
  
qt5/repos/extra-i686/ibus-get-display-number-when-screen-number-is-omitted.patch
  qt5/repos/extra-i686/linguist.desktop
  qt5/repos/extra-i686/qdbusviewer.desktop
  qt5/repos/extra-i686/qt5-tools.install
  qt5/repos/extra-i686/rebuild.list
  qt5/repos/extra-x86_64/PKGBUILD
  qt5/repos/extra-x86_64/assistant.desktop
  qt5/repos/extra-x86_64/designer.desktop
  
qt5/repos/extra-x86_64/ibus-get-display-number-when-screen-number-is-omitted.patch
  qt5/repos/extra-x86_64/linguist.desktop
  qt5/repos/extra-x86_64/qdbusviewer.desktop
  qt5/repos/extra-x86_64/qt5-tools.install
  qt5/repos/extra-x86_64/rebuild.list

--+
 /PKGBUILD| 
1158 ++
 /assistant.desktop   |   
16 
 /designer.desktop|   
20 
 /ibus-get-display-number-when-screen-number-is-omitted.patch |   
64 
 /linguist.desktop|   
18 
 /qdbusviewer.desktop |   
18 
 /qt5-tools.install   |   
24 
 /rebuild.list|   
12 
 extra-i686/PKGBUILD  |  
575 
 extra-i686/assistant.desktop |
8 
 extra-i686/designer.desktop  |   
10 
 extra-i686/fs47703.patch |   
49 
 extra-i686/ibus-get-display-number-when-screen-number-is-omitted.patch   |   
32 
 extra-i686/linguist.desktop  |
9 
 extra-i686/qdbusviewer.desktop   |
9 
 extra-i686/qt5-tools.install |   
12 
 extra-i686/rebuild.list  |
6 
 extra-x86_64/PKGBUILD|  
575 
 extra-x86_64/assistant.desktop   |
8 
 extra-x86_64/designer.desktop|   
10 
 extra-x86_64/fs47703.patch   |   
49 
 extra-x86_64/ibus-get-display-number-when-screen-number-is-omitted.patch |   
32 
 extra-x86_64/linguist.desktop|
9 
 extra-x86_64/qdbusviewer.desktop |
9 
 extra-x86_64/qt5-tools.install   |   
12 
 extra-x86_64/rebuild.list|
6 
 26 files changed, 1428 insertions(+), 1322 deletions(-)

The diff is longer than the limit 

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

2016-01-11 Thread Jiachen Yang
Date: Monday, January 11, 2016 @ 11:08:20
  Author: farseerfc
Revision: 155958

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

Added:
  lsw/repos/community-i686/
  lsw/repos/community-i686/PKGBUILD
(from rev 155957, lsw/trunk/PKGBUILD)
  lsw/repos/community-i686/makefile.patch
(from rev 155957, lsw/trunk/makefile.patch)
  lsw/repos/community-x86_64/
  lsw/repos/community-x86_64/PKGBUILD
(from rev 155957, lsw/trunk/PKGBUILD)
  lsw/repos/community-x86_64/makefile.patch
(from rev 155957, lsw/trunk/makefile.patch)

-+
 community-i686/PKGBUILD |   33 +
 community-i686/makefile.patch   |2 ++
 community-x86_64/PKGBUILD   |   33 +
 community-x86_64/makefile.patch |2 ++
 4 files changed, 70 insertions(+)

Copied: lsw/repos/community-i686/PKGBUILD (from rev 155957, lsw/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-11 10:08:20 UTC (rev 155958)
@@ -0,0 +1,33 @@
+# Maintainer: Jiachen Yang 
+# Contributor: Evan Gates  
+#  Dag  Odenhall   
+#  Raphael Nestler
+pkgname=lsw
+pkgver=0.3
+pkgrel=3
+pkgdesc="List window names"
+license=(MIT)
+arch=(i686 x86_64)
+url="http://tools.suckless.org/x/lsw;
+depends=(libx11)
+source=("http://dl.suckless.org/tools/$pkgname-$pkgver.tar.gz;
+"makefile.patch")
+
+md5sums=('3ae42c41a7ceda8ddf6e0fbab0866f79'
+ 'ae850a6a044a11f01a73f56c2f1c5520')
+
+build() {
+   cd -- "$srcdir/$pkgname-$pkgver"
+   sed -i "s/CFLAGS = /CFLAGS = ${CFLAGS} /" config.mk
+
+   patch "$srcdir/$pkgname-$pkgver/Makefile" "$srcdir/makefile.patch"
+   make X11INC=/usr/lib/X11 X11LIB=/usr/lib/X11
+}
+
+package(){
+   cd -- "$srcdir/$pkgname-$pkgver"
+   make PREFIX=/usr MANPREFIX=/usr/share/man DESTDIR="$pkgdir" install
+
+   install -m644 -D LICENSE "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+

Copied: lsw/repos/community-i686/makefile.patch (from rev 155957, 
lsw/trunk/makefile.patch)
===
--- community-i686/makefile.patch   (rev 0)
+++ community-i686/makefile.patch   2016-01-11 10:08:20 UTC (rev 155958)
@@ -0,0 +1,2 @@
+42a43
+>  @mkdir -p ${DESTDIR}${MANPREFIX}/man1/

Copied: lsw/repos/community-x86_64/PKGBUILD (from rev 155957, 
lsw/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-01-11 10:08:20 UTC (rev 155958)
@@ -0,0 +1,33 @@
+# Maintainer: Jiachen Yang 
+# Contributor: Evan Gates  
+#  Dag  Odenhall   
+#  Raphael Nestler
+pkgname=lsw
+pkgver=0.3
+pkgrel=3
+pkgdesc="List window names"
+license=(MIT)
+arch=(i686 x86_64)
+url="http://tools.suckless.org/x/lsw;
+depends=(libx11)
+source=("http://dl.suckless.org/tools/$pkgname-$pkgver.tar.gz;
+"makefile.patch")
+
+md5sums=('3ae42c41a7ceda8ddf6e0fbab0866f79'
+ 'ae850a6a044a11f01a73f56c2f1c5520')
+
+build() {
+   cd -- "$srcdir/$pkgname-$pkgver"
+   sed -i "s/CFLAGS = /CFLAGS = ${CFLAGS} /" config.mk
+
+   patch "$srcdir/$pkgname-$pkgver/Makefile" "$srcdir/makefile.patch"
+   make X11INC=/usr/lib/X11 X11LIB=/usr/lib/X11
+}
+
+package(){
+   cd -- "$srcdir/$pkgname-$pkgver"
+   make PREFIX=/usr MANPREFIX=/usr/share/man DESTDIR="$pkgdir" install
+
+   install -m644 -D LICENSE "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+

Copied: lsw/repos/community-x86_64/makefile.patch (from rev 155957, 
lsw/trunk/makefile.patch)
===
--- community-x86_64/makefile.patch (rev 0)
+++ community-x86_64/makefile.patch 2016-01-11 10:08:20 UTC (rev 155958)
@@ -0,0 +1,2 @@
+42a43
+>  @mkdir -p ${DESTDIR}${MANPREFIX}/man1/


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

2016-01-11 Thread Jiachen Yang
Date: Monday, January 11, 2016 @ 11:37:18
  Author: farseerfc
Revision: 155961

addpkg: pelican

Added:
  pelican/
  pelican/repos/
  pelican/trunk/
  pelican/trunk/PKGBUILD

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

Added: pelican/trunk/PKGBUILD
===
--- pelican/trunk/PKGBUILD  (rev 0)
+++ pelican/trunk/PKGBUILD  2016-01-11 10:37:18 UTC (rev 155961)
@@ -0,0 +1,47 @@
+# Maintainer: Jiachen Yang 
+# AUR Maintainer: Stefan Tatschner 
+# Contributor: David Runge 
+
+pkgname=pelican
+pkgver=3.6.3
+pkgrel=4
+pkgdesc="A tool to generate a static blog, with restructured text (or 
markdown) input files."
+arch=('any')
+url="http://getpelican.com;
+license=('AGPL3')
+makedepends=('python-sphinx' 'python-blinker')
+depends=('python-jinja' 'python-pygments' 'python-feedgenerator' 'python-pytz'
+ 'python-docutils' 'python-blinker' 'python-unidecode' 'python-six'
+ 'python-dateutil')
+optdepends=('python-markdown: Markdown support'
+'asciidoc: AsciiDoc support'
+'python-beautifulsoup4: importing from 
wordpress/dotclear/posterous'
+'python-feedparser: importing from feeds'
+'python-rst2pdf: PDF generation'
+'openssh: uploading through SSH'
+'rsync: uploading through rsync+SSH'
+'lftp: uploading through FTP'
+'s3cmd: uploading through S3'
+'python-ghp-import: uploading through gh-pages'
+'python-typogrify: typographical enhancements'
+'python-mdx-video: easier embedding of youtube videos in markdown')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/getpelican/pelican/archive/$pkgver.tar.gz;)
+sha256sums=('d19bc7df61afc5b68eba028f0cf0832ee2a12a04a01d7fe11bdfdd847ddd417b')
+
+build() {
+cd "$srcdir/$pkgname-$pkgver/docs/"
+make man
+make text
+}
+
+package() {
+cd "$srcdir/$pkgname-$pkgver"
+
+install -d "$pkgdir/usr/share/man/man1/"
+install -Dm644 docs/_build/man/*.1 "$pkgdir/usr/share/man/man1/"
+
+install -d "$pkgdir/usr/share/doc/pelican/"
+install -Dm644 docs/_build/text/*.txt "$pkgdir/usr/share/doc/pelican/"
+
+python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+}


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


[arch-commits] Commit in pelican/repos (community-any community-any/PKGBUILD)

2016-01-11 Thread Jiachen Yang
Date: Monday, January 11, 2016 @ 11:39:05
  Author: farseerfc
Revision: 155962

archrelease: copy trunk to community-any

Added:
  pelican/repos/community-any/
  pelican/repos/community-any/PKGBUILD
(from rev 155961, pelican/trunk/PKGBUILD)

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

Copied: pelican/repos/community-any/PKGBUILD (from rev 155961, 
pelican/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-01-11 10:39:05 UTC (rev 155962)
@@ -0,0 +1,47 @@
+# Maintainer: Jiachen Yang 
+# AUR Maintainer: Stefan Tatschner 
+# Contributor: David Runge 
+
+pkgname=pelican
+pkgver=3.6.3
+pkgrel=4
+pkgdesc="A tool to generate a static blog, with restructured text (or 
markdown) input files."
+arch=('any')
+url="http://getpelican.com;
+license=('AGPL3')
+makedepends=('python-sphinx' 'python-blinker')
+depends=('python-jinja' 'python-pygments' 'python-feedgenerator' 'python-pytz'
+ 'python-docutils' 'python-blinker' 'python-unidecode' 'python-six'
+ 'python-dateutil')
+optdepends=('python-markdown: Markdown support'
+'asciidoc: AsciiDoc support'
+'python-beautifulsoup4: importing from 
wordpress/dotclear/posterous'
+'python-feedparser: importing from feeds'
+'python-rst2pdf: PDF generation'
+'openssh: uploading through SSH'
+'rsync: uploading through rsync+SSH'
+'lftp: uploading through FTP'
+'s3cmd: uploading through S3'
+'python-ghp-import: uploading through gh-pages'
+'python-typogrify: typographical enhancements'
+'python-mdx-video: easier embedding of youtube videos in markdown')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/getpelican/pelican/archive/$pkgver.tar.gz;)
+sha256sums=('d19bc7df61afc5b68eba028f0cf0832ee2a12a04a01d7fe11bdfdd847ddd417b')
+
+build() {
+cd "$srcdir/$pkgname-$pkgver/docs/"
+make man
+make text
+}
+
+package() {
+cd "$srcdir/$pkgname-$pkgver"
+
+install -d "$pkgdir/usr/share/man/man1/"
+install -Dm644 docs/_build/man/*.1 "$pkgdir/usr/share/man/man1/"
+
+install -d "$pkgdir/usr/share/doc/pelican/"
+install -Dm644 docs/_build/text/*.txt "$pkgdir/usr/share/doc/pelican/"
+
+python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+}


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

2016-01-11 Thread Antonio Rojas
Date: Monday, January 11, 2016 @ 11:58:47
  Author: arojas
Revision: 257945

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

Added:
  gpsd/repos/extra-i686/PKGBUILD
(from rev 257944, gpsd/trunk/PKGBUILD)
  gpsd/repos/extra-i686/gpsd.conf
(from rev 257944, gpsd/trunk/gpsd.conf)
  gpsd/repos/extra-i686/gpsd.install
(from rev 257944, gpsd/trunk/gpsd.install)
  gpsd/repos/extra-x86_64/PKGBUILD
(from rev 257944, gpsd/trunk/PKGBUILD)
  gpsd/repos/extra-x86_64/gpsd.conf
(from rev 257944, gpsd/trunk/gpsd.conf)
  gpsd/repos/extra-x86_64/gpsd.install
(from rev 257944, gpsd/trunk/gpsd.install)
Deleted:
  gpsd/repos/extra-i686/PKGBUILD
  gpsd/repos/extra-i686/gpsd.conf
  gpsd/repos/extra-i686/gpsd.install
  gpsd/repos/extra-x86_64/PKGBUILD
  gpsd/repos/extra-x86_64/gpsd.conf
  gpsd/repos/extra-x86_64/gpsd.install

---+
 /PKGBUILD |  162 
 /gpsd.conf|   10 ++
 /gpsd.install |   22 +
 extra-i686/PKGBUILD   |   82 --
 extra-i686/gpsd.conf  |5 -
 extra-i686/gpsd.install   |   11 --
 extra-x86_64/PKGBUILD |   82 --
 extra-x86_64/gpsd.conf|5 -
 extra-x86_64/gpsd.install |   11 --
 9 files changed, 194 insertions(+), 196 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-11 10:58:10 UTC (rev 257944)
+++ extra-i686/PKGBUILD 2016-01-11 10:58:47 UTC (rev 257945)
@@ -1,82 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen 
-# Contributor: Andrea Scarpino 
-# Contributor: Sergej Pupykin 
-# Contributor: Giacomo Rizzo 
-
-pkgname=gpsd
-pkgver=3.15
-pkgrel=4
-pkgdesc="GPS daemon and library to support USB/serial GPS devices"
-arch=('i686' 'x86_64')
-url="http://catb.org/gpsd/;
-license=('BSD')
-depends=('python2' 'libusb' 'bluez-libs' 'desktop-file-utils')
-optdepends=('php: generate a PHP status page for your GPS'
-'php-gd: image support for the PHP status page'
-'pygtk: GUI frontends')
-makedepends=('scons' 'docbook-xsl' 'hardening-wrapper')
-backup=('etc/gpsd')
-install="${pkgname}.install"
-source=("http://download.savannah.gnu.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig}
-'gpsd.conf')
-validpgpkeys=('3CE764D4FAFF5FA810B203BFADF516D38421F11C') # Eric S. Raymond
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # fix python 2.7 path
-  sed -i -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
--e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-$(find . -name '*.py')
-  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' gegps \
-gpscat gpsfake gpsprof xgps xgpsspeed
-
-  sed -i 's/sbin/bin/g' systemd/*.service
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  scons prefix=/usr \
-systemd=yes \
-libQgpsmm=no \
-gpsd_group=uucp \
-PYTHONPATH=/usr/bin/python2 \
-sbindir=/usr/bin
-  scons build
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  # Fix man pages path (FS#21715)
-  sed -i 's|.so gps.1|.so man1/gps.1|' cgps.1 lcdgps.1 xgps.1 xgpsspeed.1
-
-  export DESTDIR="$pkgdir"
-  scons install
-
-  install -D -m644 "$srcdir/gpsd.conf" "$pkgdir/etc/gpsd"
-
-  install -D -m644 "gpsd.rules" 
"$pkgdir/usr/lib/udev/rules.d/25-gpsd-usb.rules"
-
-  sed -e 's|/etc/default/gpsd|/etc/gpsd|' -i gpsd.hotplug -i systemd/*.service
-  install -D -m755 gpsd.hotplug "$pkgdir/usr/lib/udev/gpsd.hotplug"
-
-  install -D -m644 packaging/X11/xgps.desktop \
-"${pkgdir}/usr/share/applications/xgps.desktop"
-  install -D -m644 packaging/X11/xgpsspeed.desktop \
-"${pkgdir}/usr/share/applications/xgpsspeed.desktop"
-  install -D -m644 packaging/X11/gpsd-logo.png \
-"${pkgdir}/usr/share/gpsd/gpsd-logo.png"
-
-  install -D -m644 systemd/gpsd.service 
"$pkgdir/usr/lib/systemd/system/gpsd.service"
-  install -D -m644 systemd/gpsd.socket 
"$pkgdir/usr/lib/systemd/system/gpsd.socket"
-  install -D -m644 systemd/gpsdctl@.service 
"$pkgdir/usr/lib/systemd/system/gpsdctl@.service"
-
-  install -D -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-md5sums=('afd79b87337fadf38ee2a7c4314dac79'
- 'SKIP'
- '3e963df3f9f7ef3572ecc648ae829315')

Copied: gpsd/repos/extra-i686/PKGBUILD (from rev 257944, gpsd/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-11 10:58:47 UTC (rev 257945)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor: Andrea Scarpino 
+# Contributor: Sergej Pupykin 
+# Contributor: Giacomo Rizzo 
+
+pkgname=gpsd
+pkgver=3.16
+pkgrel=1
+pkgdesc="GPS daemon and library to support USB/serial GPS devices"
+arch=('i686' 

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

2016-01-11 Thread Antonio Rojas
Date: Monday, January 11, 2016 @ 11:58:10
  Author: arojas
Revision: 257944

Update to 3.16

Modified:
  gpsd/trunk/PKGBUILD

--+
 PKGBUILD |   13 ++---
 1 file changed, 6 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-01-11 10:30:11 UTC (rev 257943)
+++ PKGBUILD2016-01-11 10:58:10 UTC (rev 257944)
@@ -5,8 +5,8 @@
 # Contributor: Giacomo Rizzo 
 
 pkgname=gpsd
-pkgver=3.15
-pkgrel=4
+pkgver=3.16
+pkgrel=1
 pkgdesc="GPS daemon and library to support USB/serial GPS devices"
 arch=('i686' 'x86_64')
 url="http://catb.org/gpsd/;
@@ -20,7 +20,10 @@
 install="${pkgname}.install"
 
source=("http://download.savannah.gnu.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig}
 'gpsd.conf')
-validpgpkeys=('3CE764D4FAFF5FA810B203BFADF516D38421F11C') # Eric S. Raymond
+md5sums=('68691b5de4c94f82ec4062b042b5eb63'
+ 'SKIP'
+ '3e963df3f9f7ef3572ecc648ae829315')
+validpgpkeys=('41876B2F579463A499843D1DECC8208F8C6C738D') # Eric S. Raymond
 
 prepare() {
   cd "${srcdir}/${pkgname}-${pkgver}"
@@ -76,7 +79,3 @@
 
   install -D -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
-
-md5sums=('afd79b87337fadf38ee2a7c4314dac79'
- 'SKIP'
- '3e963df3f9f7ef3572ecc648ae829315')


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

2016-01-11 Thread Felix Yan
Date: Monday, January 11, 2016 @ 11:28:19
  Author: fyan
Revision: 257942

upgpkg: qt5 5.5.1-8

Add a patch to avoid crashes with nvidia 361.16 drivers (FS#47703)

Added:
  qt5/trunk/fs47703.patch
Modified:
  qt5/trunk/PKGBUILD

---+
 PKGBUILD  |   10 +++---
 fs47703.patch |   49 +
 2 files changed, 56 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-01-11 09:51:28 UTC (rev 257941)
+++ PKGBUILD2016-01-11 10:28:19 UTC (rev 257942)
@@ -30,7 +30,7 @@
  'qt5-x11extras'
  'qt5-xmlpatterns')
 pkgver=5.5.1
-pkgrel=7
+pkgrel=8
 arch=('i686' 'x86_64')
 url='http://www.qt.io/developers'
 license=('GPL3' 'LGPL' 'FDL' 'custom')
@@ -44,16 +44,20 @@
 groups=('qt' 'qt5')
 _pkgfqn="qt-everywhere-opensource-src-${pkgver}"
 
source=("http://download.qt-project.org/official_releases/qt/${pkgver%.*}/${pkgver}/single/${_pkgfqn}.tar.xz;
-'assistant.desktop' 'designer.desktop' 'linguist.desktop' 
'qdbusviewer.desktop')
+'assistant.desktop' 'designer.desktop' 'linguist.desktop' 
'qdbusviewer.desktop'
+'fs47703.patch')
 md5sums=('c2a249e8795d45200d997d96860d0353'
  'b2897dd6a2967bccf8f10e397aafee55'
  '76e150b20178d2d43801f7367232e5f7'
  '188da8f4c87316e730ebf1c6217bf5a0'
- '322b419b16c75d4de0ee7ad0a246caa1')
+ '322b419b16c75d4de0ee7ad0a246caa1'
+ 'e710bb841ba2919bd3c9e10c80d67b0b')
 
 prepare() {
   cd ${_pkgfqn}
 
+  (cd qtbase; patch -p1 -i "$srcdir"/fs47703.patch)
+
   # Build qmake using Arch {C,LD}FLAGS
   # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
   sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \

Added: fs47703.patch
===
--- fs47703.patch   (rev 0)
+++ fs47703.patch   2016-01-11 10:28:19 UTC (rev 257942)
@@ -0,0 +1,49 @@
+From f6ba546d57018ddd2bfdc226db498f12a0c2d8bf Mon Sep 17 00:00:00 2001
+From: =?utf8?q?D=C4=81vis=20Mos=C4=81ns?= 
+Date: Fri, 8 Jan 2016 04:12:13 +0200
+Subject: [PATCH] Don't pass NULL Display to glXGetClientString
+
+glXGetCurrentDisplay can return NULL so need to check
+for that.
+
+Change-Id: I1b85a5c575d1deb24dcce4719b6f737283adeabe
+---
+ .../platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp| 5 -
+ .../platforms/xcb/gl_integrations/xcb_glx/qxcbglxintegration.cpp | 5 -
+ 2 files changed, 8 insertions(+), 2 deletions(-)
+
+diff --git 
a/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp 
b/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp
+index 8b14fc7..3412f3f 100644
+--- a/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp
 b/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp
+@@ -644,7 +644,10 @@ void QGLXContext::queryDummyContext()
+ oldSurface = oldContext->surface();
+ 
+ QScopedPointer surface;
+-const char *glxvendor = glXGetClientString(glXGetCurrentDisplay(), 
GLX_VENDOR);
++Display *display = glXGetCurrentDisplay();
++const char *glxvendor = 0;
++if (display)
++glxvendor = glXGetClientString(display, GLX_VENDOR);
+ if (glxvendor && !strcmp(glxvendor, "ATI")) {
+ QWindow *window = new QWindow;
+ window->resize(64, 64);
+diff --git 
a/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qxcbglxintegration.cpp 
b/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qxcbglxintegration.cpp
+index ce72cb6..cd4949af 100644
+--- a/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qxcbglxintegration.cpp
 b/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qxcbglxintegration.cpp
+@@ -195,7 +195,10 @@ QPlatformOffscreenSurface 
*QXcbGlxIntegration::createPlatformOffscreenSurface(QO
+ static bool glxPbufferUsable = true;
+ if (!vendorChecked) {
+ vendorChecked = true;
+-const char *glxvendor = glXGetClientString(glXGetCurrentDisplay(), 
GLX_VENDOR);
++Display *display = glXGetCurrentDisplay();
++const char *glxvendor = 0;
++if (display)
++glxvendor = glXGetClientString(display, GLX_VENDOR);
+ if (glxvendor && !strcmp(glxvendor, "ATI"))
+ glxPbufferUsable = false;
+ }
+-- 
+2.6.2.2.g1b5ffa3
+


[arch-commits] Commit in sshuttle/repos/community-any (8 files)

2016-01-11 Thread Felix Yan
Date: Tuesday, January 12, 2016 @ 04:10:57
  Author: fyan
Revision: 156040

archrelease: copy trunk to community-any

Added:
  sshuttle/repos/community-any/PKGBUILD
(from rev 156039, sshuttle/trunk/PKGBUILD)
  sshuttle/repos/community-any/prefixes.conf
(from rev 156039, sshuttle/trunk/prefixes.conf)
  sshuttle/repos/community-any/sshuttle.service
(from rev 156039, sshuttle/trunk/sshuttle.service)
  sshuttle/repos/community-any/tunnel.conf
(from rev 156039, sshuttle/trunk/tunnel.conf)
Deleted:
  sshuttle/repos/community-any/PKGBUILD
  sshuttle/repos/community-any/prefixes.conf
  sshuttle/repos/community-any/sshuttle.service
  sshuttle/repos/community-any/tunnel.conf

--+
 PKGBUILD |   94 -
 prefixes.conf|   10 ++---
 sshuttle.service |   16 -
 tunnel.conf  |   38 ++---
 4 files changed, 76 insertions(+), 82 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-01-12 03:09:27 UTC (rev 156039)
+++ PKGBUILD2016-01-12 03:10:57 UTC (rev 156040)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: alphazo 
-
-pkgname=sshuttle
-pkgver=0.74
-pkgrel=2
-pkgdesc='Transparent proxy server that forwards all TCP packets over ssh'
-arch=('any')
-url="https://github.com/sshuttle/sshuttle;
-license=('GPL2')
-depends=('python-setuptools' 'iptables' 'openssh' 'net-tools')
-makedepends=('git' 'pandoc')
-checkdepends=('python-pytest-runner' 'python-mock')
-backup=('etc/sshuttle/tunnel.conf' 'etc/sshuttle/prefixes.conf')
-source=("git+https://github.com/sshuttle/$pkgname.git#tag=v$pkgver;
-'sshuttle.service' 'prefixes.conf' 'tunnel.conf')
-md5sums=('SKIP'
- 'f2cd1660dcdb4e24b45b71e589da73f3'
- 'e780f69851445f739ea76774bb3a3b17'
- '4137f5e6d5dd92b7f7f34a1bfdbda45c')
-
-prepare() {
-  cd $pkgname
-  # FS#47708
-  git revert --no-commit b4b283b2145f937248e90032d6944178278fb1f5
-}
-
-build() {
-  cd $pkgname
-  python setup.py build
-
-  pandoc -s -r markdown -w man -o sshuttle.8 sshuttle/sshuttle.md
-}
-
-check() {
-  cd $pkgname
-  python setup.py ptr
-}
-
-package() {
-  cd $pkgname
-  python setup.py install --root="$pkgdir" -O1
-
-  install -Dm644 sshuttle.8 "$pkgdir/usr/share/man/man8/sshuttle.8"
-
-  install -d "$pkgdir/etc/sshuttle"
-  install -m644 "$srcdir"/{tunnel.conf,prefixes.conf} "$pkgdir/etc/sshuttle"
-  install -Dm644 "$srcdir/sshuttle.service" 
"$pkgdir/usr/lib/systemd/system/sshuttle.service"
-}

Copied: sshuttle/repos/community-any/PKGBUILD (from rev 156039, 
sshuttle/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-01-12 03:10:57 UTC (rev 156040)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: alphazo 
+
+pkgname=sshuttle
+pkgver=0.75
+pkgrel=1
+pkgdesc='Transparent proxy server that forwards all TCP packets over ssh'
+arch=('any')
+url="https://github.com/sshuttle/sshuttle;
+license=('GPL2')
+depends=('python-setuptools' 'iptables' 'openssh' 'net-tools')
+makedepends=('git' 'pandoc')
+checkdepends=('python-pytest-runner' 'python-mock')
+backup=('etc/sshuttle/tunnel.conf' 'etc/sshuttle/prefixes.conf')
+source=("git+https://github.com/sshuttle/$pkgname.git#tag=v$pkgver;
+'sshuttle.service' 'prefixes.conf' 'tunnel.conf')
+md5sums=('SKIP'
+ 'f2cd1660dcdb4e24b45b71e589da73f3'
+ 'e780f69851445f739ea76774bb3a3b17'
+ '4137f5e6d5dd92b7f7f34a1bfdbda45c')
+
+build() {
+  cd $pkgname
+  python setup.py build
+
+  pandoc -s -r markdown -w man -o sshuttle.8 sshuttle/sshuttle.md
+}
+
+check() {
+  cd $pkgname
+  python setup.py ptr
+}
+
+package() {
+  cd $pkgname
+  python setup.py install --root="$pkgdir" -O1
+
+  install -Dm644 sshuttle.8 "$pkgdir/usr/share/man/man8/sshuttle.8"
+
+  install -d "$pkgdir/etc/sshuttle"
+  install -m644 "$srcdir"/{tunnel.conf,prefixes.conf} "$pkgdir/etc/sshuttle"
+  install -Dm644 "$srcdir/sshuttle.service" 
"$pkgdir/usr/lib/systemd/system/sshuttle.service"
+}

Deleted: prefixes.conf
===
--- prefixes.conf   2016-01-12 03:09:27 UTC (rev 156039)
+++ prefixes.conf   2016-01-12 03:10:57 UTC (rev 156040)
@@ -1,5 +0,0 @@
-# Output prefixes here, one per line.  Prefix is in:
-# prefix/netmask format
-# Like this:
-# 192.168.0.0/16
-# 192.0.43.10/32

Copied: sshuttle/repos/community-any/prefixes.conf (from rev 156039, 
sshuttle/trunk/prefixes.conf)
===
--- prefixes.conf   (rev 0)
+++ prefixes.conf   2016-01-12 03:10:57 UTC (rev 156040)
@@ -0,0 +1,5 @@
+# Output prefixes here, one per line.  Prefix is in:
+# prefix/netmask format
+# Like this:
+# 

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

2016-01-11 Thread Felix Yan
Date: Tuesday, January 12, 2016 @ 07:10:06
  Author: fyan
Revision: 156044

upgpkg: docker-compose 1.5.2-2

fix location of bash completion

Modified:
  docker-compose/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-12 06:05:41 UTC (rev 156043)
+++ PKGBUILD2016-01-12 06:10:06 UTC (rev 156044)
@@ -6,7 +6,7 @@
 
 pkgname=docker-compose
 pkgver=1.5.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Fast, isolated development environments using Docker"
 arch=('i686' 'x86_64')
 url="https://www.docker.com/;
@@ -39,5 +39,5 @@
 
   python setup.py install -O1 --root="$pkgdir"
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm644 contrib/completion/bash/docker-compose 
"$pkgdir/etc/bash_completion.d/docker-compose"
+  install -Dm644 contrib/completion/bash/docker-compose 
"$pkgdir/usr/share/bash-completion/completions/docker-compose"
 }


[arch-commits] Commit in (186 files)

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

KDE Applications 15.12.1

Modified:
  akonadi-calendar/trunk/PKGBUILD
  akonadi-search/trunk/PKGBUILD
  akonadi/trunk/PKGBUILD
  analitza/trunk/PKGBUILD
  ark/trunk/PKGBUILD
  artikulate/trunk/PKGBUILD
  baloo-widgets/trunk/PKGBUILD
  blinken/trunk/PKGBUILD
  bomber/trunk/PKGBUILD
  bovo/trunk/PKGBUILD
  cantor/trunk/PKGBUILD
  dolphin-plugins/trunk/PKGBUILD
  dolphin/trunk/PKGBUILD
  dragon/trunk/PKGBUILD
  ffmpegthumbs/trunk/PKGBUILD
  filelight/trunk/PKGBUILD
  gpgmepp/trunk/PKGBUILD
  granatier/trunk/PKGBUILD
  gwenview/trunk/PKGBUILD
  kaccounts-integration/trunk/PKGBUILD
  kaccounts-providers/trunk/PKGBUILD
  kalarmcal/trunk/PKGBUILD
  kalgebra/trunk/PKGBUILD
  kamera/trunk/PKGBUILD
  kanagram/trunk/PKGBUILD
  kapman/trunk/PKGBUILD
  kapptemplate/trunk/PKGBUILD
  kate/trunk/PKGBUILD
  katomic/trunk/PKGBUILD
  kblackbox/trunk/PKGBUILD
  kblocks/trunk/PKGBUILD
  kblog/trunk/PKGBUILD
  kbounce/trunk/PKGBUILD
  kbreakout/trunk/PKGBUILD
  kbruch/trunk/PKGBUILD
  kcalc/trunk/PKGBUILD
  kcalcore/trunk/PKGBUILD
  kcalutils/trunk/PKGBUILD
  kcharselect/trunk/PKGBUILD
  kcontacts/trunk/PKGBUILD
  kcron/trunk/PKGBUILD
  kde-dev-scripts/trunk/PKGBUILD
  kde-l10n/trunk/PKGBUILD
  kde-syndication/trunk/PKGBUILD
  kdeaccessibility-jovie/trunk/PKGBUILD
  kdeaccessibility-kaccessible/trunk/PKGBUILD
  kdeaccessibility-kmag/trunk/PKGBUILD
  kdeaccessibility-kmousetool/trunk/PKGBUILD
  kdeaccessibility-kmouth/trunk/PKGBUILD
  kdeadmin-kuser/trunk/PKGBUILD
  kdebase-runtime/trunk/PKGBUILD
  kdebase/trunk/PKGBUILD
  kdebugsettings/trunk/PKGBUILD
  kdeedu-data/trunk/PKGBUILD
  kdeedu-kalzium/trunk/PKGBUILD
  kdeedu-ktouch/trunk/PKGBUILD
  kdegames-kajongg/trunk/PKGBUILD
  kdegames-kgoldrunner/trunk/PKGBUILD
  kdegames-kigo/trunk/PKGBUILD
  kdegames-kmahjongg/trunk/PKGBUILD
  kdegames-kolf/trunk/PKGBUILD
  kdegames-konquest/trunk/PKGBUILD
  kdegames-kreversi/trunk/PKGBUILD
  kdegames-ksirk/trunk/PKGBUILD
  kdegames-ksnakeduel/trunk/PKGBUILD
  kdegames-kspaceduel/trunk/PKGBUILD
  kdegames-ksudoku/trunk/PKGBUILD
  kdegames-kubrick/trunk/PKGBUILD
  kdegames-lskat/trunk/PKGBUILD
  kdegames-palapeli/trunk/PKGBUILD
  kdegraphics-kcolorchooser/trunk/PKGBUILD
  kdegraphics-kolourpaint/trunk/PKGBUILD
  kdegraphics-ksaneplugin/trunk/PKGBUILD
  kdegraphics-mobipocket/trunk/PKGBUILD
  kdegraphics-okular/trunk/PKGBUILD
  kdegraphics-strigi-analyzer/trunk/PKGBUILD
  kdegraphics-svgpart/trunk/PKGBUILD
  kdegraphics-thumbnailers/trunk/PKGBUILD
  kdelibs/trunk/PKGBUILD
  kdemultimedia-audiocd-kio/trunk/PKGBUILD
  kdemultimedia-juk/trunk/PKGBUILD
  kdemultimedia-kmix/trunk/PKGBUILD
  kdemultimedia-kscd/trunk/PKGBUILD
  kdemultimedia-mplayerthumbs/trunk/PKGBUILD
  kdenetwork-filesharing/trunk/PKGBUILD
  kdenetwork-kget/trunk/PKGBUILD
  kdenetwork-kopete/trunk/PKGBUILD
  kdenetwork-kppp/trunk/PKGBUILD
  kdenetwork-krdc/trunk/PKGBUILD
  kdenetwork-strigi-analyzers/trunk/PKGBUILD
  kdenetwork-zeroconf-ioslave/trunk/PKGBUILD
  kdenlive/trunk/PKGBUILD
  kdepim-runtime/trunk/PKGBUILD
  kdepim/trunk/PKGBUILD
  kdepimlibs/trunk/PKGBUILD
  kdesdk-cervisia/trunk/PKGBUILD
  kdesdk-dev-utils/trunk/PKGBUILD
  kdesdk-kcachegrind/trunk/PKGBUILD
  kdesdk-strigi-analyzers/trunk/PKGBUILD
  kdesdk-thumbnailers/trunk/PKGBUILD
  kdeutils-kdf/trunk/PKGBUILD
  kdeutils-kfloppy/trunk/PKGBUILD
  kdeutils-kgpg/trunk/PKGBUILD
  kdeutils-kremotecontrol/trunk/PKGBUILD
  kdeutils-sweeper/trunk/PKGBUILD
  kdewebdev/trunk/PKGBUILD
  kdiamond/trunk/PKGBUILD
  kfourinline/trunk/PKGBUILD
  kgeography/trunk/PKGBUILD
  khangman/trunk/PKGBUILD
  kholidays/trunk/PKGBUILD
  kidentitymanagement/trunk/PKGBUILD
  kig/trunk/PKGBUILD
  killbots/trunk/PKGBUILD
  kimap/trunk/PKGBUILD
  kio-extras/trunk/PKGBUILD
  kiriki/trunk/PKGBUILD
  kiten/trunk/PKGBUILD
  kjumpingcube/trunk/PKGBUILD
  kldap/trunk/PKGBUILD
  klettres/trunk/PKGBUILD
  klickety/trunk/PKGBUILD
  klines/trunk/PKGBUILD
  kmailtransport/trunk/PKGBUILD
  kmbox/trunk/PKGBUILD
  kmime/trunk/PKGBUILD
  kmines/trunk/PKGBUILD
  kmplot/trunk/PKGBUILD
  knavalbattle/trunk/PKGBUILD
  knetwalk/trunk/PKGBUILD
  kollision/trunk/PKGBUILD
  kompare/trunk/PKGBUILD
  konsole/trunk/PKGBUILD
  kontactinterface/trunk/PKGBUILD
  kpatience/trunk/PKGBUILD
  kpimtextedit/trunk/PKGBUILD
  kqtquickcharts/trunk/PKGBUILD
  krfb/trunk/PKGBUILD
  kross-interpreters/trunk/PKGBUILD
  kruler/trunk/PKGBUILD
  kshisen/trunk/PKGBUILD
  ksquares/trunk/PKGBUILD
  kstars/trunk/PKGBUILD
  ksystemlog/trunk/PKGBUILD
  kteatime/trunk/PKGBUILD
  ktimer/trunk/PKGBUILD
  ktuberling/trunk/PKGBUILD
  kturtle/trunk/PKGBUILD
  kwalletmanager/trunk/PKGBUILD
  kwordquiz/trunk/PKGBUILD
  libkcddb/trunk/PKGBUILD
  libkcompactdisc/trunk/PKGBUILD
  libkdcraw/trunk/PKGBUILD
  libkdegames/trunk/PKGBUILD
  libkeduvocdocument/trunk/PKGBUILD
  libkexiv2/trunk/PKGBUILD
  libkface/trunk/PKGBUILD
  libkgeomap/trunk/PKGBUILD
  libkipi/trunk/PKGBUILD
  libkmahjongg/trunk/PKGBUILD
  

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:37:44
  Author: arojas
Revision: 257981

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

Added:
  kholidays/repos/extra-i686/PKGBUILD
(from rev 257980, kholidays/trunk/PKGBUILD)
  kholidays/repos/extra-x86_64/PKGBUILD
(from rev 257980, kholidays/trunk/PKGBUILD)
Deleted:
  kholidays/repos/extra-i686/PKGBUILD
  kholidays/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:37:25 UTC (rev 257980)
+++ extra-i686/PKGBUILD 2016-01-12 07:37:44 UTC (rev 257981)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kholidays
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="KDE library for regional holiday information"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(qt5-base)
-makedepends=(extra-cmake-modules)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('dcc66598f1a7073bfaabdd55b2ee6359')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kholidays/repos/extra-i686/PKGBUILD (from rev 257980, 
kholidays/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:37:44 UTC (rev 257981)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kholidays
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="KDE library for regional holiday information"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(qt5-base)
+makedepends=(extra-cmake-modules)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('2bce2350a78938f08fd7065d0382dec1')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:37:25 UTC (rev 257980)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:37:44 UTC (rev 257981)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kholidays
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="KDE library for regional holiday information"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(qt5-base)
-makedepends=(extra-cmake-modules)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('dcc66598f1a7073bfaabdd55b2ee6359')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kholidays/repos/extra-x86_64/PKGBUILD (from rev 257980, 
kholidays/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:37:44 UTC (rev 257981)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kholidays
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="KDE library for regional holiday information"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(qt5-base)
+makedepends=(extra-cmake-modules)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('2bce2350a78938f08fd7065d0382dec1')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in signon-kwallet-extension/repos (4 files)

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:42:57
  Author: arojas
Revision: 257997

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

Added:
  signon-kwallet-extension/repos/extra-i686/PKGBUILD
(from rev 257996, signon-kwallet-extension/trunk/PKGBUILD)
  signon-kwallet-extension/repos/extra-x86_64/PKGBUILD
(from rev 257996, signon-kwallet-extension/trunk/PKGBUILD)
Deleted:
  signon-kwallet-extension/repos/extra-i686/PKGBUILD
  signon-kwallet-extension/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:42:35 UTC (rev 257996)
+++ extra-i686/PKGBUILD 2016-01-12 07:42:57 UTC (rev 257997)
@@ -1,34 +0,0 @@
-# Maintainer: anex 

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:43:16
  Author: arojas
Revision: 257998

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

Added:
  kaccounts-integration/repos/extra-i686/PKGBUILD
(from rev 257997, kaccounts-integration/trunk/PKGBUILD)
  kaccounts-integration/repos/extra-x86_64/PKGBUILD
(from rev 257997, kaccounts-integration/trunk/PKGBUILD)
Deleted:
  kaccounts-integration/repos/extra-i686/PKGBUILD
  kaccounts-integration/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:42:57 UTC (rev 257997)
+++ extra-i686/PKGBUILD 2016-01-12 07:43:16 UTC (rev 257998)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas  
-
-pkgname=kaccounts-integration
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='Small system to administer web accounts for the sites and services 
across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, 
-Jabber and others'
-arch=(i686 x86_64)
-url='https://projects.kde.org/projects/kdereview/kaccounts-integration'
-license=(GPL)
-groups=(kde-applications kdenetwork)
-depends=(kcmutils signon-kwallet-extension signon-plugin-oauth2 signon-ui)
-makedepends=(extra-cmake-modules kdoctools)
-source=("http://download.kde.org/stable/applications/${pkgver}/src/$pkgname-${pkgver}.tar.xz;)
-md5sums=('6ae85de02ca89f16f2daa9f8367dc528')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kaccounts-integration/repos/extra-i686/PKGBUILD (from rev 257997, 
kaccounts-integration/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:43:16 UTC (rev 257998)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas  
+
+pkgname=kaccounts-integration
+pkgver=15.12.1
+pkgrel=1
+pkgdesc='Small system to administer web accounts for the sites and services 
across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, 
+Jabber and others'
+arch=(i686 x86_64)
+url='https://projects.kde.org/projects/kdereview/kaccounts-integration'
+license=(GPL)
+groups=(kde-applications kdenetwork)
+depends=(kcmutils signon-kwallet-extension signon-plugin-oauth2 signon-ui)
+makedepends=(extra-cmake-modules kdoctools)
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$pkgname-${pkgver}.tar.xz;)
+md5sums=('ad163a51f21e3c9ffe30372c536df9d5')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:42:57 UTC (rev 257997)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:43:16 UTC (rev 257998)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas  
-
-pkgname=kaccounts-integration
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='Small system to administer web accounts for the sites and services 
across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, 
-Jabber and others'
-arch=(i686 x86_64)
-url='https://projects.kde.org/projects/kdereview/kaccounts-integration'
-license=(GPL)
-groups=(kde-applications kdenetwork)
-depends=(kcmutils signon-kwallet-extension signon-plugin-oauth2 signon-ui)
-makedepends=(extra-cmake-modules kdoctools)
-source=("http://download.kde.org/stable/applications/${pkgver}/src/$pkgname-${pkgver}.tar.xz;)
-md5sums=('6ae85de02ca89f16f2daa9f8367dc528')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kaccounts-integration/repos/extra-x86_64/PKGBUILD (from rev 257997, 
kaccounts-integration/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:43:16 UTC (rev 257998)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas  
+
+pkgname=kaccounts-integration
+pkgver=15.12.1

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:43:33
  Author: arojas
Revision: 257999

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

Added:
  kaccounts-providers/repos/extra-i686/PKGBUILD
(from rev 257998, kaccounts-providers/trunk/PKGBUILD)
  kaccounts-providers/repos/extra-i686/kaccounts-providers.install
(from rev 257998, kaccounts-providers/trunk/kaccounts-providers.install)
  kaccounts-providers/repos/extra-x86_64/PKGBUILD
(from rev 257998, kaccounts-providers/trunk/PKGBUILD)
  kaccounts-providers/repos/extra-x86_64/kaccounts-providers.install
(from rev 257998, kaccounts-providers/trunk/kaccounts-providers.install)
Deleted:
  kaccounts-providers/repos/extra-i686/PKGBUILD
  kaccounts-providers/repos/extra-i686/kaccounts-providers.install
  kaccounts-providers/repos/extra-x86_64/PKGBUILD
  kaccounts-providers/repos/extra-x86_64/kaccounts-providers.install

--+
 /PKGBUILD|   72 +
 /kaccounts-providers.install |   22 
 extra-i686/PKGBUILD  |   36 --
 extra-i686/kaccounts-providers.install   |   11 
 extra-x86_64/PKGBUILD|   36 --
 extra-x86_64/kaccounts-providers.install |   11 
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:43:16 UTC (rev 257998)
+++ extra-i686/PKGBUILD 2016-01-12 07:43:33 UTC (rev 257999)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=kaccounts-providers
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='Small system to administer web accounts for the sites and services 
across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, 
-Jabber and others'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/playground/base/kde-accounts/kaccounts-providers'
-license=('GPL')
-groups=('kde-applications' 'kdenetwork')
-depends=('kaccounts-integration')
-makedepends=('extra-cmake-modules' 'intltool')
-install=$pkgname.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/$pkgname-${pkgver}.tar.xz;)
-md5sums=('abc292826619fe1893f8806624391c78')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kaccounts-providers/repos/extra-i686/PKGBUILD (from rev 257998, 
kaccounts-providers/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:43:33 UTC (rev 257999)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=kaccounts-providers
+pkgver=15.12.1
+pkgrel=1
+pkgdesc='Small system to administer web accounts for the sites and services 
across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, 
+Jabber and others'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/playground/base/kde-accounts/kaccounts-providers'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork')
+depends=('kaccounts-integration')
+makedepends=('extra-cmake-modules' 'intltool')
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$pkgname-${pkgver}.tar.xz;)
+md5sums=('eb7e277f863f55571281a420f4b2fea3')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/kaccounts-providers.install
===
--- extra-i686/kaccounts-providers.install  2016-01-12 07:43:16 UTC (rev 
257998)
+++ extra-i686/kaccounts-providers.install  2016-01-12 07:43:33 UTC (rev 
257999)
@@ -1,11 +0,0 @@
-post_install() {
-xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_update() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: kaccounts-providers/repos/extra-i686/kaccounts-providers.install (from 
rev 257998, kaccounts-providers/trunk/kaccounts-providers.install)
===
--- extra-i686/kaccounts-providers.install  (rev 0)
+++ extra-i686/kaccounts-providers.install  2016-01-12 07:43:33 UTC (rev 
257999)
@@ -0,0 +1,11 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_update() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: 

[arch-commits] Commit in telepathy-kde-common-internals/repos (8 files)

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:43:52
  Author: arojas
Revision: 258000

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

Added:
  telepathy-kde-common-internals/repos/extra-i686/PKGBUILD
(from rev 257999, telepathy-kde-common-internals/trunk/PKGBUILD)
  
telepathy-kde-common-internals/repos/extra-i686/telepathy-kde-common-internals.install
(from rev 257999, 
telepathy-kde-common-internals/trunk/telepathy-kde-common-internals.install)
  telepathy-kde-common-internals/repos/extra-x86_64/PKGBUILD
(from rev 257999, telepathy-kde-common-internals/trunk/PKGBUILD)
  
telepathy-kde-common-internals/repos/extra-x86_64/telepathy-kde-common-internals.install
(from rev 257999, 
telepathy-kde-common-internals/trunk/telepathy-kde-common-internals.install)
Deleted:
  telepathy-kde-common-internals/repos/extra-i686/PKGBUILD
  
telepathy-kde-common-internals/repos/extra-i686/telepathy-kde-common-internals.install
  telepathy-kde-common-internals/repos/extra-x86_64/PKGBUILD
  
telepathy-kde-common-internals/repos/extra-x86_64/telepathy-kde-common-internals.install

-+
 /PKGBUILD   |   78 ++
 /telepathy-kde-common-internals.install |   24 +
 extra-i686/PKGBUILD |   39 -
 extra-i686/telepathy-kde-common-internals.install   |   12 --
 extra-x86_64/PKGBUILD   |   39 -
 extra-x86_64/telepathy-kde-common-internals.install |   12 --
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:43:33 UTC (rev 257999)
+++ extra-i686/PKGBUILD 2016-01-12 07:43:52 UTC (rev 258000)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Laurent Carlier 
-# Contributor: Antonio Rojas 
-
-pkgname=telepathy-kde-common-internals
-_pkgname=ktp-common-internals
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='Common components 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=(knotifyconfig ktexteditor kpeople telepathy-logger-qt 
kaccounts-integration libotr hicolor-icon-theme telepathy-accounts-signon)
-makedepends=(extra-cmake-modules kdoctools doxygen python)
-source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
-md5sums=('f261e973931a1200945e69cee612faca')
-install=$pkgname.install
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$_pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: telepathy-kde-common-internals/repos/extra-i686/PKGBUILD (from rev 
257999, telepathy-kde-common-internals/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:43:52 UTC (rev 258000)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-common-internals
+_pkgname=ktp-common-internals
+pkgver=15.12.1
+pkgrel=1
+pkgdesc='Common components 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=(knotifyconfig ktexteditor kpeople telepathy-logger-qt 
kaccounts-integration libotr hicolor-icon-theme telepathy-accounts-signon)
+makedepends=(extra-cmake-modules kdoctools doxygen python)
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('08e146402dae12e080e4250e421efd8b')
+install=$pkgname.install
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/telepathy-kde-common-internals.install
===
--- extra-i686/telepathy-kde-common-internals.install   2016-01-12 07:43:33 UTC 
(rev 257999)
+++ extra-i686/telepathy-kde-common-internals.install   2016-01-12 07:43:52 UTC 
(rev 258000)
@@ -1,12 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-   

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:45:40
  Author: arojas
Revision: 258006

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

Added:
  kcron/repos/extra-i686/PKGBUILD
(from rev 258005, kcron/trunk/PKGBUILD)
  kcron/repos/extra-x86_64/PKGBUILD
(from rev 258005, kcron/trunk/PKGBUILD)
Deleted:
  kcron/repos/extra-i686/PKGBUILD
  kcron/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:45:21 UTC (rev 258005)
+++ extra-i686/PKGBUILD 2016-01-12 07:45:40 UTC (rev 258006)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kcron
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='Configure and schedule tasks'
-url='http://userbase.kde.org/KCron'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeadmin')
-depends=('kio' 'cron')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-conflicts=('kdeadmin-kcron')
-replaces=('kdeadmin-kcron')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kcron-${pkgver}.tar.xz;)
-sha1sums=('46fe0d452fa391859b8b11c7c12e9bf29d9c9e10')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../kcron-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: kcron/repos/extra-i686/PKGBUILD (from rev 258005, kcron/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:45:40 UTC (rev 258006)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kcron
+pkgver=15.12.1
+pkgrel=1
+pkgdesc='Configure and schedule tasks'
+url='http://userbase.kde.org/KCron'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeadmin')
+depends=('kio' 'cron')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+conflicts=('kdeadmin-kcron')
+replaces=('kdeadmin-kcron')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kcron-${pkgver}.tar.xz;)
+sha1sums=('c78d76e8abeeef8d38a7332a74a30bb89c55d36a')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../kcron-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:45:21 UTC (rev 258005)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:45:40 UTC (rev 258006)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kcron
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='Configure and schedule tasks'
-url='http://userbase.kde.org/KCron'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeadmin')
-depends=('kio' 'cron')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-conflicts=('kdeadmin-kcron')
-replaces=('kdeadmin-kcron')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kcron-${pkgver}.tar.xz;)
-sha1sums=('46fe0d452fa391859b8b11c7c12e9bf29d9c9e10')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../kcron-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: kcron/repos/extra-x86_64/PKGBUILD (from rev 258005, 
kcron/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:45:40 UTC (rev 258006)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kcron
+pkgver=15.12.1
+pkgrel=1
+pkgdesc='Configure and schedule tasks'
+url='http://userbase.kde.org/KCron'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeadmin')
+depends=('kio' 'cron')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+conflicts=('kdeadmin-kcron')
+replaces=('kdeadmin-kcron')

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:45:04
  Author: arojas
Revision: 258004

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

Added:
  kdeaccessibility-kmousetool/repos/extra-i686/PKGBUILD
(from rev 258003, kdeaccessibility-kmousetool/trunk/PKGBUILD)
  
kdeaccessibility-kmousetool/repos/extra-i686/kdeaccessibility-kmousetool.install
(from rev 258003, 
kdeaccessibility-kmousetool/trunk/kdeaccessibility-kmousetool.install)
Deleted:
  kdeaccessibility-kmousetool/repos/extra-i686/PKGBUILD
  
kdeaccessibility-kmousetool/repos/extra-i686/kdeaccessibility-kmousetool.install
  kdeaccessibility-kmousetool/repos/extra-x86_64/PKGBUILD
  
kdeaccessibility-kmousetool/repos/extra-x86_64/kdeaccessibility-kmousetool.install

--+
 /PKGBUILD|   33 +
 /kdeaccessibility-kmousetool.install |   11 +++
 extra-i686/PKGBUILD  |   33 -
 extra-i686/kdeaccessibility-kmousetool.install   |   11 ---
 extra-x86_64/PKGBUILD|   33 -
 extra-x86_64/kdeaccessibility-kmousetool.install |   11 ---
 6 files changed, 44 insertions(+), 88 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:44:47 UTC (rev 258003)
+++ extra-i686/PKGBUILD 2016-01-12 07:45:04 UTC (rev 258004)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdeaccessibility-kmousetool
-pkgver=15.12.0
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='Clicks the mouse for you, reducing the effects of RSI'
-url='http://kde.org/applications/utilities/kmousetool/'
-license=('GPL' 'FDL')
-groups=('kde-applications' 'kdeaccessibility')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4')
-install=${pkgname}.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kmousetool-${pkgver}.tar.xz;)
-sha1sums=('6a9cf18a30f5ead7dd3748c57fc280e2267c957b')
-
-build() {
-  cd "${srcdir}"
-  mkdir -p build
-  cd build
-  cmake ../kmousetool-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd $srcdir/build
-  make DESTDIR=$pkgdir install
-}

Copied: kdeaccessibility-kmousetool/repos/extra-i686/PKGBUILD (from rev 258003, 
kdeaccessibility-kmousetool/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:45:04 UTC (rev 258004)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeaccessibility-kmousetool
+pkgver=15.12.1
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='Clicks the mouse for you, reducing the effects of RSI'
+url='http://kde.org/applications/utilities/kmousetool/'
+license=('GPL' 'FDL')
+groups=('kde-applications' 'kdeaccessibility')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kmousetool-${pkgver}.tar.xz;)
+sha1sums=('4ddec222e34d0f81ec3851b54ab2804975fd79c3')
+
+build() {
+  cd "${srcdir}"
+  mkdir -p build
+  cd build
+  cmake ../kmousetool-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/kdeaccessibility-kmousetool.install
===
--- extra-i686/kdeaccessibility-kmousetool.install  2016-01-12 07:44:47 UTC 
(rev 258003)
+++ extra-i686/kdeaccessibility-kmousetool.install  2016-01-12 07:45:04 UTC 
(rev 258004)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: 
kdeaccessibility-kmousetool/repos/extra-i686/kdeaccessibility-kmousetool.install
 (from rev 258003, 
kdeaccessibility-kmousetool/trunk/kdeaccessibility-kmousetool.install)
===
--- extra-i686/kdeaccessibility-kmousetool.install  
(rev 0)
+++ extra-i686/kdeaccessibility-kmousetool.install  2016-01-12 07:45:04 UTC 
(rev 258004)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:44:47 UTC (rev 258003)
+++ extra-x86_64/PKGBUILD  

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:44:47
  Author: arojas
Revision: 258003

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

Added:
  kdeaccessibility-kmag/repos/extra-i686/PKGBUILD
(from rev 258002, kdeaccessibility-kmag/trunk/PKGBUILD)
  kdeaccessibility-kmag/repos/extra-i686/kdeaccessibility-kmag.install
(from rev 258002, kdeaccessibility-kmag/trunk/kdeaccessibility-kmag.install)
  kdeaccessibility-kmag/repos/extra-x86_64/PKGBUILD
(from rev 258002, kdeaccessibility-kmag/trunk/PKGBUILD)
  kdeaccessibility-kmag/repos/extra-x86_64/kdeaccessibility-kmag.install
(from rev 258002, kdeaccessibility-kmag/trunk/kdeaccessibility-kmag.install)
Deleted:
  kdeaccessibility-kmag/repos/extra-i686/PKGBUILD
  kdeaccessibility-kmag/repos/extra-i686/kdeaccessibility-kmag.install
  kdeaccessibility-kmag/repos/extra-x86_64/PKGBUILD
  kdeaccessibility-kmag/repos/extra-x86_64/kdeaccessibility-kmag.install

+
 /PKGBUILD  |   70 +++
 /kdeaccessibility-kmag.install |   22 
 extra-i686/PKGBUILD|   35 -
 extra-i686/kdeaccessibility-kmag.install   |   11 
 extra-x86_64/PKGBUILD  |   35 -
 extra-x86_64/kdeaccessibility-kmag.install |   11 
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:44:29 UTC (rev 258002)
+++ extra-i686/PKGBUILD 2016-01-12 07:44:47 UTC (rev 258003)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdeaccessibility-kmag
-pkgver=15.12.0
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='Screen Magnifier'
-url='http://kde.org/applications/utilities/kmag/'
-license=('GPL' 'FDL')
-groups=('kde-applications' 'kdeaccessibility')
-depends=('kdebase-runtime' 'libkdeaccessibilityclient')
-makedepends=('cmake' 'automoc4')
-install=${pkgname}.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kmag-${pkgver}.tar.xz;)
-sha1sums=('2e8c923e5c4b91337fcafab5d18212f199e817d3')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kmag-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kdeaccessibility-kmag/repos/extra-i686/PKGBUILD (from rev 258002, 
kdeaccessibility-kmag/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:44:47 UTC (rev 258003)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeaccessibility-kmag
+pkgver=15.12.1
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='Screen Magnifier'
+url='http://kde.org/applications/utilities/kmag/'
+license=('GPL' 'FDL')
+groups=('kde-applications' 'kdeaccessibility')
+depends=('kdebase-runtime' 'libkdeaccessibilityclient')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kmag-${pkgver}.tar.xz;)
+sha1sums=('32aa6441331854c0c2c9a7f541024f862eb65330')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kmag-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/kdeaccessibility-kmag.install
===
--- extra-i686/kdeaccessibility-kmag.install2016-01-12 07:44:29 UTC (rev 
258002)
+++ extra-i686/kdeaccessibility-kmag.install2016-01-12 07:44:47 UTC (rev 
258003)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdeaccessibility-kmag/repos/extra-i686/kdeaccessibility-kmag.install 
(from rev 258002, kdeaccessibility-kmag/trunk/kdeaccessibility-kmag.install)
===
--- extra-i686/kdeaccessibility-kmag.install(rev 0)
+++ extra-i686/kdeaccessibility-kmag.install2016-01-12 07:44:47 UTC (rev 
258003)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:44:29 UTC (rev 258002)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:44:47 

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:44:10
  Author: arojas
Revision: 258001

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

Added:
  kdeaccessibility-jovie/repos/extra-i686/PKGBUILD
(from rev 258000, kdeaccessibility-jovie/trunk/PKGBUILD)
  kdeaccessibility-jovie/repos/extra-i686/kdeaccessibility-jovie.install
(from rev 258000, 
kdeaccessibility-jovie/trunk/kdeaccessibility-jovie.install)
  kdeaccessibility-jovie/repos/extra-x86_64/PKGBUILD
(from rev 258000, kdeaccessibility-jovie/trunk/PKGBUILD)
  kdeaccessibility-jovie/repos/extra-x86_64/kdeaccessibility-jovie.install
(from rev 258000, 
kdeaccessibility-jovie/trunk/kdeaccessibility-jovie.install)
Deleted:
  kdeaccessibility-jovie/repos/extra-i686/PKGBUILD
  kdeaccessibility-jovie/repos/extra-i686/kdeaccessibility-jovie.install
  kdeaccessibility-jovie/repos/extra-x86_64/PKGBUILD
  kdeaccessibility-jovie/repos/extra-x86_64/kdeaccessibility-jovie.install

-+
 /PKGBUILD   |   66 ++
 /kdeaccessibility-jovie.install |   22 
 extra-i686/PKGBUILD |   33 -
 extra-i686/kdeaccessibility-jovie.install   |   11 
 extra-x86_64/PKGBUILD   |   33 -
 extra-x86_64/kdeaccessibility-jovie.install |   11 
 6 files changed, 88 insertions(+), 88 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:43:52 UTC (rev 258000)
+++ extra-i686/PKGBUILD 2016-01-12 07:44:10 UTC (rev 258001)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdeaccessibility-jovie
-pkgver=15.12.0
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='A text to speech application'
-url='http://kde.org/applications/utilities/jovie/'
-license=('GPL' 'FDL')
-groups=('kde-applications' 'kdeaccessibility')
-depends=('kdebase-runtime' 'speech-dispatcher')
-makedepends=('cmake' 'automoc4')
-replaces=('kdeaccessibility-kttsd')
-install=${pkgname}.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/jovie-${pkgver}.tar.xz;)
-sha1sums=('74148c004ab6d0a5f1e7e169a0a57dea766946e0')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../jovie-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: kdeaccessibility-jovie/repos/extra-i686/PKGBUILD (from rev 258000, 
kdeaccessibility-jovie/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:44:10 UTC (rev 258001)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeaccessibility-jovie
+pkgver=15.12.1
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='A text to speech application'
+url='http://kde.org/applications/utilities/jovie/'
+license=('GPL' 'FDL')
+groups=('kde-applications' 'kdeaccessibility')
+depends=('kdebase-runtime' 'speech-dispatcher')
+makedepends=('cmake' 'automoc4')
+replaces=('kdeaccessibility-kttsd')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/jovie-${pkgver}.tar.xz;)
+sha1sums=('cea75a73b93a0158450ac562994dc0e5836573d9')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../jovie-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/kdeaccessibility-jovie.install
===
--- extra-i686/kdeaccessibility-jovie.install   2016-01-12 07:43:52 UTC (rev 
258000)
+++ extra-i686/kdeaccessibility-jovie.install   2016-01-12 07:44:10 UTC (rev 
258001)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdeaccessibility-jovie/repos/extra-i686/kdeaccessibility-jovie.install 
(from rev 258000, kdeaccessibility-jovie/trunk/kdeaccessibility-jovie.install)
===
--- extra-i686/kdeaccessibility-jovie.install   (rev 0)
+++ extra-i686/kdeaccessibility-jovie.install   2016-01-12 07:44:10 UTC (rev 
258001)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   

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

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

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

Added:
  kdeaccessibility-kaccessible/repos/extra-i686/PKGBUILD
(from rev 258001, kdeaccessibility-kaccessible/trunk/PKGBUILD)
  kdeaccessibility-kaccessible/repos/extra-x86_64/PKGBUILD
(from rev 258001, kdeaccessibility-kaccessible/trunk/PKGBUILD)
Deleted:
  kdeaccessibility-kaccessible/repos/extra-i686/PKGBUILD
  kdeaccessibility-kaccessible/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:44:10 UTC (rev 258001)
+++ extra-i686/PKGBUILD 2016-01-12 07:44:29 UTC (rev 258002)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdeaccessibility-kaccessible
-pkgver=15.12.0
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='Provides accessibility services like focus tracking and a 
screenreader'
-url='https://projects.kde.org/projects/kde/kdeaccessibility/kaccessible'
-license=('GPL' 'FDL')
-groups=('kde-applications' 'kdeaccessibility')
-depends=('kdelibs' 'speech-dispatcher')
-makedepends=('cmake' 'automoc4')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kaccessible-${pkgver}.tar.xz;)
-sha1sums=('556a41385f67af8f8972bad8de7bdf9d779dc18a')
-
-build() {
-  cd "${srcdir}"
-  mkdir -p build
-  cd build
-  cmake ../kaccessible-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd $srcdir/build
-  make DESTDIR=$pkgdir install
-}

Copied: kdeaccessibility-kaccessible/repos/extra-i686/PKGBUILD (from rev 
258001, kdeaccessibility-kaccessible/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:44:29 UTC (rev 258002)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeaccessibility-kaccessible
+pkgver=15.12.1
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='Provides accessibility services like focus tracking and a 
screenreader'
+url='https://projects.kde.org/projects/kde/kdeaccessibility/kaccessible'
+license=('GPL' 'FDL')
+groups=('kde-applications' 'kdeaccessibility')
+depends=('kdelibs' 'speech-dispatcher')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kaccessible-${pkgver}.tar.xz;)
+sha1sums=('68bd5b0e7a2fab5c1a5a620b50e9211577346753')
+
+build() {
+  cd "${srcdir}"
+  mkdir -p build
+  cd build
+  cmake ../kaccessible-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:44:10 UTC (rev 258001)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:44:29 UTC (rev 258002)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdeaccessibility-kaccessible
-pkgver=15.12.0
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='Provides accessibility services like focus tracking and a 
screenreader'
-url='https://projects.kde.org/projects/kde/kdeaccessibility/kaccessible'
-license=('GPL' 'FDL')
-groups=('kde-applications' 'kdeaccessibility')
-depends=('kdelibs' 'speech-dispatcher')
-makedepends=('cmake' 'automoc4')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kaccessible-${pkgver}.tar.xz;)
-sha1sums=('556a41385f67af8f8972bad8de7bdf9d779dc18a')
-
-build() {
-  cd "${srcdir}"
-  mkdir -p build
-  cd build
-  cmake ../kaccessible-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd $srcdir/build
-  make DESTDIR=$pkgdir install
-}

Copied: kdeaccessibility-kaccessible/repos/extra-x86_64/PKGBUILD (from rev 
258001, kdeaccessibility-kaccessible/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:44:29 UTC (rev 258002)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeaccessibility-kaccessible
+pkgver=15.12.1
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='Provides 

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:45:21
  Author: arojas
Revision: 258005

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

Added:
  kdeaccessibility-kmouth/repos/extra-i686/PKGBUILD
(from rev 258004, kdeaccessibility-kmouth/trunk/PKGBUILD)
  kdeaccessibility-kmouth/repos/extra-i686/kdeaccessibility-kmouth.install
(from rev 258004, 
kdeaccessibility-kmouth/trunk/kdeaccessibility-kmouth.install)
  kdeaccessibility-kmouth/repos/extra-x86_64/PKGBUILD
(from rev 258004, kdeaccessibility-kmouth/trunk/PKGBUILD)
  kdeaccessibility-kmouth/repos/extra-x86_64/kdeaccessibility-kmouth.install
(from rev 258004, 
kdeaccessibility-kmouth/trunk/kdeaccessibility-kmouth.install)
Deleted:
  kdeaccessibility-kmouth/repos/extra-i686/PKGBUILD
  kdeaccessibility-kmouth/repos/extra-i686/kdeaccessibility-kmouth.install
  kdeaccessibility-kmouth/repos/extra-x86_64/PKGBUILD
  kdeaccessibility-kmouth/repos/extra-x86_64/kdeaccessibility-kmouth.install

--+
 /PKGBUILD|   66 +
 /kdeaccessibility-kmouth.install |   22 
 extra-i686/PKGBUILD  |   33 
 extra-i686/kdeaccessibility-kmouth.install   |   11 
 extra-x86_64/PKGBUILD|   33 
 extra-x86_64/kdeaccessibility-kmouth.install |   11 
 6 files changed, 88 insertions(+), 88 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:45:04 UTC (rev 258004)
+++ extra-i686/PKGBUILD 2016-01-12 07:45:21 UTC (rev 258005)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdeaccessibility-kmouth
-pkgver=15.12.0
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='Speech Synthesizer Frontend'
-url='http://kde.org/applications/utilities/kmouth/'
-license=('GPL' 'FDL')
-groups=('kde-applications' 'kdeaccessibility')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4')
-install=${pkgname}.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kmouth-${pkgver}.tar.xz;)
-sha1sums=('17d5d6ac2aeca890a7ee8dc192cecc69bee97e67')
-
-build() {
-  cd "${srcdir}"
-  mkdir -p build
-  cd build
-  cmake ../kmouth-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd $srcdir/build
-  make DESTDIR=$pkgdir install
-}

Copied: kdeaccessibility-kmouth/repos/extra-i686/PKGBUILD (from rev 258004, 
kdeaccessibility-kmouth/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:45:21 UTC (rev 258005)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeaccessibility-kmouth
+pkgver=15.12.1
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='Speech Synthesizer Frontend'
+url='http://kde.org/applications/utilities/kmouth/'
+license=('GPL' 'FDL')
+groups=('kde-applications' 'kdeaccessibility')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kmouth-${pkgver}.tar.xz;)
+sha1sums=('fc9e8e9cda6ef922ca7708cffa358c6fae05c185')
+
+build() {
+  cd "${srcdir}"
+  mkdir -p build
+  cd build
+  cmake ../kmouth-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/kdeaccessibility-kmouth.install
===
--- extra-i686/kdeaccessibility-kmouth.install  2016-01-12 07:45:04 UTC (rev 
258004)
+++ extra-i686/kdeaccessibility-kmouth.install  2016-01-12 07:45:21 UTC (rev 
258005)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: 
kdeaccessibility-kmouth/repos/extra-i686/kdeaccessibility-kmouth.install (from 
rev 258004, kdeaccessibility-kmouth/trunk/kdeaccessibility-kmouth.install)
===
--- extra-i686/kdeaccessibility-kmouth.install  (rev 0)
+++ extra-i686/kdeaccessibility-kmouth.install  2016-01-12 07:45:21 UTC (rev 
258005)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:45:04 UTC (rev 

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:52:48
  Author: arojas
Revision: 258026

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

Added:
  kstars/repos/extra-i686/PKGBUILD
(from rev 258025, kstars/trunk/PKGBUILD)
  kstars/repos/extra-i686/kstars.install
(from rev 258025, kstars/trunk/kstars.install)
  kstars/repos/extra-x86_64/PKGBUILD
(from rev 258025, kstars/trunk/PKGBUILD)
  kstars/repos/extra-x86_64/kstars.install
(from rev 258025, kstars/trunk/kstars.install)
Deleted:
  kstars/repos/extra-i686/PKGBUILD
  kstars/repos/extra-i686/kstars.install
  kstars/repos/extra-x86_64/PKGBUILD
  kstars/repos/extra-x86_64/kstars.install

-+
 /PKGBUILD   |   86 ++
 /kstars.install |   22 ++
 extra-i686/PKGBUILD |   47 --
 extra-i686/kstars.install   |   11 -
 extra-x86_64/PKGBUILD   |   47 --
 extra-x86_64/kstars.install |   11 -
 6 files changed, 108 insertions(+), 116 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:52:29 UTC (rev 258025)
+++ extra-i686/PKGBUILD 2016-01-12 07:52:48 UTC (rev 258026)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kstars
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Desktop Planetarium"
-url="http://kde.org/applications/education/kstars/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeedu')
-depends=('wcslib' 'libindi' 'kplotting' 'knewstuff' 'qt5-multimedia' 'kinit' 
'ktexteditor' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools' 'eigen' 'xplanet')
-optdepends=('xplanet: XPlanet support')
-install=${pkgname}.install
-replaces=('kdeedu-kstars')
-conflicts=('kdeedu-kstars')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kstars-${pkgver}.tar.xz;)
-sha1sums=('6d6895eb7e23617934e1ca345ee76c434f29f785')
-
-prepare() {
-  mkdir -p build
-
-# Use python2
-  cd $pkgname-$pkgver
-  sed -e 's|"python"|"python2"|' -i 
kstars/skycomponents/supernovaecomponent.cpp 
-}
-
-build() {
-  cd build
-  cmake ../kstars-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-
-  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|g' \
-"${pkgdir}"/usr/share/kstars/scripts/supernova_updates_parser.py
-}

Copied: kstars/repos/extra-i686/PKGBUILD (from rev 258025, 
kstars/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:52:48 UTC (rev 258026)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kstars
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Desktop Planetarium"
+url="http://kde.org/applications/education/kstars/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('wcslib' 'libindi' 'kplotting' 'knewstuff' 'qt5-multimedia' 'kinit' 
'ktexteditor' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools' 'eigen' 'xplanet')
+optdepends=('xplanet: XPlanet support')
+install=${pkgname}.install
+replaces=('kdeedu-kstars')
+conflicts=('kdeedu-kstars')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kstars-${pkgver}.tar.xz;)
+sha1sums=('472094f0867d01012d1968b6c2d973733a6089ab')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kstars-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|g' \
+"${pkgdir}"/usr/share/kstars/scripts/supernova_updates_parser.py
+}

Deleted: extra-i686/kstars.install
===
--- extra-i686/kstars.install   2016-01-12 07:52:29 UTC (rev 258025)
+++ extra-i686/kstars.install   2016-01-12 07:52:48 UTC (rev 258026)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kstars/repos/extra-i686/kstars.install (from rev 258025, 
kstars/trunk/kstars.install)
===
--- extra-i686/kstars.install   (rev 0)
+++ extra-i686/kstars.install   2016-01-12 07:52:48 UTC (rev 258026)

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

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

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

Added:
  kmplot/repos/extra-i686/PKGBUILD
(from rev 258024, kmplot/trunk/PKGBUILD)
  kmplot/repos/extra-i686/kmplot.install
(from rev 258024, kmplot/trunk/kmplot.install)
  kmplot/repos/extra-x86_64/PKGBUILD
(from rev 258024, kmplot/trunk/PKGBUILD)
  kmplot/repos/extra-x86_64/kmplot.install
(from rev 258024, kmplot/trunk/kmplot.install)
Deleted:
  kmplot/repos/extra-i686/PKGBUILD
  kmplot/repos/extra-i686/kmplot.install
  kmplot/repos/extra-x86_64/PKGBUILD
  kmplot/repos/extra-x86_64/kmplot.install

-+
 /PKGBUILD   |   72 ++
 /kmplot.install |   24 ++
 extra-i686/PKGBUILD |   36 -
 extra-i686/kmplot.install   |   12 ---
 extra-x86_64/PKGBUILD   |   36 -
 extra-x86_64/kmplot.install |   12 ---
 6 files changed, 96 insertions(+), 96 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:52:08 UTC (rev 258024)
+++ extra-i686/PKGBUILD 2016-01-12 07:52:29 UTC (rev 258025)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kmplot
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Mathematical Function Plotter"
-url="http://kde.org/applications/education/kmplot/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeedu')
-depends=('kdelibs4support' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-install=${pkgname}.install
-replaces=('kdeedu-kmplot')
-conflicts=('kdeedu-kmplot')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kmplot-${pkgver}.tar.xz;)
-sha1sums=('af54e535d20480c1f3722eb427b4a4d03d99d724')
-
-build() {
-  cd "${srcdir}"
-  mkdir -p build
-  cd build
-  cmake ../kmplot-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kmplot/repos/extra-i686/PKGBUILD (from rev 258024, 
kmplot/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:52:29 UTC (rev 258025)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kmplot
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Mathematical Function Plotter"
+url="http://kde.org/applications/education/kmplot/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('kdelibs4support' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+install=${pkgname}.install
+replaces=('kdeedu-kmplot')
+conflicts=('kdeedu-kmplot')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kmplot-${pkgver}.tar.xz;)
+sha1sums=('7abb9399dd8b24104487da980360b089284e2d6e')
+
+build() {
+  cd "${srcdir}"
+  mkdir -p build
+  cd build
+  cmake ../kmplot-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/kmplot.install
===
--- extra-i686/kmplot.install   2016-01-12 07:52:08 UTC (rev 258024)
+++ extra-i686/kmplot.install   2016-01-12 07:52:29 UTC (rev 258025)
@@ -1,12 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kmplot/repos/extra-i686/kmplot.install (from rev 258024, 
kmplot/trunk/kmplot.install)
===
--- extra-i686/kmplot.install   (rev 0)
+++ extra-i686/kmplot.install   2016-01-12 07:52:29 UTC (rev 258025)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:52:08 UTC (rev 258024)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:52:29 UTC (rev 258025)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kmplot
-pkgver=15.12.0

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:53:35
  Author: arojas
Revision: 258027

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

Added:
  kdeedu-ktouch/repos/extra-i686/PKGBUILD
(from rev 258026, kdeedu-ktouch/trunk/PKGBUILD)
  kdeedu-ktouch/repos/extra-i686/kdeedu-ktouch.install
(from rev 258026, kdeedu-ktouch/trunk/kdeedu-ktouch.install)
  kdeedu-ktouch/repos/extra-x86_64/PKGBUILD
(from rev 258026, kdeedu-ktouch/trunk/PKGBUILD)
  kdeedu-ktouch/repos/extra-x86_64/kdeedu-ktouch.install
(from rev 258026, kdeedu-ktouch/trunk/kdeedu-ktouch.install)
Deleted:
  kdeedu-ktouch/repos/extra-i686/PKGBUILD
  kdeedu-ktouch/repos/extra-i686/kdeedu-ktouch.install
  kdeedu-ktouch/repos/extra-x86_64/PKGBUILD
  kdeedu-ktouch/repos/extra-x86_64/kdeedu-ktouch.install

+
 /PKGBUILD  |   70 +++
 /kdeedu-ktouch.install |   22 +++
 extra-i686/PKGBUILD|   35 -
 extra-i686/kdeedu-ktouch.install   |   11 -
 extra-x86_64/PKGBUILD  |   35 -
 extra-x86_64/kdeedu-ktouch.install |   11 -
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:52:48 UTC (rev 258026)
+++ extra-i686/PKGBUILD 2016-01-12 07:53:35 UTC (rev 258027)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdeedu-ktouch
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Touch Typing Tutor"
-url="http://kde.org/applications/education/ktouch/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeedu')
-depends=('kdebase-runtime' 'kqtquickcharts' 'libxkbfile')
-makedepends=('cmake' 'automoc4' 'mesa')
-install=${pkgname}.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/ktouch-${pkgver}.tar.xz;)
-sha1sums=('d22014bb02854bd4311a4d6a04b08c7b9cfdd68b')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../ktouch-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kdeedu-ktouch/repos/extra-i686/PKGBUILD (from rev 258026, 
kdeedu-ktouch/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:53:35 UTC (rev 258027)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeedu-ktouch
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Touch Typing Tutor"
+url="http://kde.org/applications/education/ktouch/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('kdebase-runtime' 'kqtquickcharts' 'libxkbfile')
+makedepends=('cmake' 'automoc4' 'mesa')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/ktouch-${pkgver}.tar.xz;)
+sha1sums=('f436d28647c515fa8e54ae7f32b62390306a5d3e')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../ktouch-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/kdeedu-ktouch.install
===
--- extra-i686/kdeedu-ktouch.install2016-01-12 07:52:48 UTC (rev 258026)
+++ extra-i686/kdeedu-ktouch.install2016-01-12 07:53:35 UTC (rev 258027)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdeedu-ktouch/repos/extra-i686/kdeedu-ktouch.install (from rev 258026, 
kdeedu-ktouch/trunk/kdeedu-ktouch.install)
===
--- extra-i686/kdeedu-ktouch.install(rev 0)
+++ extra-i686/kdeedu-ktouch.install2016-01-12 07:53:35 UTC (rev 258027)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:52:48 UTC (rev 258026)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:53:35 UTC (rev 258027)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdeedu-ktouch
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Touch Typing Tutor"

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:52:08
  Author: arojas
Revision: 258024

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

Added:
  klettres/repos/extra-i686/PKGBUILD
(from rev 258023, klettres/trunk/PKGBUILD)
  klettres/repos/extra-i686/klettres.install
(from rev 258023, klettres/trunk/klettres.install)
  klettres/repos/extra-x86_64/PKGBUILD
(from rev 258023, klettres/trunk/PKGBUILD)
  klettres/repos/extra-x86_64/klettres.install
(from rev 258023, klettres/trunk/klettres.install)
Deleted:
  klettres/repos/extra-i686/PKGBUILD
  klettres/repos/extra-i686/klettres.install
  klettres/repos/extra-x86_64/PKGBUILD
  klettres/repos/extra-x86_64/klettres.install

---+
 /PKGBUILD |   72 
 /klettres.install |   22 
 extra-i686/PKGBUILD   |   36 
 extra-i686/klettres.install   |   11 --
 extra-x86_64/PKGBUILD |   36 
 extra-x86_64/klettres.install |   11 --
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:51:32 UTC (rev 258023)
+++ extra-i686/PKGBUILD 2016-01-12 07:52:08 UTC (rev 258024)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=klettres
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Learn The Alphabet"
-url="http://kde.org/applications/education/klettres/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeedu')
-depends=('knewstuff' 'kemoticons' 'kitemmodels' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-install=${pkgname}.install
-replaces=('kdeedu-klettres')
-conflicts=('kdeedu-klettres')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/klettres-${pkgver}.tar.xz;)
-sha1sums=('b22dcbf1bf6c7de7a46458e76c74e8b755332e9d')
-
-build() {
-  cd "${srcdir}"
-  mkdir -p build
-  cd build
-  cmake ../klettres-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: klettres/repos/extra-i686/PKGBUILD (from rev 258023, 
klettres/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:52:08 UTC (rev 258024)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=klettres
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Learn The Alphabet"
+url="http://kde.org/applications/education/klettres/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('knewstuff' 'kemoticons' 'kitemmodels' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+install=${pkgname}.install
+replaces=('kdeedu-klettres')
+conflicts=('kdeedu-klettres')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/klettres-${pkgver}.tar.xz;)
+sha1sums=('26d0aeae874f7d86ae438a4d56dbfb84f7ee23de')
+
+build() {
+  cd "${srcdir}"
+  mkdir -p build
+  cd build
+  cmake ../klettres-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/klettres.install
===
--- extra-i686/klettres.install 2016-01-12 07:51:32 UTC (rev 258023)
+++ extra-i686/klettres.install 2016-01-12 07:52:08 UTC (rev 258024)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: klettres/repos/extra-i686/klettres.install (from rev 258023, 
klettres/trunk/klettres.install)
===
--- extra-i686/klettres.install (rev 0)
+++ extra-i686/klettres.install 2016-01-12 07:52:08 UTC (rev 258024)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:51:32 UTC (rev 258023)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:52:08 UTC (rev 258024)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:58:50
  Author: arojas
Revision: 258042

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

Added:
  kbounce/repos/extra-i686/PKGBUILD
(from rev 258041, kbounce/trunk/PKGBUILD)
  kbounce/repos/extra-i686/kbounce.install
(from rev 258041, kbounce/trunk/kbounce.install)
  kbounce/repos/extra-x86_64/PKGBUILD
(from rev 258041, kbounce/trunk/PKGBUILD)
  kbounce/repos/extra-x86_64/kbounce.install
(from rev 258041, kbounce/trunk/kbounce.install)
Deleted:
  kbounce/repos/extra-i686/PKGBUILD
  kbounce/repos/extra-i686/kbounce.install
  kbounce/repos/extra-x86_64/PKGBUILD
  kbounce/repos/extra-x86_64/kbounce.install

--+
 /PKGBUILD|   70 +
 /kbounce.install |   22 
 extra-i686/PKGBUILD  |   35 
 extra-i686/kbounce.install   |   11 --
 extra-x86_64/PKGBUILD|   35 
 extra-x86_64/kbounce.install |   11 --
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:58:31 UTC (rev 258041)
+++ extra-i686/PKGBUILD 2016-01-12 07:58:50 UTC (rev 258042)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kbounce
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A single player arcade game with the elements of puzzle"
-url="http://kde.org/applications/games/kbounce/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegames')
-depends=('libkdegames' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-install=${pkgname}.install
-conflicts=('kdegames-kbounce')
-replaces=('kdegames-kbounce')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kbounce-${pkgver}.tar.xz;)
-sha1sums=('288c6ddc09250bab38b5b28b11c5a9f37d85b666')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../kbounce-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kbounce/repos/extra-i686/PKGBUILD (from rev 258041, 
kbounce/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:58:50 UTC (rev 258042)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kbounce
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A single player arcade game with the elements of puzzle"
+url="http://kde.org/applications/games/kbounce/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdegames')
+depends=('libkdegames' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+install=${pkgname}.install
+conflicts=('kdegames-kbounce')
+replaces=('kdegames-kbounce')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kbounce-${pkgver}.tar.xz;)
+sha1sums=('096fb52d4d79e51d856af73c6d3b2c63a6dda73e')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../kbounce-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/kbounce.install
===
--- extra-i686/kbounce.install  2016-01-12 07:58:31 UTC (rev 258041)
+++ extra-i686/kbounce.install  2016-01-12 07:58:50 UTC (rev 258042)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kbounce/repos/extra-i686/kbounce.install (from rev 258041, 
kbounce/trunk/kbounce.install)
===
--- extra-i686/kbounce.install  (rev 0)
+++ extra-i686/kbounce.install  2016-01-12 07:58:50 UTC (rev 258042)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:58:31 UTC (rev 258041)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:58:50 UTC (rev 258042)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kbounce
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A single player 

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:59:10
  Author: arojas
Revision: 258043

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

Added:
  kbreakout/repos/extra-i686/PKGBUILD
(from rev 258042, kbreakout/trunk/PKGBUILD)
  kbreakout/repos/extra-i686/kbreakout.install
(from rev 258042, kbreakout/trunk/kbreakout.install)
  kbreakout/repos/extra-x86_64/PKGBUILD
(from rev 258042, kbreakout/trunk/PKGBUILD)
  kbreakout/repos/extra-x86_64/kbreakout.install
(from rev 258042, kbreakout/trunk/kbreakout.install)
Deleted:
  kbreakout/repos/extra-i686/PKGBUILD
  kbreakout/repos/extra-i686/kbreakout.install
  kbreakout/repos/extra-x86_64/PKGBUILD
  kbreakout/repos/extra-x86_64/kbreakout.install

+
 /PKGBUILD  |   70 +++
 /kbreakout.install |   22 
 extra-i686/PKGBUILD|   35 ---
 extra-i686/kbreakout.install   |   11 --
 extra-x86_64/PKGBUILD  |   35 ---
 extra-x86_64/kbreakout.install |   11 --
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:58:50 UTC (rev 258042)
+++ extra-i686/PKGBUILD 2016-01-12 07:59:10 UTC (rev 258043)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kbreakout
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A Breakout-like game"
-url="http://kde.org/applications/games/kbreakout/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegames')
-depends=('libkdegames' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-install=${pkgname}.install
-conflicts=('kdegames-kbreakout')
-replaces=('kdegames-kbreakout')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kbreakout-${pkgver}.tar.xz;)
-sha1sums=('c151fbc4155a36d358df75341a2aedd832eff3dd')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../kbreakout-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kbreakout/repos/extra-i686/PKGBUILD (from rev 258042, 
kbreakout/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:59:10 UTC (rev 258043)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kbreakout
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A Breakout-like game"
+url="http://kde.org/applications/games/kbreakout/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdegames')
+depends=('libkdegames' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+install=${pkgname}.install
+conflicts=('kdegames-kbreakout')
+replaces=('kdegames-kbreakout')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kbreakout-${pkgver}.tar.xz;)
+sha1sums=('72cfeb388bd91610d6720bf1ea646ad6acb94445')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../kbreakout-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/kbreakout.install
===
--- extra-i686/kbreakout.install2016-01-12 07:58:50 UTC (rev 258042)
+++ extra-i686/kbreakout.install2016-01-12 07:59:10 UTC (rev 258043)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kbreakout/repos/extra-i686/kbreakout.install (from rev 258042, 
kbreakout/trunk/kbreakout.install)
===
--- extra-i686/kbreakout.install(rev 0)
+++ extra-i686/kbreakout.install2016-01-12 07:59:10 UTC (rev 258043)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:58:50 UTC (rev 258042)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:59:10 UTC (rev 258043)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kbreakout

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:58:14
  Author: arojas
Revision: 258040

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

Added:
  kblackbox/repos/extra-i686/PKGBUILD
(from rev 258039, kblackbox/trunk/PKGBUILD)
  kblackbox/repos/extra-i686/kblackbox.install
(from rev 258039, kblackbox/trunk/kblackbox.install)
  kblackbox/repos/extra-x86_64/PKGBUILD
(from rev 258039, kblackbox/trunk/PKGBUILD)
  kblackbox/repos/extra-x86_64/kblackbox.install
(from rev 258039, kblackbox/trunk/kblackbox.install)
Deleted:
  kblackbox/repos/extra-i686/PKGBUILD
  kblackbox/repos/extra-i686/kblackbox.install
  kblackbox/repos/extra-x86_64/PKGBUILD
  kblackbox/repos/extra-x86_64/kblackbox.install

+
 /PKGBUILD  |   70 +++
 /kblackbox.install |   22 
 extra-i686/PKGBUILD|   35 ---
 extra-i686/kblackbox.install   |   11 --
 extra-x86_64/PKGBUILD  |   35 ---
 extra-x86_64/kblackbox.install |   11 --
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:57:54 UTC (rev 258039)
+++ extra-i686/PKGBUILD 2016-01-12 07:58:14 UTC (rev 258040)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kblackbox
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A game of hide and seek played on a grid of boxes"
-url="http://kde.org/applications/games/kblackbox/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegames')
-depends=('libkdegames' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-install=${pkgname}.install
-conflicts=('kdegames-kblackbox')
-replaces=('kdegames-kblackbox')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kblackbox-${pkgver}.tar.xz;)
-sha1sums=('5a533f1848212921ec62aa8b1030ee93bd4abd3d')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../kblackbox-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kblackbox/repos/extra-i686/PKGBUILD (from rev 258039, 
kblackbox/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:58:14 UTC (rev 258040)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kblackbox
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A game of hide and seek played on a grid of boxes"
+url="http://kde.org/applications/games/kblackbox/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdegames')
+depends=('libkdegames' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+install=${pkgname}.install
+conflicts=('kdegames-kblackbox')
+replaces=('kdegames-kblackbox')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kblackbox-${pkgver}.tar.xz;)
+sha1sums=('ddd833a630fb9594b6d0c7c22fe6438d46642463')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../kblackbox-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/kblackbox.install
===
--- extra-i686/kblackbox.install2016-01-12 07:57:54 UTC (rev 258039)
+++ extra-i686/kblackbox.install2016-01-12 07:58:14 UTC (rev 258040)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kblackbox/repos/extra-i686/kblackbox.install (from rev 258039, 
kblackbox/trunk/kblackbox.install)
===
--- extra-i686/kblackbox.install(rev 0)
+++ extra-i686/kblackbox.install2016-01-12 07:58:14 UTC (rev 258040)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:57:54 UTC (rev 258039)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:58:14 UTC (rev 258040)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea 

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:58:31
  Author: arojas
Revision: 258041

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

Added:
  kblocks/repos/extra-i686/PKGBUILD
(from rev 258040, kblocks/trunk/PKGBUILD)
  kblocks/repos/extra-i686/kblocks.install
(from rev 258040, kblocks/trunk/kblocks.install)
  kblocks/repos/extra-x86_64/PKGBUILD
(from rev 258040, kblocks/trunk/PKGBUILD)
  kblocks/repos/extra-x86_64/kblocks.install
(from rev 258040, kblocks/trunk/kblocks.install)
Deleted:
  kblocks/repos/extra-i686/PKGBUILD
  kblocks/repos/extra-i686/kblocks.install
  kblocks/repos/extra-x86_64/PKGBUILD
  kblocks/repos/extra-x86_64/kblocks.install

--+
 /PKGBUILD|   70 +
 /kblocks.install |   22 
 extra-i686/PKGBUILD  |   35 
 extra-i686/kblocks.install   |   11 --
 extra-x86_64/PKGBUILD|   35 
 extra-x86_64/kblocks.install |   11 --
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:58:14 UTC (rev 258040)
+++ extra-i686/PKGBUILD 2016-01-12 07:58:31 UTC (rev 258041)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kblocks
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="The classic falling blocks game"
-url="http://kde.org/applications/games/kblocks/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegames')
-depends=('libkdegames' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-install=${pkgname}.install
-conflicts=('kdegames-kblocks')
-replaces=('kdegames-kblocks')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kblocks-${pkgver}.tar.xz;)
-sha1sums=('169a2af1156bfeecac06eb0a3c2db8250d05ed14')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../kblocks-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kblocks/repos/extra-i686/PKGBUILD (from rev 258040, 
kblocks/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:58:31 UTC (rev 258041)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kblocks
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="The classic falling blocks game"
+url="http://kde.org/applications/games/kblocks/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdegames')
+depends=('libkdegames' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+install=${pkgname}.install
+conflicts=('kdegames-kblocks')
+replaces=('kdegames-kblocks')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kblocks-${pkgver}.tar.xz;)
+sha1sums=('69091df4e93da19238f0c7c7260a264702d0b155')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../kblocks-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/kblocks.install
===
--- extra-i686/kblocks.install  2016-01-12 07:58:14 UTC (rev 258040)
+++ extra-i686/kblocks.install  2016-01-12 07:58:31 UTC (rev 258041)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kblocks/repos/extra-i686/kblocks.install (from rev 258040, 
kblocks/trunk/kblocks.install)
===
--- extra-i686/kblocks.install  (rev 0)
+++ extra-i686/kblocks.install  2016-01-12 07:58:31 UTC (rev 258041)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:58:14 UTC (rev 258040)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:58:31 UTC (rev 258041)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kblocks
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="The classic falling blocks game"

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:38:04
  Author: arojas
Revision: 257982

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

Added:
  kde-syndication/repos/extra-i686/PKGBUILD
(from rev 257981, kde-syndication/trunk/PKGBUILD)
  kde-syndication/repos/extra-x86_64/PKGBUILD
(from rev 257981, kde-syndication/trunk/PKGBUILD)
Deleted:
  kde-syndication/repos/extra-i686/PKGBUILD
  kde-syndication/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:37:44 UTC (rev 257981)
+++ extra-i686/PKGBUILD 2016-01-12 07:38:04 UTC (rev 257982)
@@ -1,34 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-_pkgname=syndication
-pkgname=kde-$_pkgname
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="RSS/Atom parser library"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$_pkgname;
-license=(LGPL)
-depends=(kio)
-makedepends=(extra-cmake-modules python)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$_pkgname-$pkgver.tar.xz;)
-md5sums=('8db9d498f5a48cf742d66bd9ecacb811')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$_pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kde-syndication/repos/extra-i686/PKGBUILD (from rev 257981, 
kde-syndication/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:38:04 UTC (rev 257982)
@@ -0,0 +1,34 @@
+# Maintainer: Antonio Rojas 
+
+_pkgname=syndication
+pkgname=kde-$_pkgname
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="RSS/Atom parser library"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$_pkgname;
+license=(LGPL)
+depends=(kio)
+makedepends=(extra-cmake-modules python)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$_pkgname-$pkgver.tar.xz;)
+md5sums=('5054ce9e76edcbc914bc23e7ffa2548d')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:37:44 UTC (rev 257981)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:38:04 UTC (rev 257982)
@@ -1,34 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-_pkgname=syndication
-pkgname=kde-$_pkgname
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="RSS/Atom parser library"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$_pkgname;
-license=(LGPL)
-depends=(kio)
-makedepends=(extra-cmake-modules python)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$_pkgname-$pkgver.tar.xz;)
-md5sums=('8db9d498f5a48cf742d66bd9ecacb811')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$_pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kde-syndication/repos/extra-x86_64/PKGBUILD (from rev 257981, 
kde-syndication/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:38:04 UTC (rev 257982)
@@ -0,0 +1,34 @@
+# Maintainer: Antonio Rojas 
+
+_pkgname=syndication
+pkgname=kde-$_pkgname
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="RSS/Atom parser library"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$_pkgname;
+license=(LGPL)
+depends=(kio)
+makedepends=(extra-cmake-modules python)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$_pkgname-$pkgver.tar.xz;)
+md5sums=('5054ce9e76edcbc914bc23e7ffa2548d')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

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

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

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

+
 /PKGBUILD  |  242 +++
 /kdebase-konqueror.install |   24 +++
 /kdebase.install   |   22 ++
 extra-i686/PKGBUILD|  121 ---
 extra-i686/kdebase-konqueror.install   |   12 -
 extra-i686/kdebase.install |   11 -
 extra-x86_64/PKGBUILD  |  121 ---
 extra-x86_64/kdebase-konqueror.install |   12 -
 extra-x86_64/kdebase.install   |   11 -
 9 files changed, 288 insertions(+), 288 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:30:21 UTC (rev 257959)
+++ extra-i686/PKGBUILD 2016-01-12 07:30:51 UTC (rev 257960)
@@ -1,121 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgbase=kdebase
-pkgname=('kdebase-kdepasswd'
- 'kdebase-kdialog'
- 'kdebase-keditbookmarks'
- 'kdebase-kfind'
- 'kdebase-konq-plugins'
- 'kdebase-konqueror'
- 'kdebase-lib'
-'dolphinpart4')
-pkgver=15.12.0
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://www.kde.org'
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdebase')
-makedepends=('libkactivities4' 'cmake' 'automoc4' 'tidyhtml')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kde-baseapps-${pkgver}.tar.xz;)
-sha1sums=('4b111c8ab4982edb661674ec1045b83537997642')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kde-baseapps-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package_kdebase-kdepasswd() {
-  pkgdesc='Change Password'
-  depends=('kdebase-runtime' 'kdebase-lib')
-
-  cd "$srcdir"/build/kdepasswd
-  make DESTDIR="$pkgdir" install
-  cd "$srcdir"/build/doc/kdepasswd
-  make DESTDIR="$pkgdir" install
-}
-
-package_kdebase-kdialog() {
-  pkgdesc='A utility for displaying dialog boxes from shell scripts'
-  depends=('kdebase-runtime')
-
-  cd "$srcdir"/build/kdialog
-  make DESTDIR="$pkgdir" install
-}
-
-package_kdebase-keditbookmarks() {
-  pkgdesc='Bookmark Organizer and Editor'
-  depends=('kdebase-runtime')
-
-  cd "$srcdir"/build/keditbookmarks
-  make DESTDIR="$pkgdir" install
-}
-
-package_kdebase-kfind() {
-  pkgdesc='Find Files/Folders'
-  depends=('kdebase-runtime' 'kdebase-lib')
-  url="http://kde.org/applications/utilities/kfind/;
-  install='kdebase.install'
-
-  cd "$srcdir"/build/kfind
-  make DESTDIR="$pkgdir" install
-  cd "$srcdir"/build/doc/kfind
-  make DESTDIR="$pkgdir" install
-}
-
-package_kdebase-konq-plugins() {
-  pkgdesc='Extra plugins for Konqueror'
-  depends=('kdebase-konqueror' 'tidyhtml')
-  replaces=('konq-plugins')
-  install='kdebase.install'
-
-  cd "$srcdir"/build/konq-plugins
-  make DESTDIR="$pkgdir" install
-}
-
-package_kdebase-konqueror() {
-  pkgdesc='KDE File Manager & Web Browser'
-  depends=('dolphinpart4' 'kdebase-keditbookmarks')
-  optdepends=('kwebkitpart: to enable webkit engine')
-  url="http://kde.org/applications/internet/konqueror/;
-  install='kdebase-konqueror.install'
-  conflicts=('kdebase-nsplugins')
-  replaces=('kdebase-nsplugins')
-
-  for i in konqueror doc/konqueror nsplugins; do
-cd "$srcdir"/build/${i}
-make DESTDIR="$pkgdir" install
-  done
-}
-
-package_kdebase-lib() {
-  pkgdesc='KDE libraries for the basic desktop applications'
-  groups=()
-  depends=('kdelibs')
-  conflicts=('kde-templates')
-
-  cd "$srcdir"/build/lib
-  make DESTDIR="$pkgdir" install
-}
-
-package_dolphinpart4() {
-  pkgdesc='KDE4 Dolphin KPart'
-  depends=('libkactivities4' 'kdebase-lib')
-  conflicts=('kdebase-dolphin')
-  provides=('kdebase-dolphin')
-  groups=()
-
-  cd "$srcdir"/build/dolphin
-  

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:31:31
  Author: arojas
Revision: 257962

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

Added:
  libkexiv2/repos/extra-i686/PKGBUILD
(from rev 257961, libkexiv2/trunk/PKGBUILD)
  libkexiv2/repos/extra-x86_64/PKGBUILD
(from rev 257961, libkexiv2/trunk/PKGBUILD)
Deleted:
  libkexiv2/repos/extra-i686/PKGBUILD
  libkexiv2/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:31:10 UTC (rev 257961)
+++ extra-i686/PKGBUILD 2016-01-12 07:31:31 UTC (rev 257962)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkexiv2
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A library to manipulate pictures metadata"
-url="https://projects.kde.org/projects/kde/kdegraphics/libs/libkexiv2;
-arch=(i686 x86_64)
-license=(GPL LGPL FDL)
-depends=(qt5-base exiv2)
-makedepends=(extra-cmake-modules)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-sha1sums=('4c068f67a099a2f82bd438097455aab7c965202f')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: libkexiv2/repos/extra-i686/PKGBUILD (from rev 257961, 
libkexiv2/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:31:31 UTC (rev 257962)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkexiv2
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A library to manipulate pictures metadata"
+url="https://projects.kde.org/projects/kde/kdegraphics/libs/libkexiv2;
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+depends=(qt5-base exiv2)
+makedepends=(extra-cmake-modules)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('c51c9d358640a469bca8a64f7122974617c7348f')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:31:10 UTC (rev 257961)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:31:31 UTC (rev 257962)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkexiv2
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A library to manipulate pictures metadata"
-url="https://projects.kde.org/projects/kde/kdegraphics/libs/libkexiv2;
-arch=(i686 x86_64)
-license=(GPL LGPL FDL)
-depends=(qt5-base exiv2)
-makedepends=(extra-cmake-modules)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-sha1sums=('4c068f67a099a2f82bd438097455aab7c965202f')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: libkexiv2/repos/extra-x86_64/PKGBUILD (from rev 257961, 
libkexiv2/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:31:31 UTC (rev 257962)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkexiv2
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A library to manipulate pictures metadata"
+url="https://projects.kde.org/projects/kde/kdegraphics/libs/libkexiv2;
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+depends=(qt5-base exiv2)
+makedepends=(extra-cmake-modules)

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:35:30
  Author: arojas
Revision: 257974

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

Added:
  baloo-widgets/repos/extra-i686/PKGBUILD
(from rev 257973, baloo-widgets/trunk/PKGBUILD)
  baloo-widgets/repos/extra-x86_64/PKGBUILD
(from rev 257973, baloo-widgets/trunk/PKGBUILD)
Deleted:
  baloo-widgets/repos/extra-i686/PKGBUILD
  baloo-widgets/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:35:11 UTC (rev 257973)
+++ extra-i686/PKGBUILD 2016-01-12 07:35:30 UTC (rev 257974)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=baloo-widgets
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Widgets for Baloo"
-arch=(i686 x86_64)
-url='https://projects.kde.org/baloo-widgets'
-license=(LGPL)
-depends=(baloo)
-makedepends=(extra-cmake-modules kdoctools)
-replaces=(baloo4-widgets)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('2ffa70cbc5259a2f502c6853fb45e240')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}
-

Copied: baloo-widgets/repos/extra-i686/PKGBUILD (from rev 257973, 
baloo-widgets/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:35:30 UTC (rev 257974)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=baloo-widgets
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Widgets for Baloo"
+arch=(i686 x86_64)
+url='https://projects.kde.org/baloo-widgets'
+license=(LGPL)
+depends=(baloo)
+makedepends=(extra-cmake-modules kdoctools)
+replaces=(baloo4-widgets)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('ec0b16e39c2f977790173197eec6f177')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:35:11 UTC (rev 257973)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:35:30 UTC (rev 257974)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=baloo-widgets
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Widgets for Baloo"
-arch=(i686 x86_64)
-url='https://projects.kde.org/baloo-widgets'
-license=(LGPL)
-depends=(baloo)
-makedepends=(extra-cmake-modules kdoctools)
-replaces=(baloo4-widgets)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('2ffa70cbc5259a2f502c6853fb45e240')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}
-

Copied: baloo-widgets/repos/extra-x86_64/PKGBUILD (from rev 257973, 
baloo-widgets/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:35:30 UTC (rev 257974)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=baloo-widgets
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Widgets for Baloo"
+arch=(i686 x86_64)
+url='https://projects.kde.org/baloo-widgets'
+license=(LGPL)
+depends=(baloo)
+makedepends=(extra-cmake-modules kdoctools)
+replaces=(baloo4-widgets)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('ec0b16e39c2f977790173197eec6f177')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+


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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:35:49
  Author: arojas
Revision: 257975

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

Added:
  kcontacts/repos/extra-i686/PKGBUILD
(from rev 257974, kcontacts/trunk/PKGBUILD)
  kcontacts/repos/extra-x86_64/PKGBUILD
(from rev 257974, kcontacts/trunk/PKGBUILD)
Deleted:
  kcontacts/repos/extra-i686/PKGBUILD
  kcontacts/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:35:30 UTC (rev 257974)
+++ extra-i686/PKGBUILD 2016-01-12 07:35:49 UTC (rev 257975)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kcontacts
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Address book API for KDE"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(kcoreaddons kconfig ki18n kcodecs)
-makedepends=(extra-cmake-modules python)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('a11b4d14b48cbee9a9b1fd1c45cf898b')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kcontacts/repos/extra-i686/PKGBUILD (from rev 257974, 
kcontacts/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:35:49 UTC (rev 257975)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kcontacts
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Address book API for KDE"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(kcoreaddons kconfig ki18n kcodecs)
+makedepends=(extra-cmake-modules python)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('0de32c3ca49a231e685af599bbe888e6')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:35:30 UTC (rev 257974)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:35:49 UTC (rev 257975)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kcontacts
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Address book API for KDE"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(kcoreaddons kconfig ki18n kcodecs)
-makedepends=(extra-cmake-modules python)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('a11b4d14b48cbee9a9b1fd1c45cf898b')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kcontacts/repos/extra-x86_64/PKGBUILD (from rev 257974, 
kcontacts/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:35:49 UTC (rev 257975)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kcontacts
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Address book API for KDE"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(kcoreaddons kconfig ki18n kcodecs)
+makedepends=(extra-cmake-modules python)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('0de32c3ca49a231e685af599bbe888e6')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:38:23
  Author: arojas
Revision: 257983

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

Added:
  kblog/repos/extra-i686/PKGBUILD
(from rev 257982, kblog/trunk/PKGBUILD)
  kblog/repos/extra-x86_64/PKGBUILD
(from rev 257982, kblog/trunk/PKGBUILD)
Deleted:
  kblog/repos/extra-i686/PKGBUILD
  kblog/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:38:04 UTC (rev 257982)
+++ extra-i686/PKGBUILD 2016-01-12 07:38:23 UTC (rev 257983)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kblog
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A blogging library for KDE"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(kxmlrpcclient kde-syndication kcalcore)
-makedepends=(extra-cmake-modules python kdoctools)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('be1e0e244ff1a1a12122ebf9e34d451d')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kblog/repos/extra-i686/PKGBUILD (from rev 257982, kblog/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:38:23 UTC (rev 257983)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kblog
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A blogging library for KDE"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(kxmlrpcclient kde-syndication kcalcore)
+makedepends=(extra-cmake-modules python kdoctools)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('271be1c42e53269fdc30e8e352ff918d')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:38:04 UTC (rev 257982)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:38:23 UTC (rev 257983)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kblog
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A blogging library for KDE"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(kxmlrpcclient kde-syndication kcalcore)
-makedepends=(extra-cmake-modules python kdoctools)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('be1e0e244ff1a1a12122ebf9e34d451d')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kblog/repos/extra-x86_64/PKGBUILD (from rev 257982, 
kblog/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:38:23 UTC (rev 257983)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kblog
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A blogging library for KDE"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(kxmlrpcclient kde-syndication kcalcore)
+makedepends=(extra-cmake-modules python kdoctools)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('271be1c42e53269fdc30e8e352ff918d')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:39:21
  Author: arojas
Revision: 257986

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

Added:
  kldap/repos/extra-i686/PKGBUILD
(from rev 257985, kldap/trunk/PKGBUILD)
  kldap/repos/extra-x86_64/PKGBUILD
(from rev 257985, kldap/trunk/PKGBUILD)
Deleted:
  kldap/repos/extra-i686/PKGBUILD
  kldap/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:39:02 UTC (rev 257985)
+++ extra-i686/PKGBUILD 2016-01-12 07:39:21 UTC (rev 257986)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kldap
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="LDAP access API for KDE"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(kcompletion ki18n)
-makedepends=(extra-cmake-modules python)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('95390b5d6cc15cc292b2f592ad4a9cf4')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kldap/repos/extra-i686/PKGBUILD (from rev 257985, kldap/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:39:21 UTC (rev 257986)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kldap
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="LDAP access API for KDE"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(kcompletion ki18n)
+makedepends=(extra-cmake-modules python)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('f11694160616b2df8b3a4af9906e2bf9')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:39:02 UTC (rev 257985)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:39:21 UTC (rev 257986)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kldap
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="LDAP access API for KDE"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(kcompletion ki18n)
-makedepends=(extra-cmake-modules python)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('95390b5d6cc15cc292b2f592ad4a9cf4')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kldap/repos/extra-x86_64/PKGBUILD (from rev 257985, 
kldap/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:39:21 UTC (rev 257986)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kldap
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="LDAP access API for KDE"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(kcompletion ki18n)
+makedepends=(extra-cmake-modules python)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('f11694160616b2df8b3a4af9906e2bf9')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:39:39
  Author: arojas
Revision: 257987

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

Added:
  kmbox/repos/extra-i686/PKGBUILD
(from rev 257986, kmbox/trunk/PKGBUILD)
  kmbox/repos/extra-x86_64/PKGBUILD
(from rev 257986, kmbox/trunk/PKGBUILD)
Deleted:
  kmbox/repos/extra-i686/PKGBUILD
  kmbox/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:39:21 UTC (rev 257986)
+++ extra-i686/PKGBUILD 2016-01-12 07:39:39 UTC (rev 257987)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kmbox
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Library for accessing mail storages in MBox format"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(kmime)
-makedepends=(extra-cmake-modules python kdoctools)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('0452ede915ac964ecdab646db2264055')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kmbox/repos/extra-i686/PKGBUILD (from rev 257986, kmbox/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:39:39 UTC (rev 257987)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kmbox
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Library for accessing mail storages in MBox format"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(kmime)
+makedepends=(extra-cmake-modules python kdoctools)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('4718fd260f49428624ccb5527ac485d5')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:39:21 UTC (rev 257986)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:39:39 UTC (rev 257987)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kmbox
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Library for accessing mail storages in MBox format"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(kmime)
-makedepends=(extra-cmake-modules python kdoctools)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('0452ede915ac964ecdab646db2264055')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kmbox/repos/extra-x86_64/PKGBUILD (from rev 257986, 
kmbox/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:39:39 UTC (rev 257987)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kmbox
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Library for accessing mail storages in MBox format"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(kmime)
+makedepends=(extra-cmake-modules python kdoctools)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('4718fd260f49428624ccb5527ac485d5')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:39:02
  Author: arojas
Revision: 257985

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

Added:
  kimap/repos/extra-i686/PKGBUILD
(from rev 257984, kimap/trunk/PKGBUILD)
  kimap/repos/extra-x86_64/PKGBUILD
(from rev 257984, kimap/trunk/PKGBUILD)
Deleted:
  kimap/repos/extra-i686/PKGBUILD
  kimap/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:38:42 UTC (rev 257984)
+++ extra-i686/PKGBUILD 2016-01-12 07:39:02 UTC (rev 257985)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kimap
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Job-based API for interacting with IMAP servers"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(kmime kio)
-makedepends=(extra-cmake-modules python kdoctools)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('dc830fec3681d85ac2c7ed30ce5c4188')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kimap/repos/extra-i686/PKGBUILD (from rev 257984, kimap/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:39:02 UTC (rev 257985)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kimap
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Job-based API for interacting with IMAP servers"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(kmime kio)
+makedepends=(extra-cmake-modules python kdoctools)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('446a641d8dc1ea7565a2afd006e97c82')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:38:42 UTC (rev 257984)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:39:02 UTC (rev 257985)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kimap
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Job-based API for interacting with IMAP servers"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(kmime kio)
-makedepends=(extra-cmake-modules python kdoctools)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('dc830fec3681d85ac2c7ed30ce5c4188')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kimap/repos/extra-x86_64/PKGBUILD (from rev 257984, 
kimap/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:39:02 UTC (rev 257985)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kimap
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Job-based API for interacting with IMAP servers"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(kmime kio)
+makedepends=(extra-cmake-modules python kdoctools)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('446a641d8dc1ea7565a2afd006e97c82')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:40:17
  Author: arojas
Revision: 257989

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

Added:
  libktnef/repos/extra-i686/PKGBUILD
(from rev 257988, libktnef/trunk/PKGBUILD)
  libktnef/repos/extra-x86_64/PKGBUILD
(from rev 257988, libktnef/trunk/PKGBUILD)
Deleted:
  libktnef/repos/extra-i686/PKGBUILD
  libktnef/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:39:57 UTC (rev 257988)
+++ extra-i686/PKGBUILD 2016-01-12 07:40:17 UTC (rev 257989)
@@ -1,34 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-_pkgname=ktnef
-pkgname=lib$_pkgname
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="API for handling TNEF data"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(kcalutils kcontacts)
-makedepends=(extra-cmake-modules python kdoctools)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$_pkgname-$pkgver.tar.xz;)
-md5sums=('ab886ae7467c9ac79e468f631f4b4d31')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$_pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: libktnef/repos/extra-i686/PKGBUILD (from rev 257988, 
libktnef/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:40:17 UTC (rev 257989)
@@ -0,0 +1,34 @@
+# Maintainer: Antonio Rojas 
+
+_pkgname=ktnef
+pkgname=lib$_pkgname
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="API for handling TNEF data"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(kcalutils kcontacts)
+makedepends=(extra-cmake-modules python kdoctools)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$_pkgname-$pkgver.tar.xz;)
+md5sums=('6cc0770e286e95e5f6951c0c5c28')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:39:57 UTC (rev 257988)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:40:17 UTC (rev 257989)
@@ -1,34 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-_pkgname=ktnef
-pkgname=lib$_pkgname
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="API for handling TNEF data"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(kcalutils kcontacts)
-makedepends=(extra-cmake-modules python kdoctools)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$_pkgname-$pkgver.tar.xz;)
-md5sums=('ab886ae7467c9ac79e468f631f4b4d31')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$_pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: libktnef/repos/extra-x86_64/PKGBUILD (from rev 257988, 
libktnef/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:40:17 UTC (rev 257989)
@@ -0,0 +1,34 @@
+# Maintainer: Antonio Rojas 
+
+_pkgname=ktnef
+pkgname=lib$_pkgname
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="API for handling TNEF data"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(kcalutils kcontacts)
+makedepends=(extra-cmake-modules python kdoctools)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$_pkgname-$pkgver.tar.xz;)
+md5sums=('6cc0770e286e95e5f6951c0c5c28')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:56:23
  Author: arojas
Revision: 258034

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

Added:
  bomber/repos/extra-i686/PKGBUILD
(from rev 258033, bomber/trunk/PKGBUILD)
  bomber/repos/extra-i686/bomber.install
(from rev 258033, bomber/trunk/bomber.install)
  bomber/repos/extra-x86_64/PKGBUILD
(from rev 258033, bomber/trunk/PKGBUILD)
  bomber/repos/extra-x86_64/bomber.install
(from rev 258033, bomber/trunk/bomber.install)
Deleted:
  bomber/repos/extra-i686/PKGBUILD
  bomber/repos/extra-i686/bomber.install
  bomber/repos/extra-x86_64/PKGBUILD
  bomber/repos/extra-x86_64/bomber.install

-+
 /PKGBUILD   |   70 ++
 /bomber.install |   22 +
 extra-i686/PKGBUILD |   35 -
 extra-i686/bomber.install   |   11 --
 extra-x86_64/PKGBUILD   |   35 -
 extra-x86_64/bomber.install |   11 --
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:56:05 UTC (rev 258033)
+++ extra-i686/PKGBUILD 2016-01-12 07:56:23 UTC (rev 258034)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=bomber
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A single player arcade game"
-url="http://kde.org/applications/games/bomber/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegames')
-depends=('libkdegames' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-install=${pkgname}.install
-conflicts=('kdegames-bomber')
-replaces=('kdegames-bomber')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/bomber-${pkgver}.tar.xz;)
-sha1sums=('69b8fa3bc16714b2469998109258d20014990762')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../bomber-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: bomber/repos/extra-i686/PKGBUILD (from rev 258033, 
bomber/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:56:23 UTC (rev 258034)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=bomber
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A single player arcade game"
+url="http://kde.org/applications/games/bomber/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdegames')
+depends=('libkdegames' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+install=${pkgname}.install
+conflicts=('kdegames-bomber')
+replaces=('kdegames-bomber')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/bomber-${pkgver}.tar.xz;)
+sha1sums=('ee7d5bce839864d7665a174fcc30153519eaff53')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../bomber-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/bomber.install
===
--- extra-i686/bomber.install   2016-01-12 07:56:05 UTC (rev 258033)
+++ extra-i686/bomber.install   2016-01-12 07:56:23 UTC (rev 258034)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: bomber/repos/extra-i686/bomber.install (from rev 258033, 
bomber/trunk/bomber.install)
===
--- extra-i686/bomber.install   (rev 0)
+++ extra-i686/bomber.install   2016-01-12 07:56:23 UTC (rev 258034)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:56:05 UTC (rev 258033)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:56:23 UTC (rev 258034)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=bomber
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A single player arcade game"
-url="http://kde.org/applications/games/bomber/;
-arch=('i686' 'x86_64')
-license=('GPL' 

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:56:41
  Author: arojas
Revision: 258035

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

Added:
  bovo/repos/extra-i686/PKGBUILD
(from rev 258034, bovo/trunk/PKGBUILD)
  bovo/repos/extra-i686/bovo.install
(from rev 258034, bovo/trunk/bovo.install)
  bovo/repos/extra-x86_64/PKGBUILD
(from rev 258034, bovo/trunk/PKGBUILD)
  bovo/repos/extra-x86_64/bovo.install
(from rev 258034, bovo/trunk/bovo.install)
Deleted:
  bovo/repos/extra-i686/PKGBUILD
  bovo/repos/extra-i686/bovo.install
  bovo/repos/extra-x86_64/PKGBUILD
  bovo/repos/extra-x86_64/bovo.install

---+
 /PKGBUILD |   70 
 /bovo.install |   22 +
 extra-i686/PKGBUILD   |   35 --
 extra-i686/bovo.install   |   11 --
 extra-x86_64/PKGBUILD |   35 --
 extra-x86_64/bovo.install |   11 --
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:56:23 UTC (rev 258034)
+++ extra-i686/PKGBUILD 2016-01-12 07:56:41 UTC (rev 258035)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=bovo
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A Gomoku like game for two players"
-url="http://kde.org/applications/games/bovo/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegames')
-depends=('libkdegames' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-install=${pkgname}.install
-conflicts=('kdegames-bovo')
-replaces=('kdegames-bovo')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/bovo-${pkgver}.tar.xz;)
-sha1sums=('1b802cc48ce8fe3be92e0d947b5d35c08e12d4d7')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../bovo-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: bovo/repos/extra-i686/PKGBUILD (from rev 258034, bovo/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:56:41 UTC (rev 258035)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=bovo
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A Gomoku like game for two players"
+url="http://kde.org/applications/games/bovo/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdegames')
+depends=('libkdegames' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+install=${pkgname}.install
+conflicts=('kdegames-bovo')
+replaces=('kdegames-bovo')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/bovo-${pkgver}.tar.xz;)
+sha1sums=('2bf199c7a2eee7230578eeb1bb854aabe06cd535')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../bovo-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/bovo.install
===
--- extra-i686/bovo.install 2016-01-12 07:56:23 UTC (rev 258034)
+++ extra-i686/bovo.install 2016-01-12 07:56:41 UTC (rev 258035)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: bovo/repos/extra-i686/bovo.install (from rev 258034, 
bovo/trunk/bovo.install)
===
--- extra-i686/bovo.install (rev 0)
+++ extra-i686/bovo.install 2016-01-12 07:56:41 UTC (rev 258035)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:56:23 UTC (rev 258034)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:56:41 UTC (rev 258035)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=bovo
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A Gomoku like game for two players"
-url="http://kde.org/applications/games/bovo/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegames')

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:57:34
  Author: arojas
Revision: 258038

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

Added:
  kapman/repos/extra-i686/PKGBUILD
(from rev 258037, kapman/trunk/PKGBUILD)
  kapman/repos/extra-i686/kapman.install
(from rev 258037, kapman/trunk/kapman.install)
  kapman/repos/extra-x86_64/PKGBUILD
(from rev 258037, kapman/trunk/PKGBUILD)
  kapman/repos/extra-x86_64/kapman.install
(from rev 258037, kapman/trunk/kapman.install)
Deleted:
  kapman/repos/extra-i686/PKGBUILD
  kapman/repos/extra-i686/kapman.install
  kapman/repos/extra-x86_64/PKGBUILD
  kapman/repos/extra-x86_64/kapman.install

-+
 /PKGBUILD   |   70 ++
 /kapman.install |   22 +
 extra-i686/PKGBUILD |   35 -
 extra-i686/kapman.install   |   11 --
 extra-x86_64/PKGBUILD   |   35 -
 extra-x86_64/kapman.install |   11 --
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:57:14 UTC (rev 258037)
+++ extra-i686/PKGBUILD 2016-01-12 07:57:34 UTC (rev 258038)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kapman
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A clone of the well known game Pac-Man"
-url="http://kde.org/applications/games/kapman/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegames')
-depends=('libkdegames' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-install=${pkgname}.install
-conflicts=('kdegames-kapman')
-replaces=('kdegames-kapman')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kapman-${pkgver}.tar.xz;)
-sha1sums=('afccded5b891d80801c14e3e6faedaf4c98dd44b')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../kapman-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kapman/repos/extra-i686/PKGBUILD (from rev 258037, 
kapman/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:57:34 UTC (rev 258038)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kapman
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A clone of the well known game Pac-Man"
+url="http://kde.org/applications/games/kapman/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdegames')
+depends=('libkdegames' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+install=${pkgname}.install
+conflicts=('kdegames-kapman')
+replaces=('kdegames-kapman')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kapman-${pkgver}.tar.xz;)
+sha1sums=('a27640a1340b0503b3bd57d617eee4f42f9496f0')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../kapman-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/kapman.install
===
--- extra-i686/kapman.install   2016-01-12 07:57:14 UTC (rev 258037)
+++ extra-i686/kapman.install   2016-01-12 07:57:34 UTC (rev 258038)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kapman/repos/extra-i686/kapman.install (from rev 258037, 
kapman/trunk/kapman.install)
===
--- extra-i686/kapman.install   (rev 0)
+++ extra-i686/kapman.install   2016-01-12 07:57:34 UTC (rev 258038)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:57:14 UTC (rev 258037)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:57:34 UTC (rev 258038)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kapman
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A clone of the well known game Pac-Man"
-url="http://kde.org/applications/games/kapman/;

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:57:54
  Author: arojas
Revision: 258039

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

Added:
  katomic/repos/extra-i686/PKGBUILD
(from rev 258038, katomic/trunk/PKGBUILD)
  katomic/repos/extra-i686/katomic.install
(from rev 258038, katomic/trunk/katomic.install)
  katomic/repos/extra-x86_64/PKGBUILD
(from rev 258038, katomic/trunk/PKGBUILD)
  katomic/repos/extra-x86_64/katomic.install
(from rev 258038, katomic/trunk/katomic.install)
Deleted:
  katomic/repos/extra-i686/PKGBUILD
  katomic/repos/extra-i686/katomic.install
  katomic/repos/extra-x86_64/PKGBUILD
  katomic/repos/extra-x86_64/katomic.install

--+
 /PKGBUILD|   70 +
 /katomic.install |   22 
 extra-i686/PKGBUILD  |   35 
 extra-i686/katomic.install   |   11 --
 extra-x86_64/PKGBUILD|   35 
 extra-x86_64/katomic.install |   11 --
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:57:34 UTC (rev 258038)
+++ extra-i686/PKGBUILD 2016-01-12 07:57:54 UTC (rev 258039)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=katomic
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A fun and educational game built around molecular geometry"
-url="http://kde.org/applications/games/katomic/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegames')
-depends=('libkdegames' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-install=${pkgname}.install
-conflicts=('kdegames-katomic')
-replaces=('kdegames-katomic')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/katomic-${pkgver}.tar.xz;)
-sha1sums=('abb7b462ee2f0db50ab3ae1f5f134e0ab64987c0')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../katomic-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: katomic/repos/extra-i686/PKGBUILD (from rev 258038, 
katomic/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:57:54 UTC (rev 258039)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=katomic
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A fun and educational game built around molecular geometry"
+url="http://kde.org/applications/games/katomic/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdegames')
+depends=('libkdegames' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+install=${pkgname}.install
+conflicts=('kdegames-katomic')
+replaces=('kdegames-katomic')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/katomic-${pkgver}.tar.xz;)
+sha1sums=('50487d19712b874558ba265fe438dc11f9e7e810')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../katomic-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/katomic.install
===
--- extra-i686/katomic.install  2016-01-12 07:57:34 UTC (rev 258038)
+++ extra-i686/katomic.install  2016-01-12 07:57:54 UTC (rev 258039)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: katomic/repos/extra-i686/katomic.install (from rev 258038, 
katomic/trunk/katomic.install)
===
--- extra-i686/katomic.install  (rev 0)
+++ extra-i686/katomic.install  2016-01-12 07:57:54 UTC (rev 258039)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:57:34 UTC (rev 258038)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:57:54 UTC (rev 258039)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=katomic
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A fun and 

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:56:05
  Author: arojas
Revision: 258033

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

Added:
  step/repos/extra-i686/PKGBUILD
(from rev 258032, step/trunk/PKGBUILD)
  step/repos/extra-i686/step.install
(from rev 258032, step/trunk/step.install)
  step/repos/extra-x86_64/PKGBUILD
(from rev 258032, step/trunk/PKGBUILD)
  step/repos/extra-x86_64/step.install
(from rev 258032, step/trunk/step.install)
Deleted:
  step/repos/extra-i686/PKGBUILD
  step/repos/extra-i686/step.install
  step/repos/extra-x86_64/PKGBUILD
  step/repos/extra-x86_64/step.install

---+
 /PKGBUILD |   70 
 /step.install |   22 +
 extra-i686/PKGBUILD   |   35 --
 extra-i686/step.install   |   11 --
 extra-x86_64/PKGBUILD |   35 --
 extra-x86_64/step.install |   11 --
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:55:47 UTC (rev 258032)
+++ extra-i686/PKGBUILD 2016-01-12 07:56:05 UTC (rev 258033)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=step
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Interactive Physical Simulator"
-url="http://kde.org/applications/education/step/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeedu')
-depends=('libqalculate' 'gsl' 'knewstuff' 'khtml' 'kdelibs4support' 
'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools' 'eigen' 'mesa')
-install=${pkgname}.install
-conflicts=('kdeedu-step')
-replaces=('kdeedu-step')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/step-${pkgver}.tar.xz;)
-sha1sums=('9eb65156cfd2ca8bcc7e228b0112acf4083bd1b4')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../step-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: step/repos/extra-i686/PKGBUILD (from rev 258032, step/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:56:05 UTC (rev 258033)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=step
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Interactive Physical Simulator"
+url="http://kde.org/applications/education/step/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('libqalculate' 'gsl' 'knewstuff' 'khtml' 'kdelibs4support' 
'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools' 'eigen' 'mesa')
+install=${pkgname}.install
+conflicts=('kdeedu-step')
+replaces=('kdeedu-step')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/step-${pkgver}.tar.xz;)
+sha1sums=('d0d89559eae814e75eb4631a0c1c78bd65dde11d')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../step-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/step.install
===
--- extra-i686/step.install 2016-01-12 07:55:47 UTC (rev 258032)
+++ extra-i686/step.install 2016-01-12 07:56:05 UTC (rev 258033)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: step/repos/extra-i686/step.install (from rev 258032, 
step/trunk/step.install)
===
--- extra-i686/step.install (rev 0)
+++ extra-i686/step.install 2016-01-12 07:56:05 UTC (rev 258033)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:55:47 UTC (rev 258032)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:56:05 UTC (rev 258033)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=step
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Interactive Physical Simulator"

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

2016-01-11 Thread Felix Yan
Date: Tuesday, January 12, 2016 @ 08:56:55
  Author: fyan
Revision: 156058

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

Added:
  haskell-either/repos/community-i686/
  haskell-either/repos/community-i686/PKGBUILD
(from rev 156057, haskell-either/trunk/PKGBUILD)
  haskell-either/repos/community-i686/haskell-either.install
(from rev 156057, haskell-either/trunk/haskell-either.install)
  haskell-either/repos/community-x86_64/
  haskell-either/repos/community-x86_64/PKGBUILD
(from rev 156057, haskell-either/trunk/PKGBUILD)
  haskell-either/repos/community-x86_64/haskell-either.install
(from rev 156057, haskell-either/trunk/haskell-either.install)

-+
 community-i686/PKGBUILD |   45 ++
 community-i686/haskell-either.install   |   18 
 community-x86_64/PKGBUILD   |   45 ++
 community-x86_64/haskell-either.install |   18 
 4 files changed, 126 insertions(+)

Copied: haskell-either/repos/community-i686/PKGBUILD (from rev 156057, 
haskell-either/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-12 07:56:55 UTC (rev 156058)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=either
+pkgname=haskell-either
+pkgver=4.4.1
+pkgrel=1
+pkgdesc="An either monad transformer"
+url="http://github.com/ekmett/either/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-bifunctors" "haskell-exceptions" "haskell-free"
+ "haskell-mmorph" "haskell-monad-control" "haskell-monadrandom"
+ "haskell-mtl" "haskell-profunctors" "haskell-semigroupoids"
+ "haskell-semigroups" "haskell-transformers-base")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('91e57debc09bcaa7d4b884902ea6d3201ca3fec77625a059edd84bcaeb5909cb')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-either/repos/community-i686/haskell-either.install (from rev 
156057, haskell-either/trunk/haskell-either.install)
===
--- community-i686/haskell-either.install   (rev 0)
+++ community-i686/haskell-either.install   2016-01-12 07:56:55 UTC (rev 
156058)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-either
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-either/repos/community-x86_64/PKGBUILD (from rev 156057, 
haskell-either/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-01-12 07:56:55 UTC (rev 156058)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=either
+pkgname=haskell-either
+pkgver=4.4.1
+pkgrel=1
+pkgdesc="An either monad transformer"
+url="http://github.com/ekmett/either/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-bifunctors" "haskell-exceptions" "haskell-free"
+ "haskell-mmorph" "haskell-monad-control" "haskell-monadrandom"
+ "haskell-mtl" "haskell-profunctors" "haskell-semigroupoids"
+   

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:56:59
  Author: arojas
Revision: 258036

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

Added:
  granatier/repos/extra-i686/PKGBUILD
(from rev 258035, granatier/trunk/PKGBUILD)
  granatier/repos/extra-i686/granatier.install
(from rev 258035, granatier/trunk/granatier.install)
  granatier/repos/extra-x86_64/PKGBUILD
(from rev 258035, granatier/trunk/PKGBUILD)
  granatier/repos/extra-x86_64/granatier.install
(from rev 258035, granatier/trunk/granatier.install)
Deleted:
  granatier/repos/extra-i686/PKGBUILD
  granatier/repos/extra-i686/granatier.install
  granatier/repos/extra-x86_64/PKGBUILD
  granatier/repos/extra-x86_64/granatier.install

+
 /PKGBUILD  |   70 +++
 /granatier.install |   22 
 extra-i686/PKGBUILD|   35 ---
 extra-i686/granatier.install   |   11 --
 extra-x86_64/PKGBUILD  |   35 ---
 extra-x86_64/granatier.install |   11 --
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:56:41 UTC (rev 258035)
+++ extra-i686/PKGBUILD 2016-01-12 07:56:59 UTC (rev 258036)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=granatier
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A clone of the classic Bomberman game"
-url="http://kde.org/applications/games/granatier/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegames')
-depends=('libkdegames' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-install=${pkgname}.install
-conflicts=('kdegames-granatier')
-replaces=('kdegames-granatier')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/granatier-${pkgver}.tar.xz;)
-sha1sums=('a82622777934636dba6cdb1b687faa19eaab81e9')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../granatier-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: granatier/repos/extra-i686/PKGBUILD (from rev 258035, 
granatier/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:56:59 UTC (rev 258036)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=granatier
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A clone of the classic Bomberman game"
+url="http://kde.org/applications/games/granatier/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdegames')
+depends=('libkdegames' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+install=${pkgname}.install
+conflicts=('kdegames-granatier')
+replaces=('kdegames-granatier')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/granatier-${pkgver}.tar.xz;)
+sha1sums=('d3dc64fa79c5605f84e02e101c02b48e8c4a219e')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../granatier-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/granatier.install
===
--- extra-i686/granatier.install2016-01-12 07:56:41 UTC (rev 258035)
+++ extra-i686/granatier.install2016-01-12 07:56:59 UTC (rev 258036)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: granatier/repos/extra-i686/granatier.install (from rev 258035, 
granatier/trunk/granatier.install)
===
--- extra-i686/granatier.install(rev 0)
+++ extra-i686/granatier.install2016-01-12 07:56:59 UTC (rev 258036)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:56:41 UTC (rev 258035)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:56:59 UTC (rev 258036)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 

[arch-commits] Commit in kdegames-kajongg/repos/extra-any (4 files)

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:57:14
  Author: arojas
Revision: 258037

archrelease: copy trunk to extra-any

Added:
  kdegames-kajongg/repos/extra-any/PKGBUILD
(from rev 258036, kdegames-kajongg/trunk/PKGBUILD)
  kdegames-kajongg/repos/extra-any/kdegames-kajongg.install
(from rev 258036, kdegames-kajongg/trunk/kdegames-kajongg.install)
Deleted:
  kdegames-kajongg/repos/extra-any/PKGBUILD
  kdegames-kajongg/repos/extra-any/kdegames-kajongg.install

--+
 PKGBUILD |   82 ++---
 kdegames-kajongg.install |   22 ++--
 2 files changed, 52 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-01-12 07:56:59 UTC (rev 258036)
+++ PKGBUILD2016-01-12 07:57:14 UTC (rev 258037)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdegames-kajongg
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="The ancient Chinese board game for 4 players"
-url="http://kde.org/applications/games/kajongg/;
-arch=('any')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegames')
-depends=('kdebase-runtime' 'python2-twisted' 'kdebindings-python2' 
'libkmahjongg4')
-makedepends=('cmake' 'automoc4')
-install=${pkgname}.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kajongg-${pkgver}.tar.xz;)
-sha1sums=('cecacd041079ac6ac7ff197d9e1b8e62221ba671')
-
-prepare() {
-  mkdir -p build
-
-  cd kajongg-${pkgver}
-  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
-src/{deferredutil,kajongg,kajonggserver,server}.py
-}
-
-build() {
-  cd build
-  cmake ../kajongg-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DINSTALL_KAJONGG=TRUE
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kdegames-kajongg/repos/extra-any/PKGBUILD (from rev 258036, 
kdegames-kajongg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-01-12 07:57:14 UTC (rev 258037)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdegames-kajongg
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="The ancient Chinese board game for 4 players"
+url="http://kde.org/applications/games/kajongg/;
+arch=('any')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdegames')
+depends=('kdebase-runtime' 'python2-twisted' 'kdebindings-python2' 
'libkmahjongg4')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kajongg-${pkgver}.tar.xz;)
+sha1sums=('76d50afd6676cdea61ac755f0b7a4ba424b0fb60')
+
+prepare() {
+  mkdir -p build
+
+  cd kajongg-${pkgver}
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+src/{deferredutil,kajongg,kajonggserver,server}.py
+}
+
+build() {
+  cd build
+  cmake ../kajongg-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DINSTALL_KAJONGG=TRUE
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: kdegames-kajongg.install
===
--- kdegames-kajongg.install2016-01-12 07:56:59 UTC (rev 258036)
+++ kdegames-kajongg.install2016-01-12 07:57:14 UTC (rev 258037)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdegames-kajongg/repos/extra-any/kdegames-kajongg.install (from rev 
258036, kdegames-kajongg/trunk/kdegames-kajongg.install)
===
--- kdegames-kajongg.install(rev 0)
+++ kdegames-kajongg.install2016-01-12 07:57:14 UTC (rev 258037)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}


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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:47:57
  Author: arojas
Revision: 258013

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

Added:
  artikulate/repos/extra-i686/PKGBUILD
(from rev 258012, artikulate/trunk/PKGBUILD)
  artikulate/repos/extra-i686/artikulate.install
(from rev 258012, artikulate/trunk/artikulate.install)
  artikulate/repos/extra-x86_64/PKGBUILD
(from rev 258012, artikulate/trunk/PKGBUILD)
  artikulate/repos/extra-x86_64/artikulate.install
(from rev 258012, artikulate/trunk/artikulate.install)
Deleted:
  artikulate/repos/extra-i686/PKGBUILD
  artikulate/repos/extra-i686/artikulate.install
  artikulate/repos/extra-x86_64/PKGBUILD
  artikulate/repos/extra-x86_64/artikulate.install

-+
 /PKGBUILD   |   80 ++
 /artikulate.install |   24 +++
 extra-i686/PKGBUILD |   40 ---
 extra-i686/artikulate.install   |   12 -
 extra-x86_64/PKGBUILD   |   40 ---
 extra-x86_64/artikulate.install |   12 -
 6 files changed, 104 insertions(+), 104 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:47:39 UTC (rev 258012)
+++ extra-i686/PKGBUILD 2016-01-12 07:47:57 UTC (rev 258013)
@@ -1,40 +0,0 @@
-# $Id: PKGBUILD 250288 2015-11-09 21:13:39Z arojas $
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=artikulate
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Improve your pronunciation by listening to native speakers"
-url="https://projects.kde.org/projects/kde/kdeedu/artikulate;
-arch=(i686 x86_64)
-license=(GPL LGPL FDL)
-groups=(kde-applications kdeedu)
-depends=(hicolor-icon-theme kdeclarative knewstuff qt5-gstreamer)
-makedepends=(extra-cmake-modules kdoctools boost)
-conflicts=(kdeedu-artikulate)
-replaces=(kdeedu-artikulate)
-install=$pkgname.install
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-sha1sums=('18e432eae285415816abe0023f2ab9790ec45400')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: artikulate/repos/extra-i686/PKGBUILD (from rev 258012, 
artikulate/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:47:57 UTC (rev 258013)
@@ -0,0 +1,40 @@
+# $Id: PKGBUILD 250288 2015-11-09 21:13:39Z arojas $
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=artikulate
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Improve your pronunciation by listening to native speakers"
+url="https://projects.kde.org/projects/kde/kdeedu/artikulate;
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdeedu)
+depends=(hicolor-icon-theme kdeclarative knewstuff qt5-gstreamer)
+makedepends=(extra-cmake-modules kdoctools boost)
+conflicts=(kdeedu-artikulate)
+replaces=(kdeedu-artikulate)
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('5c25f53dcc77bff09690e6f2f6fd8335b75cdcfd')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/artikulate.install
===
--- extra-i686/artikulate.install   2016-01-12 07:47:39 UTC (rev 258012)
+++ extra-i686/artikulate.install   2016-01-12 07:47:57 UTC (rev 258013)
@@ -1,12 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-   update-desktop-database -q
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: artikulate/repos/extra-i686/artikulate.install (from rev 258012, 
artikulate/trunk/artikulate.install)
===
--- extra-i686/artikulate.install   (rev 0)
+++ extra-i686/artikulate.install   2016-01-12 07:47:57 UTC (rev 258013)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:48:37
  Author: arojas
Revision: 258015

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

Added:
  cantor/repos/extra-i686/PKGBUILD
(from rev 258014, cantor/trunk/PKGBUILD)
  cantor/repos/extra-i686/cantor.install
(from rev 258014, cantor/trunk/cantor.install)
  cantor/repos/extra-x86_64/PKGBUILD
(from rev 258014, cantor/trunk/PKGBUILD)
  cantor/repos/extra-x86_64/cantor.install
(from rev 258014, cantor/trunk/cantor.install)
Deleted:
  cantor/repos/extra-i686/PKGBUILD
  cantor/repos/extra-i686/cantor.install
  cantor/repos/extra-x86_64/PKGBUILD
  cantor/repos/extra-x86_64/cantor.install

-+
 /PKGBUILD   |   96 ++
 /cantor.install |   24 ++
 extra-i686/PKGBUILD |   48 -
 extra-i686/cantor.install   |   12 -
 extra-x86_64/PKGBUILD   |   48 -
 extra-x86_64/cantor.install |   12 -
 6 files changed, 120 insertions(+), 120 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:48:20 UTC (rev 258014)
+++ extra-i686/PKGBUILD 2016-01-12 07:48:37 UTC (rev 258015)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=cantor
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="KDE Frontend to Mathematical Software"
-url="http://kde.org/applications/education/cantor/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeedu')
-depends=('analitza' 'libspectre' 'kpty' 'ktexteditor' 'knewstuff' 
'libqalculate' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'python2' 'kdoctools' 'luajit' 'r')
-optdepends=('maxima: Maxima backend'
-'octave: Octave backend'
-'r: R backend'
-'luajit: LUA backend'
-'python: Python 3 backend'
-   'python2: Python 2 backend'
-'sagemath: SageMath backend')
-conflicts=('kdeedu-cantor')
-replaces=('kdeedu-cantor')
-install=${pkgname}.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/cantor-${pkgver}.tar.xz;)
-sha1sums=('3a0d552ba608b3e10100eccf45010e28e3bbf229')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DPYTHON_INCLUDE_DIR=/usr/include/python2.7 \
--DPYTHON_LIBRARY=/usr/lib/libpython2.7.so
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: cantor/repos/extra-i686/PKGBUILD (from rev 258014, 
cantor/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:48:37 UTC (rev 258015)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=cantor
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="KDE Frontend to Mathematical Software"
+url="http://kde.org/applications/education/cantor/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('analitza' 'libspectre' 'kpty' 'ktexteditor' 'knewstuff' 
'libqalculate' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'python2' 'kdoctools' 'luajit' 'r')
+optdepends=('maxima: Maxima backend'
+'octave: Octave backend'
+'r: R backend'
+'luajit: LUA backend'
+'python: Python 3 backend'
+   'python2: Python 2 backend'
+'sagemath: SageMath backend')
+conflicts=('kdeedu-cantor')
+replaces=('kdeedu-cantor')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/cantor-${pkgver}.tar.xz;)
+sha1sums=('aea99e9fd5924996181b935f4ce3566c1517b241')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DPYTHON_INCLUDE_DIR=/usr/include/python2.7 \
+-DPYTHON_LIBRARY=/usr/lib/libpython2.7.so
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/cantor.install
===
--- extra-i686/cantor.install   2016-01-12 07:48:20 UTC (rev 258014)
+++ extra-i686/cantor.install   2016-01-12 07:48:37 UTC (rev 258015)
@@ -1,12 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install

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

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

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

Added:
  libkmahjongg/repos/extra-i686/PKGBUILD
(from rev 257970, libkmahjongg/trunk/PKGBUILD)
  libkmahjongg/repos/extra-x86_64/PKGBUILD
(from rev 257970, libkmahjongg/trunk/PKGBUILD)
Deleted:
  libkmahjongg/repos/extra-i686/PKGBUILD
  libkmahjongg/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:34:00 UTC (rev 257970)
+++ extra-i686/PKGBUILD 2016-01-12 07:34:29 UTC (rev 257971)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkmahjongg
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Common code, backgrounds and tile sets for games using Mahjongg tiles"
-url="https://projects.kde.org/projects/kde/kdegames/libmahjongg;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kconfigwidgets' 'kcompletion' 'qt5-svg')
-makedepends=('extra-cmake-modules' 'python')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('6833789e90ae9373e521230300d9ae0479e70a5f')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: libkmahjongg/repos/extra-i686/PKGBUILD (from rev 257970, 
libkmahjongg/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:34:29 UTC (rev 257971)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkmahjongg
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Common code, backgrounds and tile sets for games using Mahjongg tiles"
+url="https://projects.kde.org/projects/kde/kdegames/libmahjongg;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kconfigwidgets' 'kcompletion' 'qt5-svg')
+makedepends=('extra-cmake-modules' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('04dad53421eadc97e2d532b445c4080ef61feff7')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:34:00 UTC (rev 257970)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:34:29 UTC (rev 257971)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkmahjongg
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Common code, backgrounds and tile sets for games using Mahjongg tiles"
-url="https://projects.kde.org/projects/kde/kdegames/libmahjongg;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kconfigwidgets' 'kcompletion' 'qt5-svg')
-makedepends=('extra-cmake-modules' 'python')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('6833789e90ae9373e521230300d9ae0479e70a5f')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: libkmahjongg/repos/extra-x86_64/PKGBUILD (from rev 257970, 
libkmahjongg/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:34:29 UTC (rev 257971)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkmahjongg
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Common code, backgrounds and tile sets for games using Mahjongg tiles"
+url="https://projects.kde.org/projects/kde/kdegames/libmahjongg;

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

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

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

Added:
  libkomparediff2/repos/extra-i686/PKGBUILD
(from rev 257971, libkomparediff2/trunk/PKGBUILD)
  libkomparediff2/repos/extra-x86_64/PKGBUILD
(from rev 257971, libkomparediff2/trunk/PKGBUILD)
Deleted:
  libkomparediff2/repos/extra-i686/PKGBUILD
  libkomparediff2/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:34:29 UTC (rev 257971)
+++ extra-i686/PKGBUILD 2016-01-12 07:34:51 UTC (rev 257972)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkomparediff2
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Library to compare files and strings"
-url='https://projects.kde.org/projects/kde/kdesdk/libkomparediff2'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kparts')
-makedepends=('extra-cmake-modules')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('1280811b94ac3fb75ff05877417c0b1c6a4824e8')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: libkomparediff2/repos/extra-i686/PKGBUILD (from rev 257971, 
libkomparediff2/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:34:51 UTC (rev 257972)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkomparediff2
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Library to compare files and strings"
+url='https://projects.kde.org/projects/kde/kdesdk/libkomparediff2'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kparts')
+makedepends=('extra-cmake-modules')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('f4e4de2bfae895051be955bfba9d71cf29346c36')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:34:29 UTC (rev 257971)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:34:51 UTC (rev 257972)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkomparediff2
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Library to compare files and strings"
-url='https://projects.kde.org/projects/kde/kdesdk/libkomparediff2'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kparts')
-makedepends=('extra-cmake-modules')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('1280811b94ac3fb75ff05877417c0b1c6a4824e8')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: libkomparediff2/repos/extra-x86_64/PKGBUILD (from rev 257971, 
libkomparediff2/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:34:51 UTC (rev 257972)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkomparediff2
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Library to compare files and strings"
+url='https://projects.kde.org/projects/kde/kdesdk/libkomparediff2'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kparts')
+makedepends=('extra-cmake-modules')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:35:11
  Author: arojas
Revision: 257973

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

Added:
  kqtquickcharts/repos/extra-i686/PKGBUILD
(from rev 257972, kqtquickcharts/trunk/PKGBUILD)
  kqtquickcharts/repos/extra-x86_64/PKGBUILD
(from rev 257972, kqtquickcharts/trunk/PKGBUILD)
Deleted:
  kqtquickcharts/repos/extra-i686/PKGBUILD
  kqtquickcharts/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:34:51 UTC (rev 257972)
+++ extra-i686/PKGBUILD 2016-01-12 07:35:11 UTC (rev 257973)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kqtquickcharts
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A QtQuick plugin to render beautiful and interactive charts"
-url="https://projects.kde.org/projects/kde/kdeedu/kqtquickcharts;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs')
-makedepends=('cmake' 'automoc4')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('f4c9c7c678732d3dfa19c52a6b9f50109f4f0efe')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kqtquickcharts/repos/extra-i686/PKGBUILD (from rev 257972, 
kqtquickcharts/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:35:11 UTC (rev 257973)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kqtquickcharts
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A QtQuick plugin to render beautiful and interactive charts"
+url="https://projects.kde.org/projects/kde/kdeedu/kqtquickcharts;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('2e296ba66a19cea78d8b9201cd1eb86b67441f4e')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:34:51 UTC (rev 257972)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:35:11 UTC (rev 257973)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kqtquickcharts
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A QtQuick plugin to render beautiful and interactive charts"
-url="https://projects.kde.org/projects/kde/kdeedu/kqtquickcharts;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs')
-makedepends=('cmake' 'automoc4')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('f4c9c7c678732d3dfa19c52a6b9f50109f4f0efe')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kqtquickcharts/repos/extra-x86_64/PKGBUILD (from rev 257972, 
kqtquickcharts/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:35:11 UTC (rev 257973)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kqtquickcharts
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A QtQuick plugin to render beautiful and interactive charts"
+url="https://projects.kde.org/projects/kde/kdeedu/kqtquickcharts;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('2e296ba66a19cea78d8b9201cd1eb86b67441f4e')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:36:28
  Author: arojas
Revision: 257977

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

Added:
  kcalcore/repos/extra-i686/PKGBUILD
(from rev 257976, kcalcore/trunk/PKGBUILD)
  kcalcore/repos/extra-x86_64/PKGBUILD
(from rev 257976, kcalcore/trunk/PKGBUILD)
Deleted:
  kcalcore/repos/extra-i686/PKGBUILD
  kcalcore/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:36:08 UTC (rev 257976)
+++ extra-i686/PKGBUILD 2016-01-12 07:36:28 UTC (rev 257977)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kcalcore
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="The KDE calendar access library"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(libical kdelibs4support)
-makedepends=(extra-cmake-modules python kdoctools)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('7f7af9da67f3cce2a8fcfb823ae23307')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kcalcore/repos/extra-i686/PKGBUILD (from rev 257976, 
kcalcore/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:36:28 UTC (rev 257977)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kcalcore
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="The KDE calendar access library"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(libical kdelibs4support)
+makedepends=(extra-cmake-modules python kdoctools)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('db5b7c0a227fc4671254ccf5c6c99395')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:36:08 UTC (rev 257976)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:36:28 UTC (rev 257977)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kcalcore
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="The KDE calendar access library"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(libical kdelibs4support)
-makedepends=(extra-cmake-modules python kdoctools)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('7f7af9da67f3cce2a8fcfb823ae23307')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kcalcore/repos/extra-x86_64/PKGBUILD (from rev 257976, 
kcalcore/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:36:28 UTC (rev 257977)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kcalcore
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="The KDE calendar access library"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(libical kdelibs4support)
+makedepends=(extra-cmake-modules python kdoctools)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('db5b7c0a227fc4671254ccf5c6c99395')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:36:08
  Author: arojas
Revision: 257976

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

Added:
  gpgmepp/repos/extra-i686/PKGBUILD
(from rev 257975, gpgmepp/trunk/PKGBUILD)
  gpgmepp/repos/extra-x86_64/PKGBUILD
(from rev 257975, gpgmepp/trunk/PKGBUILD)
Deleted:
  gpgmepp/repos/extra-i686/PKGBUILD
  gpgmepp/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:35:49 UTC (rev 257975)
+++ extra-i686/PKGBUILD 2016-01-12 07:36:08 UTC (rev 257976)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=gpgmepp
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="C++ bindings/wrapper for gpgme"
-arch=(i686 x86_64)
-url="https://projects.kde.org/gpgmepp;
-license=(LGPL)
-depends=(gpgme qt5-base)
-makedepends=(extra-cmake-modules python boost)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('3b6afb70cddbb29e3456820afb3e59a7')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: gpgmepp/repos/extra-i686/PKGBUILD (from rev 257975, 
gpgmepp/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:36:08 UTC (rev 257976)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=gpgmepp
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="C++ bindings/wrapper for gpgme"
+arch=(i686 x86_64)
+url="https://projects.kde.org/gpgmepp;
+license=(LGPL)
+depends=(gpgme qt5-base)
+makedepends=(extra-cmake-modules python boost)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('dd99d5ff633593d970fc888919ed803a')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:35:49 UTC (rev 257975)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:36:08 UTC (rev 257976)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=gpgmepp
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="C++ bindings/wrapper for gpgme"
-arch=(i686 x86_64)
-url="https://projects.kde.org/gpgmepp;
-license=(LGPL)
-depends=(gpgme qt5-base)
-makedepends=(extra-cmake-modules python boost)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('3b6afb70cddbb29e3456820afb3e59a7')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: gpgmepp/repos/extra-x86_64/PKGBUILD (from rev 257975, 
gpgmepp/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:36:08 UTC (rev 257976)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=gpgmepp
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="C++ bindings/wrapper for gpgme"
+arch=(i686 x86_64)
+url="https://projects.kde.org/gpgmepp;
+license=(LGPL)
+depends=(gpgme qt5-base)
+makedepends=(extra-cmake-modules python boost)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('dd99d5ff633593d970fc888919ed803a')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

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

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

Added:
  kig/repos/extra-i686/PKGBUILD
(from rev 258021, kig/trunk/PKGBUILD)
  kig/repos/extra-i686/kig.install
(from rev 258021, kig/trunk/kig.install)
  kig/repos/extra-x86_64/PKGBUILD
(from rev 258021, kig/trunk/PKGBUILD)
  kig/repos/extra-x86_64/kig.install
(from rev 258021, kig/trunk/kig.install)
Deleted:
  kig/repos/extra-i686/PKGBUILD
  kig/repos/extra-i686/kig.install
  kig/repos/extra-x86_64/PKGBUILD
  kig/repos/extra-x86_64/kig.install

--+
 /PKGBUILD|   90 +
 /kig.install |   24 
 extra-i686/PKGBUILD  |   45 --
 extra-i686/kig.install   |   12 --
 extra-x86_64/PKGBUILD|   45 --
 extra-x86_64/kig.install |   12 --
 6 files changed, 114 insertions(+), 114 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:50:48 UTC (rev 258021)
+++ extra-i686/PKGBUILD 2016-01-12 07:51:11 UTC (rev 258022)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kig
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Interactive Geometry"
-url="http://kde.org/applications/education/kig/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeedu')
-depends=('ktexteditor' 'boost-libs' 'python2' 'hicolor-icon-theme') # 
kemoticons, kitemmodels are only required for tests
-makedepends=('extra-cmake-modules' 'kdoctools' 'boost' 'qt5-xmlpatterns')
-optdepends=('qt5-xmlpatterns: support for GeoGebra files')
-replaces=('kdeedu-kig')
-conflicts=('kdeedu-kig')
-install=${pkgname}.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kig-${pkgver}.tar.xz;)
-sha1sums=('d830fd3c6b91a17af9545dc4df36dfd4870ac17f')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kig-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBoostPython_INCLUDE_DIRS=/usr/include/python2.7 \
--DBoostPython_LIBRARIES='-lboost_python -lpython2.7'
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-
-  # Use the python2 executable
-  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' 
"${pkgdir}"/usr/bin/pykig.py
-}

Copied: kig/repos/extra-i686/PKGBUILD (from rev 258021, kig/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:51:11 UTC (rev 258022)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kig
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Interactive Geometry"
+url="http://kde.org/applications/education/kig/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('ktexteditor' 'boost-libs' 'python2' 'hicolor-icon-theme') # 
kemoticons, kitemmodels are only required for tests
+makedepends=('extra-cmake-modules' 'kdoctools' 'boost' 'qt5-xmlpatterns')
+optdepends=('qt5-xmlpatterns: support for GeoGebra files')
+replaces=('kdeedu-kig')
+conflicts=('kdeedu-kig')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kig-${pkgver}.tar.xz;)
+sha1sums=('3f1a14246bfdd34a07adf738a4fc107767f00c0c')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kig-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBoostPython_INCLUDE_DIRS=/usr/include/python2.7 \
+-DBoostPython_LIBRARIES='-lboost_python -lpython2.7'
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+
+  # Use the python2 executable
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' 
"${pkgdir}"/usr/bin/pykig.py
+}

Deleted: extra-i686/kig.install
===
--- extra-i686/kig.install  2016-01-12 07:50:48 UTC (rev 258021)
+++ extra-i686/kig.install  2016-01-12 07:51:11 UTC (rev 258022)
@@ -1,12 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kig/repos/extra-i686/kig.install (from rev 258021, 
kig/trunk/kig.install)
===
--- extra-i686/kig.install  (rev 0)
+++ 

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

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

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

Added:
  kiten/repos/extra-i686/PKGBUILD
(from rev 258022, kiten/trunk/PKGBUILD)
  kiten/repos/extra-i686/kiten.install
(from rev 258022, kiten/trunk/kiten.install)
  kiten/repos/extra-x86_64/PKGBUILD
(from rev 258022, kiten/trunk/PKGBUILD)
  kiten/repos/extra-x86_64/kiten.install
(from rev 258022, kiten/trunk/kiten.install)
Deleted:
  kiten/repos/extra-i686/PKGBUILD
  kiten/repos/extra-i686/kiten.install
  kiten/repos/extra-x86_64/PKGBUILD
  kiten/repos/extra-x86_64/kiten.install

+
 /PKGBUILD  |   78 +++
 /kiten.install |   22 
 extra-i686/PKGBUILD|   39 -
 extra-i686/kiten.install   |   11 --
 extra-x86_64/PKGBUILD  |   39 -
 extra-x86_64/kiten.install |   11 --
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:51:11 UTC (rev 258022)
+++ extra-i686/PKGBUILD 2016-01-12 07:51:32 UTC (rev 258023)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kiten
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Japanese Reference/Study Tool"
-url="http://kde.org/applications/education/kiten/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeedu')
-depends=('khtml' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-install=${pkgname}.install
-conflicts=('kdeedu-kiten')
-replaces=('kdeedu-kiten')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kiten-${pkgver}.tar.xz;)
-sha1sums=('2a115c11f1a3e5b795618252a6cb2ad6d1f25e1d')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kiten-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kiten/repos/extra-i686/PKGBUILD (from rev 258022, kiten/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:51:32 UTC (rev 258023)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kiten
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Japanese Reference/Study Tool"
+url="http://kde.org/applications/education/kiten/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('khtml' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+install=${pkgname}.install
+conflicts=('kdeedu-kiten')
+replaces=('kdeedu-kiten')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kiten-${pkgver}.tar.xz;)
+sha1sums=('dc08cfe4d11db195f57516906d526485e46495a2')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kiten-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/kiten.install
===
--- extra-i686/kiten.install2016-01-12 07:51:11 UTC (rev 258022)
+++ extra-i686/kiten.install2016-01-12 07:51:32 UTC (rev 258023)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kiten/repos/extra-i686/kiten.install (from rev 258022, 
kiten/trunk/kiten.install)
===
--- extra-i686/kiten.install(rev 0)
+++ extra-i686/kiten.install2016-01-12 07:51:32 UTC (rev 258023)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:51:11 UTC (rev 258022)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:51:32 UTC (rev 258023)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kiten
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Japanese Reference/Study Tool"

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:50:48
  Author: arojas
Revision: 258021

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

Added:
  khangman/repos/extra-i686/PKGBUILD
(from rev 258020, khangman/trunk/PKGBUILD)
  khangman/repos/extra-i686/khangman.install
(from rev 258020, khangman/trunk/khangman.install)
  khangman/repos/extra-x86_64/PKGBUILD
(from rev 258020, khangman/trunk/PKGBUILD)
  khangman/repos/extra-x86_64/khangman.install
(from rev 258020, khangman/trunk/khangman.install)
Deleted:
  khangman/repos/extra-i686/PKGBUILD
  khangman/repos/extra-i686/khangman.install
  khangman/repos/extra-x86_64/PKGBUILD
  khangman/repos/extra-x86_64/khangman.install

---+
 /PKGBUILD |   78 
 /khangman.install |   22 +++
 extra-i686/PKGBUILD   |   39 
 extra-i686/khangman.install   |   11 -
 extra-x86_64/PKGBUILD |   39 
 extra-x86_64/khangman.install |   11 -
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:50:20 UTC (rev 258020)
+++ extra-i686/PKGBUILD 2016-01-12 07:50:48 UTC (rev 258021)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=khangman
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Hangman Game"
-url="http://kde.org/applications/education/khangman/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeedu')
-depends=('libkeduvocdocument' 'knewstuff' 'kdeclarative')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-replaces=('kdeedu-khangman')
-conflicts=('kdeedu-khangman')
-install=${pkgname}.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/khangman-${pkgver}.tar.xz;)
-sha1sums=('126db2863ce611ce9225b2897b841da2c011dd34')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../khangman-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DSYSCONF_INSTALL_DIR=/etc
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: khangman/repos/extra-i686/PKGBUILD (from rev 258020, 
khangman/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:50:48 UTC (rev 258021)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=khangman
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Hangman Game"
+url="http://kde.org/applications/education/khangman/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('libkeduvocdocument' 'knewstuff' 'kdeclarative')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+replaces=('kdeedu-khangman')
+conflicts=('kdeedu-khangman')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/khangman-${pkgver}.tar.xz;)
+sha1sums=('4d46493f275ab704a47bc881efe88fdfe1268776')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../khangman-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DSYSCONF_INSTALL_DIR=/etc
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/khangman.install
===
--- extra-i686/khangman.install 2016-01-12 07:50:20 UTC (rev 258020)
+++ extra-i686/khangman.install 2016-01-12 07:50:48 UTC (rev 258021)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: khangman/repos/extra-i686/khangman.install (from rev 258020, 
khangman/trunk/khangman.install)
===
--- extra-i686/khangman.install (rev 0)
+++ extra-i686/khangman.install 2016-01-12 07:50:48 UTC (rev 258021)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:50:20 UTC (rev 258020)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:50:48 UTC (rev 258021)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:49:13
  Author: arojas
Revision: 258017

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

Added:
  kdeedu-kalzium/repos/extra-i686/PKGBUILD
(from rev 258016, kdeedu-kalzium/trunk/PKGBUILD)
  kdeedu-kalzium/repos/extra-i686/kdeedu-kalzium.install
(from rev 258016, kdeedu-kalzium/trunk/kdeedu-kalzium.install)
  kdeedu-kalzium/repos/extra-x86_64/PKGBUILD
(from rev 258016, kdeedu-kalzium/trunk/PKGBUILD)
  kdeedu-kalzium/repos/extra-x86_64/kdeedu-kalzium.install
(from rev 258016, kdeedu-kalzium/trunk/kdeedu-kalzium.install)
Deleted:
  kdeedu-kalzium/repos/extra-i686/PKGBUILD
  kdeedu-kalzium/repos/extra-i686/kdeedu-kalzium.install
  kdeedu-kalzium/repos/extra-x86_64/PKGBUILD
  kdeedu-kalzium/repos/extra-x86_64/kdeedu-kalzium.install

-+
 /PKGBUILD   |   64 ++
 /kdeedu-kalzium.install |   24 
 extra-i686/PKGBUILD |   32 -
 extra-i686/kdeedu-kalzium.install   |   12 --
 extra-x86_64/PKGBUILD   |   32 -
 extra-x86_64/kdeedu-kalzium.install |   12 --
 6 files changed, 88 insertions(+), 88 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:48:55 UTC (rev 258016)
+++ extra-i686/PKGBUILD 2016-01-12 07:49:13 UTC (rev 258017)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdeedu-kalzium
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Periodic Table of Elements"
-url="http://kde.org/applications/education/kalzium/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeedu')
-depends=('kdebase-runtime' 'avogadro' 'ocaml' 'chemical-mime-data')
-makedepends=('cmake' 'automoc4' 'mesa' 'eigen' 'eigen2' 'facile')
-install=${pkgname}.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kalzium-${pkgver}.tar.xz;)
-sha1sums=('eb92157d5cd0605f8d2eaed3ec94b90ca2cb792e')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../kalzium-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kdeedu-kalzium/repos/extra-i686/PKGBUILD (from rev 258016, 
kdeedu-kalzium/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:49:13 UTC (rev 258017)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeedu-kalzium
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Periodic Table of Elements"
+url="http://kde.org/applications/education/kalzium/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('kdebase-runtime' 'avogadro' 'ocaml' 'chemical-mime-data')
+makedepends=('cmake' 'automoc4' 'mesa' 'eigen' 'eigen2' 'facile')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kalzium-${pkgver}.tar.xz;)
+sha1sums=('1d351e29a9a324c631072b8c594bd2ceff5b6664')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../kalzium-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/kdeedu-kalzium.install
===
--- extra-i686/kdeedu-kalzium.install   2016-01-12 07:48:55 UTC (rev 258016)
+++ extra-i686/kdeedu-kalzium.install   2016-01-12 07:49:13 UTC (rev 258017)
@@ -1,12 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdeedu-kalzium/repos/extra-i686/kdeedu-kalzium.install (from rev 
258016, kdeedu-kalzium/trunk/kdeedu-kalzium.install)
===
--- extra-i686/kdeedu-kalzium.install   (rev 0)
+++ extra-i686/kdeedu-kalzium.install   2016-01-12 07:49:13 UTC (rev 258017)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:48:55 UTC (rev 258016)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:49:13 UTC (rev 258017)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:48:55
  Author: arojas
Revision: 258016

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

Added:
  kalgebra/repos/extra-i686/PKGBUILD
(from rev 258015, kalgebra/trunk/PKGBUILD)
  kalgebra/repos/extra-i686/kalgebra.install
(from rev 258015, kalgebra/trunk/kalgebra.install)
  kalgebra/repos/extra-x86_64/PKGBUILD
(from rev 258015, kalgebra/trunk/PKGBUILD)
  kalgebra/repos/extra-x86_64/kalgebra.install
(from rev 258015, kalgebra/trunk/kalgebra.install)
Deleted:
  kalgebra/repos/extra-i686/PKGBUILD
  kalgebra/repos/extra-i686/kalgebra.install
  kalgebra/repos/extra-x86_64/PKGBUILD
  kalgebra/repos/extra-x86_64/kalgebra.install

---+
 /PKGBUILD |   74 
 /kalgebra.install |   24 
 extra-i686/PKGBUILD   |   37 
 extra-i686/kalgebra.install   |   12 --
 extra-x86_64/PKGBUILD |   37 
 extra-x86_64/kalgebra.install |   12 --
 6 files changed, 98 insertions(+), 98 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:48:37 UTC (rev 258015)
+++ extra-i686/PKGBUILD 2016-01-12 07:48:55 UTC (rev 258016)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kalgebra
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Graph Calculator"
-url="http://kde.org/applications/education/kalgebra/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeedu')
-depends=('analitza' 'kio' 'qt5-webkit' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'glu')
-replaces=('kdeedu-kalgebra')
-conflicts=('kdeedu-kalgebra' 'kdeedu-analitza')
-install=${pkgname}.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kalgebra-${pkgver}.tar.xz;)
-sha1sums=('3b171337a25c169e41811e27b1c693b251e82882')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kalgebra-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kalgebra/repos/extra-i686/PKGBUILD (from rev 258015, 
kalgebra/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:48:55 UTC (rev 258016)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kalgebra
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Graph Calculator"
+url="http://kde.org/applications/education/kalgebra/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('analitza' 'kio' 'qt5-webkit' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'glu')
+replaces=('kdeedu-kalgebra')
+conflicts=('kdeedu-kalgebra' 'kdeedu-analitza')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kalgebra-${pkgver}.tar.xz;)
+sha1sums=('19f60237da950c874a7e9942955dd09219b6be9d')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kalgebra-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/kalgebra.install
===
--- extra-i686/kalgebra.install 2016-01-12 07:48:37 UTC (rev 258015)
+++ extra-i686/kalgebra.install 2016-01-12 07:48:55 UTC (rev 258016)
@@ -1,12 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kalgebra/repos/extra-i686/kalgebra.install (from rev 258015, 
kalgebra/trunk/kalgebra.install)
===
--- extra-i686/kalgebra.install (rev 0)
+++ extra-i686/kalgebra.install 2016-01-12 07:48:55 UTC (rev 258016)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:48:37 UTC (rev 258015)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:48:55 UTC (rev 258016)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-

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

2016-01-11 Thread Felix Yan
Date: Tuesday, January 12, 2016 @ 08:51:54
  Author: fyan
Revision: 156056

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

Added:
  haskell-path/repos/community-i686/
  haskell-path/repos/community-i686/PKGBUILD
(from rev 156055, haskell-path/trunk/PKGBUILD)
  haskell-path/repos/community-i686/haskell-path.install
(from rev 156055, haskell-path/trunk/haskell-path.install)
  haskell-path/repos/community-x86_64/
  haskell-path/repos/community-x86_64/PKGBUILD
(from rev 156055, haskell-path/trunk/PKGBUILD)
  haskell-path/repos/community-x86_64/haskell-path.install
(from rev 156055, haskell-path/trunk/haskell-path.install)

---+
 community-i686/PKGBUILD   |   42 
 community-i686/haskell-path.install   |   18 +
 community-x86_64/PKGBUILD |   42 
 community-x86_64/haskell-path.install |   18 +
 4 files changed, 120 insertions(+)

Copied: haskell-path/repos/community-i686/PKGBUILD (from rev 156055, 
haskell-path/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-12 07:51:54 UTC (rev 156056)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=path
+pkgname=haskell-path
+pkgver=0.5.3
+pkgrel=1
+pkgdesc="Path"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-exceptions")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('6501bec6cf4a63520ad993bac5d7a0a71d4d0cb3c2155755a5faba93b82703c4')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-path/repos/community-i686/haskell-path.install (from rev 
156055, haskell-path/trunk/haskell-path.install)
===
--- community-i686/haskell-path.install (rev 0)
+++ community-i686/haskell-path.install 2016-01-12 07:51:54 UTC (rev 156056)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-path
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-path/repos/community-x86_64/PKGBUILD (from rev 156055, 
haskell-path/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-01-12 07:51:54 UTC (rev 156056)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=path
+pkgname=haskell-path
+pkgver=0.5.3
+pkgrel=1
+pkgdesc="Path"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-exceptions")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('6501bec6cf4a63520ad993bac5d7a0a71d4d0cb3c2155755a5faba93b82703c4')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell 

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:50:01
  Author: arojas
Revision: 258019

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

Added:
  kbruch/repos/extra-i686/PKGBUILD
(from rev 258018, kbruch/trunk/PKGBUILD)
  kbruch/repos/extra-i686/kbruch.install
(from rev 258018, kbruch/trunk/kbruch.install)
  kbruch/repos/extra-x86_64/PKGBUILD
(from rev 258018, kbruch/trunk/PKGBUILD)
  kbruch/repos/extra-x86_64/kbruch.install
(from rev 258018, kbruch/trunk/kbruch.install)
Deleted:
  kbruch/repos/extra-i686/PKGBUILD
  kbruch/repos/extra-i686/kbruch.install
  kbruch/repos/extra-x86_64/PKGBUILD
  kbruch/repos/extra-x86_64/kbruch.install

-+
 /PKGBUILD   |   78 ++
 /kbruch.install |   22 +++
 extra-i686/PKGBUILD |   39 -
 extra-i686/kbruch.install   |   11 -
 extra-x86_64/PKGBUILD   |   39 -
 extra-x86_64/kbruch.install |   11 -
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:49:37 UTC (rev 258018)
+++ extra-i686/PKGBUILD 2016-01-12 07:50:01 UTC (rev 258019)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kbruch
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Exercise Fractions"
-url="http://kde.org/applications/education/kbruch/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeedu')
-depends=('kxmlgui' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-install=${pkgname}.install
-conflicts=('kdeedu-kbruch')
-replaces=('kdeedu-kbruch')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kbruch-${pkgver}.tar.xz;)
-sha1sums=('b71347d71520c5ff69dd0ea3143898cce314c77d')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kbruch-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kbruch/repos/extra-i686/PKGBUILD (from rev 258018, 
kbruch/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:50:01 UTC (rev 258019)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kbruch
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Exercise Fractions"
+url="http://kde.org/applications/education/kbruch/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('kxmlgui' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+install=${pkgname}.install
+conflicts=('kdeedu-kbruch')
+replaces=('kdeedu-kbruch')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kbruch-${pkgver}.tar.xz;)
+sha1sums=('36cc7f7cdfbcaae21320f99762a700b1ee0eb364')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kbruch-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/kbruch.install
===
--- extra-i686/kbruch.install   2016-01-12 07:49:37 UTC (rev 258018)
+++ extra-i686/kbruch.install   2016-01-12 07:50:01 UTC (rev 258019)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kbruch/repos/extra-i686/kbruch.install (from rev 258018, 
kbruch/trunk/kbruch.install)
===
--- extra-i686/kbruch.install   (rev 0)
+++ extra-i686/kbruch.install   2016-01-12 07:50:01 UTC (rev 258019)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:49:37 UTC (rev 258018)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:50:01 UTC (rev 258019)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kbruch
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Exercise Fractions"

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:50:20
  Author: arojas
Revision: 258020

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

Added:
  kgeography/repos/extra-i686/PKGBUILD
(from rev 258019, kgeography/trunk/PKGBUILD)
  kgeography/repos/extra-i686/kgeography.install
(from rev 258019, kgeography/trunk/kgeography.install)
  kgeography/repos/extra-x86_64/PKGBUILD
(from rev 258019, kgeography/trunk/PKGBUILD)
  kgeography/repos/extra-x86_64/kgeography.install
(from rev 258019, kgeography/trunk/kgeography.install)
Deleted:
  kgeography/repos/extra-i686/PKGBUILD
  kgeography/repos/extra-i686/kgeography.install
  kgeography/repos/extra-x86_64/PKGBUILD
  kgeography/repos/extra-x86_64/kgeography.install

-+
 /PKGBUILD   |   74 ++
 /kgeography.install |   22 +++
 extra-i686/PKGBUILD |   37 ---
 extra-i686/kgeography.install   |   11 -
 extra-x86_64/PKGBUILD   |   37 ---
 extra-x86_64/kgeography.install |   11 -
 6 files changed, 96 insertions(+), 96 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:50:01 UTC (rev 258019)
+++ extra-i686/PKGBUILD 2016-01-12 07:50:20 UTC (rev 258020)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kgeography
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Geography Trainer"
-url="http://kde.org/applications/education/kgeography/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeedu')
-depends=('kxmlgui' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-replaces=('kdeedu-kgeography')
-conflicts=('kdeedu-kgeography')
-install=${pkgname}.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kgeography-${pkgver}.tar.xz;)
-sha1sums=('388416aa351c3bb80c3cf34ca442130c20a4e863')
-
-build() {
-  cd "${srcdir}"
-  mkdir -p build
-  cd build
-  cmake ../kgeography-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kgeography/repos/extra-i686/PKGBUILD (from rev 258019, 
kgeography/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:50:20 UTC (rev 258020)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kgeography
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Geography Trainer"
+url="http://kde.org/applications/education/kgeography/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('kxmlgui' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+replaces=('kdeedu-kgeography')
+conflicts=('kdeedu-kgeography')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kgeography-${pkgver}.tar.xz;)
+sha1sums=('16ee2a30304408c24d182237abf5ba4be08fd2e2')
+
+build() {
+  cd "${srcdir}"
+  mkdir -p build
+  cd build
+  cmake ../kgeography-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/kgeography.install
===
--- extra-i686/kgeography.install   2016-01-12 07:50:01 UTC (rev 258019)
+++ extra-i686/kgeography.install   2016-01-12 07:50:20 UTC (rev 258020)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kgeography/repos/extra-i686/kgeography.install (from rev 258019, 
kgeography/trunk/kgeography.install)
===
--- extra-i686/kgeography.install   (rev 0)
+++ extra-i686/kgeography.install   2016-01-12 07:50:20 UTC (rev 258020)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:50:01 UTC (rev 258019)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:50:20 UTC (rev 258020)
@@ -1,37 

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:40:34
  Author: arojas
Revision: 257990

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

Added:
  akonadi/repos/extra-i686/PKGBUILD
(from rev 257989, akonadi/trunk/PKGBUILD)
  akonadi/repos/extra-i686/akonadi.install
(from rev 257989, akonadi/trunk/akonadi.install)
  akonadi/repos/extra-x86_64/PKGBUILD
(from rev 257989, akonadi/trunk/PKGBUILD)
  akonadi/repos/extra-x86_64/akonadi.install
(from rev 257989, akonadi/trunk/akonadi.install)
Deleted:
  akonadi/repos/extra-i686/PKGBUILD
  akonadi/repos/extra-i686/akonadi.install
  akonadi/repos/extra-x86_64/PKGBUILD
  akonadi/repos/extra-x86_64/akonadi.install

--+
 /PKGBUILD|   76 +
 /akonadi.install |   22 +++
 extra-i686/PKGBUILD  |   38 
 extra-i686/akonadi.install   |   11 -
 extra-x86_64/PKGBUILD|   38 
 extra-x86_64/akonadi.install |   11 -
 6 files changed, 98 insertions(+), 98 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:40:17 UTC (rev 257989)
+++ extra-i686/PKGBUILD 2016-01-12 07:40:34 UTC (rev 257990)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=akonadi
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="PIM layer, which provides an asynchronous API to access all kind of 
PIM data"
-arch=('i686' 'x86_64')
-url='http://community.kde.org/KDE_PIM/Akonadi'
-license=('LGPL')
-depends=('shared-mime-info' 'qt5-base' 'libxslt' 'mariadb')
-makedepends=('extra-cmake-modules' 'postgresql')
-optdepends=('postgresql: PostgreSQL backend')
-install="${pkgname}.install"
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('970ad3251fed32f2e4d166062d655950')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: akonadi/repos/extra-i686/PKGBUILD (from rev 257989, 
akonadi/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:40:34 UTC (rev 257990)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=akonadi
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="PIM layer, which provides an asynchronous API to access all kind of 
PIM data"
+arch=('i686' 'x86_64')
+url='http://community.kde.org/KDE_PIM/Akonadi'
+license=('LGPL')
+depends=('shared-mime-info' 'qt5-base' 'libxslt' 'mariadb')
+makedepends=('extra-cmake-modules' 'postgresql')
+optdepends=('postgresql: PostgreSQL backend')
+install="${pkgname}.install"
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('f158dde1303b5c0b55982b613ec7d834')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/akonadi.install
===
--- extra-i686/akonadi.install  2016-01-12 07:40:17 UTC (rev 257989)
+++ extra-i686/akonadi.install  2016-01-12 07:40:34 UTC (rev 257990)
@@ -1,11 +0,0 @@
-post_install() {
-   update-mime-database usr/share/mime &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: akonadi/repos/extra-i686/akonadi.install (from rev 257989, 
akonadi/trunk/akonadi.install)
===
--- extra-i686/akonadi.install  (rev 0)
+++ extra-i686/akonadi.install  2016-01-12 07:40:34 UTC (rev 257990)
@@ -0,0 +1,11 @@
+post_install() {
+   update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:40:17 UTC (rev 257989)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:40:34 UTC (rev 257990)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:39:57
  Author: arojas
Revision: 257988

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

Added:
  kontactinterface/repos/extra-i686/PKGBUILD
(from rev 257987, kontactinterface/trunk/PKGBUILD)
  kontactinterface/repos/extra-x86_64/PKGBUILD
(from rev 257987, kontactinterface/trunk/PKGBUILD)
Deleted:
  kontactinterface/repos/extra-i686/PKGBUILD
  kontactinterface/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:39:39 UTC (rev 257987)
+++ extra-i686/PKGBUILD 2016-01-12 07:39:57 UTC (rev 257988)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kontactinterface
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Kontact Plugin Interface Library"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(kparts)
-makedepends=(extra-cmake-modules python)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('b8e8a523c4a95d6e335a30d55d25ebec')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kontactinterface/repos/extra-i686/PKGBUILD (from rev 257987, 
kontactinterface/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:39:57 UTC (rev 257988)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kontactinterface
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Kontact Plugin Interface Library"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(kparts)
+makedepends=(extra-cmake-modules python)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('df11d8ff127ba1fae7d2add88c35e5fb')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:39:39 UTC (rev 257987)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:39:57 UTC (rev 257988)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kontactinterface
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Kontact Plugin Interface Library"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(kparts)
-makedepends=(extra-cmake-modules python)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('b8e8a523c4a95d6e335a30d55d25ebec')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kontactinterface/repos/extra-x86_64/PKGBUILD (from rev 257987, 
kontactinterface/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:39:57 UTC (rev 257988)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kontactinterface
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Kontact Plugin Interface Library"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(kparts)
+makedepends=(extra-cmake-modules python)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('df11d8ff127ba1fae7d2add88c35e5fb')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:41:58
  Author: arojas
Revision: 257994

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

Added:
  akonadi-calendar/repos/extra-i686/PKGBUILD
(from rev 257993, akonadi-calendar/trunk/PKGBUILD)
  akonadi-calendar/repos/extra-x86_64/PKGBUILD
(from rev 257993, akonadi-calendar/trunk/PKGBUILD)
Deleted:
  akonadi-calendar/repos/extra-i686/PKGBUILD
  akonadi-calendar/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:41:38 UTC (rev 257993)
+++ extra-i686/PKGBUILD 2016-01-12 07:41:58 UTC (rev 257994)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=akonadi-calendar
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Akonadi calendar integration"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(kmailtransport kcalutils akonadi-contact)
-makedepends=(extra-cmake-modules kdoctools boost)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('adcdf94dbcd0d193da071fd640dd86b5')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: akonadi-calendar/repos/extra-i686/PKGBUILD (from rev 257993, 
akonadi-calendar/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:41:58 UTC (rev 257994)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=akonadi-calendar
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Akonadi calendar integration"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(kmailtransport kcalutils akonadi-contact)
+makedepends=(extra-cmake-modules kdoctools boost)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('a3f0973509fc2b813b58cf0167952515')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:41:38 UTC (rev 257993)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:41:58 UTC (rev 257994)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=akonadi-calendar
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Akonadi calendar integration"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(kmailtransport kcalutils akonadi-contact)
-makedepends=(extra-cmake-modules kdoctools boost)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('adcdf94dbcd0d193da071fd640dd86b5')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: akonadi-calendar/repos/extra-x86_64/PKGBUILD (from rev 257993, 
akonadi-calendar/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:41:58 UTC (rev 257994)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=akonadi-calendar
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Akonadi calendar integration"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(kmailtransport kcalutils akonadi-contact)
+makedepends=(extra-cmake-modules kdoctools boost)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('a3f0973509fc2b813b58cf0167952515')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+ 

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:42:35
  Author: arojas
Revision: 257996

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

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

-+
 /PKGBUILD   |   76 ++
 /kdepim-runtime.install |   26 +++
 extra-i686/PKGBUILD |   38 -
 extra-i686/kdepim-runtime.install   |   13 -
 extra-x86_64/PKGBUILD   |   38 -
 extra-x86_64/kdepim-runtime.install |   13 -
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:42:16 UTC (rev 257995)
+++ extra-i686/PKGBUILD 2016-01-12 07:42:35 UTC (rev 257996)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=kdepim-runtime
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='Extends the functionality of kdepim'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kdepim-runtime'
-license=('GPL' 'LGPL' 'FDL')
-depends=(hicolor-icon-theme libkgapi libkolab akonadi-socialutils 
akonadi-calendar
- knotifyconfig kross kalarmcal kmbox kimap kde-syndication)
-makedepends=(extra-cmake-modules kdoctools boost)
-install=$pkgname.install
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-sha1sums=('e354c7796cf3b4f2e948cdec01f2b3cbaf05afdd')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kdepim-runtime/repos/extra-i686/PKGBUILD (from rev 257995, 
kdepim-runtime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:42:35 UTC (rev 257996)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=kdepim-runtime
+pkgver=15.12.1
+pkgrel=1
+pkgdesc='Extends the functionality of kdepim'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kdepim-runtime'
+license=('GPL' 'LGPL' 'FDL')
+depends=(hicolor-icon-theme libkgapi libkolab akonadi-socialutils 
akonadi-calendar
+ knotifyconfig kross kalarmcal kmbox kimap kde-syndication)
+makedepends=(extra-cmake-modules kdoctools boost)
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('4954694d42dad0bed2048e5ef656cc456d35015b')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/kdepim-runtime.install
===
--- extra-i686/kdepim-runtime.install   2016-01-12 07:42:16 UTC (rev 257995)
+++ extra-i686/kdepim-runtime.install   2016-01-12 07:42:35 UTC (rev 257996)
@@ -1,13 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-   update-mime-database usr/share/mime &> /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdepim-runtime/repos/extra-i686/kdepim-runtime.install (from rev 
257995, kdepim-runtime/trunk/kdepim-runtime.install)
===
--- extra-i686/kdepim-runtime.install   (rev 0)
+++ extra-i686/kdepim-runtime.install   2016-01-12 07:42:35 UTC (rev 257996)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:40:57
  Author: arojas
Revision: 257991

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

Added:
  kdepimlibs/repos/extra-i686/PKGBUILD
(from rev 257990, kdepimlibs/trunk/PKGBUILD)
  kdepimlibs/repos/extra-i686/akonadi-mime.install
(from rev 257990, kdepimlibs/trunk/akonadi-mime.install)
  kdepimlibs/repos/extra-i686/akonadi-socialutils.install
(from rev 257990, kdepimlibs/trunk/akonadi-socialutils.install)
  kdepimlibs/repos/extra-x86_64/PKGBUILD
(from rev 257990, kdepimlibs/trunk/PKGBUILD)
  kdepimlibs/repos/extra-x86_64/akonadi-mime.install
(from rev 257990, kdepimlibs/trunk/akonadi-mime.install)
  kdepimlibs/repos/extra-x86_64/akonadi-socialutils.install
(from rev 257990, kdepimlibs/trunk/akonadi-socialutils.install)
Deleted:
  kdepimlibs/repos/extra-i686/PKGBUILD
  kdepimlibs/repos/extra-i686/akonadi-mime.install
  kdepimlibs/repos/extra-i686/akonadi-socialutils.install
  kdepimlibs/repos/extra-x86_64/PKGBUILD
  kdepimlibs/repos/extra-x86_64/akonadi-mime.install
  kdepimlibs/repos/extra-x86_64/akonadi-socialutils.install

--+
 /PKGBUILD|  152 +
 /akonadi-mime.install|   22 
 /akonadi-socialutils.install |   22 
 extra-i686/PKGBUILD  |   82 ---
 extra-i686/akonadi-mime.install  |   11 --
 extra-i686/akonadi-socialutils.install   |   11 --
 extra-x86_64/PKGBUILD|   82 ---
 extra-x86_64/akonadi-mime.install|   11 --
 extra-x86_64/akonadi-socialutils.install |   11 --
 9 files changed, 196 insertions(+), 208 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:40:34 UTC (rev 257990)
+++ extra-i686/PKGBUILD 2016-01-12 07:40:57 UTC (rev 257991)
@@ -1,82 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgbase=kdepimlibs
-pkgname=(akonadi-client akonadi-contact akonadi-mime akonadi-notes 
akonadi-socialutils kio-pim)
-pkgver=15.12.0
-pkgrel=2
-pkgdesc="KDE PIM Libraries"
-arch=(i686 x86_64)
-url='https://projects.kde.org/kdepimlibs'
-license=(GPL LGPL)
-makedepends=(extra-cmake-modules qt5-tools kcalcore kmbox kcontacts kldap 
akonadi prison-frameworks kdoctools boost)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgbase-$pkgver.tar.xz;
-   
fix-kmail-crash.patch::"https://quickgit.kde.org/?p=kdepimlibs.git=commitdiff=c6bf33=plain;)
-sha1sums=('9e2230bbeb9139e42ca6c8e828fa01a747b7337d'
-  'fd3bdf389fa32fb7731c32cdc642965ed689e987')
-
-prepare() {
-  mkdir -p build
-
-# Fix crash on kmail exit
-  cd $pkgbase-$pkgver
-  patch -p1 -i ../fix-kmail-crash.patch
-}
-
-build() {
-  cd build
-  cmake ../$pkgbase-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package_akonadi-client() {
-  depends=(akonadi kxmlgui kitemmodels)
-
-  cd build/akonadi
-  make DESTDIR="$pkgdir" install
-}
-
-package_akonadi-contact() {
-  depends=(akonadi-client kmime kcontacts prison-frameworks kio)
-
-  cd build/akonadi-contact
-  make DESTDIR="$pkgdir" install
-}
-
-package_akonadi-mime() {
-  depends=(akonadi-client kmime kio)
-  install=akonadi-mime.install
-
-  cd build/akonadi-mime
-  make DESTDIR="$pkgdir" install
-}
-
-package_akonadi-notes() {
-  depends=(kmime)
-
-  cd build/akonadi-notes
-  make DESTDIR="$pkgdir" install
-}
-
-package_akonadi-socialutils() {
-  depends=(akonadi-client kio)
-  install=akonadi-socialutils.install
-
-  cd build/akonadi-socialutils
-  make DESTDIR="$pkgdir" install
-}
-
-package_kio-pim() {
-  pkgdesc='PIM kioslaves'
-  depends=(kldap kio)
-
-  cd build/kioslave
-  make DESTDIR="$pkgdir" install
-}

Copied: kdepimlibs/repos/extra-i686/PKGBUILD (from rev 257990, 
kdepimlibs/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:40:57 UTC (rev 257991)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=kdepimlibs
+pkgname=(akonadi-client akonadi-contact akonadi-mime akonadi-notes 
akonadi-socialutils kio-pim)
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="KDE PIM Libraries"
+arch=(i686 x86_64)
+url='https://projects.kde.org/kdepimlibs'
+license=(GPL LGPL)
+makedepends=(extra-cmake-modules qt5-tools kcalcore kmbox kcontacts kldap 
akonadi prison-frameworks kdoctools boost)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgbase-$pkgver.tar.xz;)

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:41:19
  Author: arojas
Revision: 257992

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

Added:
  akonadi-search/repos/extra-i686/PKGBUILD
(from rev 257991, akonadi-search/trunk/PKGBUILD)
  akonadi-search/repos/extra-x86_64/PKGBUILD
(from rev 257991, akonadi-search/trunk/PKGBUILD)
Deleted:
  akonadi-search/repos/extra-i686/PKGBUILD
  akonadi-search/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:40:57 UTC (rev 257991)
+++ extra-i686/PKGBUILD 2016-01-12 07:41:19 UTC (rev 257992)
@@ -1,34 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Gustavo Alvarez 
-
-pkgname=akonadi-search
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Libraries and daemons to implement searching in Akonadi"
-url='https://projects.kde.org/akonadi-search'
-arch=(i686 x86_64)
-license=(GPL LGPL FDL)
-depends=(xapian-core akonadi-mime kcontacts kcalcore krunner)
-makedepends=(extra-cmake-modules kdoctools boost)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('43fc30f63a6dc776e6845408f80bc015')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: akonadi-search/repos/extra-i686/PKGBUILD (from rev 257991, 
akonadi-search/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:41:19 UTC (rev 257992)
@@ -0,0 +1,34 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Gustavo Alvarez 
+
+pkgname=akonadi-search
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Libraries and daemons to implement searching in Akonadi"
+url='https://projects.kde.org/akonadi-search'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+depends=(xapian-core akonadi-mime kcontacts kcalcore krunner)
+makedepends=(extra-cmake-modules kdoctools boost)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('eb3fad63f2ea68d8771200b41eee45df')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:40:57 UTC (rev 257991)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:41:19 UTC (rev 257992)
@@ -1,34 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Gustavo Alvarez 
-
-pkgname=akonadi-search
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Libraries and daemons to implement searching in Akonadi"
-url='https://projects.kde.org/akonadi-search'
-arch=(i686 x86_64)
-license=(GPL LGPL FDL)
-depends=(xapian-core akonadi-mime kcontacts kcalcore krunner)
-makedepends=(extra-cmake-modules kdoctools boost)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('43fc30f63a6dc776e6845408f80bc015')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: akonadi-search/repos/extra-x86_64/PKGBUILD (from rev 257991, 
akonadi-search/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:41:19 UTC (rev 257992)
@@ -0,0 +1,34 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Gustavo Alvarez 
+
+pkgname=akonadi-search
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Libraries and daemons to implement searching in Akonadi"
+url='https://projects.kde.org/akonadi-search'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+depends=(xapian-core akonadi-mime kcontacts kcalcore krunner)
+makedepends=(extra-cmake-modules kdoctools boost)

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:42:16
  Author: arojas
Revision: 257995

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

Added:
  kalarmcal/repos/extra-i686/PKGBUILD
(from rev 257994, kalarmcal/trunk/PKGBUILD)
  kalarmcal/repos/extra-x86_64/PKGBUILD
(from rev 257994, kalarmcal/trunk/PKGBUILD)
Deleted:
  kalarmcal/repos/extra-i686/PKGBUILD
  kalarmcal/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:41:58 UTC (rev 257994)
+++ extra-i686/PKGBUILD 2016-01-12 07:42:16 UTC (rev 257995)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kalarmcal
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="The KAlarm client library"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(kidentitymanagement kholidays kcalcore akonadi-client)
-makedepends=(extra-cmake-modules kdoctools python boost)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('182788691f2c8ed8a2e7305198cd70f9')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kalarmcal/repos/extra-i686/PKGBUILD (from rev 257994, 
kalarmcal/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:42:16 UTC (rev 257995)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kalarmcal
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="The KAlarm client library"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(kidentitymanagement kholidays kcalcore akonadi-client)
+makedepends=(extra-cmake-modules kdoctools python boost)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('e36f64a0b80fcfde8b7e19549f784a30')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:41:58 UTC (rev 257994)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:42:16 UTC (rev 257995)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kalarmcal
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="The KAlarm client library"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(kidentitymanagement kholidays kcalcore akonadi-client)
-makedepends=(extra-cmake-modules kdoctools python boost)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('182788691f2c8ed8a2e7305198cd70f9')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kalarmcal/repos/extra-x86_64/PKGBUILD (from rev 257994, 
kalarmcal/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:42:16 UTC (rev 257995)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kalarmcal
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="The KAlarm client library"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(kidentitymanagement kholidays kcalcore akonadi-client)
+makedepends=(extra-cmake-modules kdoctools python boost)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('e36f64a0b80fcfde8b7e19549f784a30')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" 

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:41:38
  Author: arojas
Revision: 257993

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

Added:
  kmailtransport/repos/extra-i686/PKGBUILD
(from rev 257992, kmailtransport/trunk/PKGBUILD)
  kmailtransport/repos/extra-x86_64/PKGBUILD
(from rev 257992, kmailtransport/trunk/PKGBUILD)
Deleted:
  kmailtransport/repos/extra-i686/PKGBUILD
  kmailtransport/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:41:19 UTC (rev 257992)
+++ extra-i686/PKGBUILD 2016-01-12 07:41:38 UTC (rev 257993)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kmailtransport
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Mail Transport Service"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(akonadi-mime kcmutils kdelibs4support)
-makedepends=(extra-cmake-modules python kdoctools boost)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('2c3db769c3d7d55c569ba1a457c1fbab')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kmailtransport/repos/extra-i686/PKGBUILD (from rev 257992, 
kmailtransport/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:41:38 UTC (rev 257993)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kmailtransport
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Mail Transport Service"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(akonadi-mime kcmutils kdelibs4support)
+makedepends=(extra-cmake-modules python kdoctools boost)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('9a55f7f0104d76629f3cbb0a4b77fc60')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:41:19 UTC (rev 257992)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:41:38 UTC (rev 257993)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kmailtransport
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Mail Transport Service"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(akonadi-mime kcmutils kdelibs4support)
-makedepends=(extra-cmake-modules python kdoctools boost)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('2c3db769c3d7d55c569ba1a457c1fbab')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kmailtransport/repos/extra-x86_64/PKGBUILD (from rev 257992, 
kmailtransport/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:41:38 UTC (rev 257993)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kmailtransport
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Mail Transport Service"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(akonadi-mime kcmutils kdelibs4support)
+makedepends=(extra-cmake-modules python kdoctools boost)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('9a55f7f0104d76629f3cbb0a4b77fc60')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:32:07
  Author: arojas
Revision: 257964

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

Added:
  libkipi/repos/extra-i686/PKGBUILD
(from rev 257963, libkipi/trunk/PKGBUILD)
  libkipi/repos/extra-i686/libkipi.install
(from rev 257963, libkipi/trunk/libkipi.install)
  libkipi/repos/extra-x86_64/PKGBUILD
(from rev 257963, libkipi/trunk/PKGBUILD)
  libkipi/repos/extra-x86_64/libkipi.install
(from rev 257963, libkipi/trunk/libkipi.install)
Deleted:
  libkipi/repos/extra-i686/PKGBUILD
  libkipi/repos/extra-i686/libkipi.install
  libkipi/repos/extra-x86_64/PKGBUILD
  libkipi/repos/extra-x86_64/libkipi.install

--+
 /PKGBUILD|   74 +
 /libkipi.install |   22 
 extra-i686/PKGBUILD  |   37 
 extra-i686/libkipi.install   |   11 --
 extra-x86_64/PKGBUILD|   37 
 extra-x86_64/libkipi.install |   11 --
 6 files changed, 96 insertions(+), 96 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:31:50 UTC (rev 257963)
+++ extra-i686/PKGBUILD 2016-01-12 07:32:07 UTC (rev 257964)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkipi
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="An interface to use kipi-plugins from a KDE application"
-url="https://projects.kde.org/projects/kde/kdegraphics/libs/libkipi;
-arch=(i686 x86_64)
-license=(GPL LGPL FDL)
-depends=(kxmlgui hicolor-icon-theme)
-makedepends=(extra-cmake-modules python)
-install=$pkgname.install
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-sha1sums=('e39dbeca223b1f317c8448b49a71a704a31348bc')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: libkipi/repos/extra-i686/PKGBUILD (from rev 257963, 
libkipi/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:32:07 UTC (rev 257964)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkipi
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="An interface to use kipi-plugins from a KDE application"
+url="https://projects.kde.org/projects/kde/kdegraphics/libs/libkipi;
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+depends=(kxmlgui hicolor-icon-theme)
+makedepends=(extra-cmake-modules python)
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('684b552d972ab5513cd6412ebd14b49a3446a524')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/libkipi.install
===
--- extra-i686/libkipi.install  2016-01-12 07:31:50 UTC (rev 257963)
+++ extra-i686/libkipi.install  2016-01-12 07:32:07 UTC (rev 257964)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: libkipi/repos/extra-i686/libkipi.install (from rev 257963, 
libkipi/trunk/libkipi.install)
===
--- extra-i686/libkipi.install  (rev 0)
+++ extra-i686/libkipi.install  2016-01-12 07:32:07 UTC (rev 257964)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:31:50 UTC (rev 257963)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:32:07 UTC (rev 257964)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkipi
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="An 

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:32:43
  Author: arojas
Revision: 257966

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

Added:
  analitza/repos/extra-i686/PKGBUILD
(from rev 257965, analitza/trunk/PKGBUILD)
  analitza/repos/extra-x86_64/PKGBUILD
(from rev 257965, analitza/trunk/PKGBUILD)
Deleted:
  analitza/repos/extra-i686/PKGBUILD
  analitza/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:32:25 UTC (rev 257965)
+++ extra-i686/PKGBUILD 2016-01-12 07:32:43 UTC (rev 257966)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=analitza
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A library to add mathematical features to your program"
-url="https://projects.kde.org/projects/kde/kdeedu/analitza;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('qt5-svg' 'qt5-declarative')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'eigen')
-replaces=('kdebase-analitza')
-conflicts=('kdebase-analitza')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/analitza-${pkgver}.tar.xz;)
-sha1sums=('a579cf0f2ab409e4190ba7e6c1832059fbfe9d3e')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../analitza-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: analitza/repos/extra-i686/PKGBUILD (from rev 257965, 
analitza/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:32:43 UTC (rev 257966)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=analitza
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A library to add mathematical features to your program"
+url="https://projects.kde.org/projects/kde/kdeedu/analitza;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('qt5-svg' 'qt5-declarative')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'eigen')
+replaces=('kdebase-analitza')
+conflicts=('kdebase-analitza')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/analitza-${pkgver}.tar.xz;)
+sha1sums=('cef82a413413bec4cf464db42f59b2d60a06d440')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../analitza-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:32:25 UTC (rev 257965)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:32:43 UTC (rev 257966)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=analitza
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A library to add mathematical features to your program"
-url="https://projects.kde.org/projects/kde/kdeedu/analitza;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('qt5-svg' 'qt5-declarative')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'eigen')
-replaces=('kdebase-analitza')
-conflicts=('kdebase-analitza')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/analitza-${pkgver}.tar.xz;)
-sha1sums=('a579cf0f2ab409e4190ba7e6c1832059fbfe9d3e')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../analitza-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: analitza/repos/extra-x86_64/PKGBUILD (from rev 257965, 
analitza/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:32:43 UTC (rev 257966)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=analitza
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A library to add mathematical features to your program"

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:31:50
  Author: arojas
Revision: 257963

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

Added:
  libkdcraw/repos/extra-i686/PKGBUILD
(from rev 257962, libkdcraw/trunk/PKGBUILD)
  libkdcraw/repos/extra-i686/libkdcraw.install
(from rev 257962, libkdcraw/trunk/libkdcraw.install)
  libkdcraw/repos/extra-x86_64/PKGBUILD
(from rev 257962, libkdcraw/trunk/PKGBUILD)
  libkdcraw/repos/extra-x86_64/libkdcraw.install
(from rev 257962, libkdcraw/trunk/libkdcraw.install)
Deleted:
  libkdcraw/repos/extra-i686/PKGBUILD
  libkdcraw/repos/extra-i686/libkdcraw.install
  libkdcraw/repos/extra-x86_64/PKGBUILD
  libkdcraw/repos/extra-x86_64/libkdcraw.install

+
 /PKGBUILD  |   74 +++
 /libkdcraw.install |   22 +++
 extra-i686/PKGBUILD|   37 ---
 extra-i686/libkdcraw.install   |   11 -
 extra-x86_64/PKGBUILD  |   37 ---
 extra-x86_64/libkdcraw.install |   11 -
 6 files changed, 96 insertions(+), 96 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:31:31 UTC (rev 257962)
+++ extra-i686/PKGBUILD 2016-01-12 07:31:50 UTC (rev 257963)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkdcraw
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A C++ interface used to decode RAW picture"
-url="https://projects.kde.org/projects/kde/kdegraphics/libs/libkdcraw;
-arch=(i686 x86_64)
-license=(GPL LGPL FDL)
-depends=(qt5-base libraw)
-makedepends=(extra-cmake-modules)
-install=$pkgname.install
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-sha1sums=('0d4d2fb6897eb84cab42705d6a4f16f901f5aa2d')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: libkdcraw/repos/extra-i686/PKGBUILD (from rev 257962, 
libkdcraw/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:31:50 UTC (rev 257963)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkdcraw
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A C++ interface used to decode RAW picture"
+url="https://projects.kde.org/projects/kde/kdegraphics/libs/libkdcraw;
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+depends=(qt5-base libraw)
+makedepends=(extra-cmake-modules)
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('654619f951fe5eba5be883015afad6d7ed2c5106')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/libkdcraw.install
===
--- extra-i686/libkdcraw.install2016-01-12 07:31:31 UTC (rev 257962)
+++ extra-i686/libkdcraw.install2016-01-12 07:31:50 UTC (rev 257963)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: libkdcraw/repos/extra-i686/libkdcraw.install (from rev 257962, 
libkdcraw/trunk/libkdcraw.install)
===
--- extra-i686/libkdcraw.install(rev 0)
+++ extra-i686/libkdcraw.install2016-01-12 07:31:50 UTC (rev 257963)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:31:31 UTC (rev 257962)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:31:50 UTC (rev 257963)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkdcraw

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:38:42
  Author: arojas
Revision: 257984

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

Added:
  kmime/repos/extra-i686/PKGBUILD
(from rev 257983, kmime/trunk/PKGBUILD)
  kmime/repos/extra-x86_64/PKGBUILD
(from rev 257983, kmime/trunk/PKGBUILD)
Deleted:
  kmime/repos/extra-i686/PKGBUILD
  kmime/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:38:23 UTC (rev 257983)
+++ extra-i686/PKGBUILD 2016-01-12 07:38:42 UTC (rev 257984)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kmime
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Library for handling mail messages and newsgroup articles"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(ki18n kcodecs)
-makedepends=(extra-cmake-modules python)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('244d34b78248e952e3ee57b298e20f89')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kmime/repos/extra-i686/PKGBUILD (from rev 257983, kmime/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:38:42 UTC (rev 257984)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kmime
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Library for handling mail messages and newsgroup articles"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(ki18n kcodecs)
+makedepends=(extra-cmake-modules python)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('33fd1087dd59553183532cf94af59306')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:38:23 UTC (rev 257983)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:38:42 UTC (rev 257984)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kmime
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Library for handling mail messages and newsgroup articles"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(ki18n kcodecs)
-makedepends=(extra-cmake-modules python)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('244d34b78248e952e3ee57b298e20f89')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kmime/repos/extra-x86_64/PKGBUILD (from rev 257983, 
kmime/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:38:42 UTC (rev 257984)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kmime
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Library for handling mail messages and newsgroup articles"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(ki18n kcodecs)
+makedepends=(extra-cmake-modules python)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('33fd1087dd59553183532cf94af59306')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:37:25
  Author: arojas
Revision: 257980

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

Added:
  kcalutils/repos/extra-i686/PKGBUILD
(from rev 257979, kcalutils/trunk/PKGBUILD)
  kcalutils/repos/extra-x86_64/PKGBUILD
(from rev 257979, kcalutils/trunk/PKGBUILD)
Deleted:
  kcalutils/repos/extra-i686/PKGBUILD
  kcalutils/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:37:07 UTC (rev 257979)
+++ extra-i686/PKGBUILD 2016-01-12 07:37:25 UTC (rev 257980)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kcalutils
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="The KDE calendar utility library"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(kcalcore kidentitymanagement)
-makedepends=(extra-cmake-modules python kdoctools)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('3af64dda1dca31f1a405b28c5114e7ed')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kcalutils/repos/extra-i686/PKGBUILD (from rev 257979, 
kcalutils/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:37:25 UTC (rev 257980)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kcalutils
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="The KDE calendar utility library"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(kcalcore kidentitymanagement)
+makedepends=(extra-cmake-modules python kdoctools)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('9a8d83474dc96ce72c6e4c290a511aff')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:37:07 UTC (rev 257979)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:37:25 UTC (rev 257980)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kcalutils
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="The KDE calendar utility library"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(kcalcore kidentitymanagement)
-makedepends=(extra-cmake-modules python kdoctools)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('3af64dda1dca31f1a405b28c5114e7ed')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kcalutils/repos/extra-x86_64/PKGBUILD (from rev 257979, 
kcalutils/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:37:25 UTC (rev 257980)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kcalutils
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="The KDE calendar utility library"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(kcalcore kidentitymanagement)
+makedepends=(extra-cmake-modules python kdoctools)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('9a8d83474dc96ce72c6e4c290a511aff')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:37:07
  Author: arojas
Revision: 257979

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

Added:
  kidentitymanagement/repos/extra-i686/PKGBUILD
(from rev 257978, kidentitymanagement/trunk/PKGBUILD)
  kidentitymanagement/repos/extra-x86_64/PKGBUILD
(from rev 257978, kidentitymanagement/trunk/PKGBUILD)
Deleted:
  kidentitymanagement/repos/extra-i686/PKGBUILD
  kidentitymanagement/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:36:47 UTC (rev 257978)
+++ extra-i686/PKGBUILD 2016-01-12 07:37:07 UTC (rev 257979)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kidentitymanagement
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="KDE PIM libraries"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(kpimtextedit)
-makedepends=(extra-cmake-modules python kdoctools)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('be5727c7e9e1590386c08aa67b4683a9')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kidentitymanagement/repos/extra-i686/PKGBUILD (from rev 257978, 
kidentitymanagement/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:37:07 UTC (rev 257979)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kidentitymanagement
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="KDE PIM libraries"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(kpimtextedit)
+makedepends=(extra-cmake-modules python kdoctools)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('e4e95a02657ad3804470e39274ca7fc8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:36:47 UTC (rev 257978)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:37:07 UTC (rev 257979)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kidentitymanagement
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="KDE PIM libraries"
-arch=(i686 x86_64)
-url="https://projects.kde.org/$pkgname;
-license=(LGPL)
-depends=(kpimtextedit)
-makedepends=(extra-cmake-modules python kdoctools)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('be5727c7e9e1590386c08aa67b4683a9')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kidentitymanagement/repos/extra-x86_64/PKGBUILD (from rev 257978, 
kidentitymanagement/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:37:07 UTC (rev 257979)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kidentitymanagement
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="KDE PIM libraries"
+arch=(i686 x86_64)
+url="https://projects.kde.org/$pkgname;
+license=(LGPL)
+depends=(kpimtextedit)
+makedepends=(extra-cmake-modules python kdoctools)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('e4e95a02657ad3804470e39274ca7fc8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:36:47
  Author: arojas
Revision: 257978

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

Added:
  kpimtextedit/repos/extra-i686/PKGBUILD
(from rev 257977, kpimtextedit/trunk/PKGBUILD)
  kpimtextedit/repos/extra-x86_64/PKGBUILD
(from rev 257977, kpimtextedit/trunk/PKGBUILD)
Deleted:
  kpimtextedit/repos/extra-i686/PKGBUILD
  kpimtextedit/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:36:28 UTC (rev 257977)
+++ extra-i686/PKGBUILD 2016-01-12 07:36:47 UTC (rev 257978)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kpimtextedit
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A textedit with PIM-specific features"
-arch=(i686 x86_64)
-url="https://projects.kde.org/projects/kde/pim/$_gitname;
-license=(LGPL)
-depends=(kio kemoticons grantlee-qt5)
-makedepends=(extra-cmake-modules python kdoctools kdesignerplugin)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('20fe2b7921d6b676d9e0a976961b2c73')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kpimtextedit/repos/extra-i686/PKGBUILD (from rev 257977, 
kpimtextedit/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:36:47 UTC (rev 257978)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kpimtextedit
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A textedit with PIM-specific features"
+arch=(i686 x86_64)
+url="https://projects.kde.org/projects/kde/pim/$_gitname;
+license=(LGPL)
+depends=(kio kemoticons grantlee-qt5)
+makedepends=(extra-cmake-modules python kdoctools kdesignerplugin)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('5fe788a7355c12a2ae9f1a2cbda6310f')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:36:28 UTC (rev 257977)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:36:47 UTC (rev 257978)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kpimtextedit
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A textedit with PIM-specific features"
-arch=(i686 x86_64)
-url="https://projects.kde.org/projects/kde/pim/$_gitname;
-license=(LGPL)
-depends=(kio kemoticons grantlee-qt5)
-makedepends=(extra-cmake-modules python kdoctools kdesignerplugin)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('20fe2b7921d6b676d9e0a976961b2c73')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kpimtextedit/repos/extra-x86_64/PKGBUILD (from rev 257977, 
kpimtextedit/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:36:47 UTC (rev 257978)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kpimtextedit
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A textedit with PIM-specific features"
+arch=(i686 x86_64)
+url="https://projects.kde.org/projects/kde/pim/$_gitname;
+license=(LGPL)
+depends=(kio kemoticons grantlee-qt5)
+makedepends=(extra-cmake-modules python kdoctools kdesignerplugin)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('5fe788a7355c12a2ae9f1a2cbda6310f')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:48:20
  Author: arojas
Revision: 258014

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

Added:
  blinken/repos/extra-i686/PKGBUILD
(from rev 258013, blinken/trunk/PKGBUILD)
  blinken/repos/extra-i686/blinken.install
(from rev 258013, blinken/trunk/blinken.install)
  blinken/repos/extra-x86_64/PKGBUILD
(from rev 258013, blinken/trunk/PKGBUILD)
  blinken/repos/extra-x86_64/blinken.install
(from rev 258013, blinken/trunk/blinken.install)
Deleted:
  blinken/repos/extra-i686/PKGBUILD
  blinken/repos/extra-i686/blinken.install
  blinken/repos/extra-x86_64/PKGBUILD
  blinken/repos/extra-x86_64/blinken.install

--+
 /PKGBUILD|   74 +
 /blinken.install |   24 +
 extra-i686/PKGBUILD  |   37 
 extra-i686/blinken.install   |   12 --
 extra-x86_64/PKGBUILD|   37 
 extra-x86_64/blinken.install |   12 --
 6 files changed, 98 insertions(+), 98 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:47:57 UTC (rev 258013)
+++ extra-i686/PKGBUILD 2016-01-12 07:48:20 UTC (rev 258014)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=blinken
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Memory Enhancement Game"
-url="http://kde.org/applications/education/blinken/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeedu')
-depends=('kxmlgui' 'phonon-qt5' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-install=${pkgname}.install
-replaces=('kdeedu-blinken')
-conflicts=('kdeedu-blinken')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/blinken-${pkgver}.tar.xz;)
-sha1sums=('41b539514080a4b9a7019d55e0339eb126dbba76')
-
-build() {
-  cd "${srcdir}"
-  mkdir -p build
-  cd build
-  cmake ../blinken-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: blinken/repos/extra-i686/PKGBUILD (from rev 258013, 
blinken/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:48:20 UTC (rev 258014)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=blinken
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Memory Enhancement Game"
+url="http://kde.org/applications/education/blinken/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('kxmlgui' 'phonon-qt5' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+install=${pkgname}.install
+replaces=('kdeedu-blinken')
+conflicts=('kdeedu-blinken')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/blinken-${pkgver}.tar.xz;)
+sha1sums=('cf9ce2a15cacc14dd528c7dbfa1bb76f2ab50c33')
+
+build() {
+  cd "${srcdir}"
+  mkdir -p build
+  cd build
+  cmake ../blinken-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/blinken.install
===
--- extra-i686/blinken.install  2016-01-12 07:47:57 UTC (rev 258013)
+++ extra-i686/blinken.install  2016-01-12 07:48:20 UTC (rev 258014)
@@ -1,12 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}
-

Copied: blinken/repos/extra-i686/blinken.install (from rev 258013, 
blinken/trunk/blinken.install)
===
--- extra-i686/blinken.install  (rev 0)
+++ extra-i686/blinken.install  2016-01-12 07:48:20 UTC (rev 258014)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}
+

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:47:57 UTC (rev 258013)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:48:20 UTC (rev 258014)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:49:37
  Author: arojas
Revision: 258018

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

Added:
  kanagram/repos/extra-i686/PKGBUILD
(from rev 258017, kanagram/trunk/PKGBUILD)
  kanagram/repos/extra-i686/kanagram.install
(from rev 258017, kanagram/trunk/kanagram.install)
  kanagram/repos/extra-x86_64/PKGBUILD
(from rev 258017, kanagram/trunk/PKGBUILD)
  kanagram/repos/extra-x86_64/kanagram.install
(from rev 258017, kanagram/trunk/kanagram.install)
Deleted:
  kanagram/repos/extra-i686/PKGBUILD
  kanagram/repos/extra-i686/kanagram.install
  kanagram/repos/extra-x86_64/PKGBUILD
  kanagram/repos/extra-x86_64/kanagram.install

---+
 /PKGBUILD |   72 
 /kanagram.install |   22 
 extra-i686/PKGBUILD   |   36 
 extra-i686/kanagram.install   |   11 --
 extra-x86_64/PKGBUILD |   36 
 extra-x86_64/kanagram.install |   11 --
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:49:13 UTC (rev 258017)
+++ extra-i686/PKGBUILD 2016-01-12 07:49:37 UTC (rev 258018)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kanagram
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Letter Order Game"
-url="http://kde.org/applications/education/kanagram/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeedu')
-depends=('libkeduvocdocument' 'kdeclarative' 'knewstuff')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-replaces=('kdeedu-kanagram')
-conflicts=('kdeedu-kanagram')
-install=${pkgname}.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kanagram-${pkgver}.tar.xz;)
-sha1sums=('8a6edc2827227198679050990ecee5920cf9c898')
-
-build() {
-  cd "${srcdir}"
-  mkdir -p build
-  cd build
-  cmake ../kanagram-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DSYSCONF_INSTALL_DIR=/etc
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kanagram/repos/extra-i686/PKGBUILD (from rev 258017, 
kanagram/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:49:37 UTC (rev 258018)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kanagram
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Letter Order Game"
+url="http://kde.org/applications/education/kanagram/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('libkeduvocdocument' 'kdeclarative' 'knewstuff')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+replaces=('kdeedu-kanagram')
+conflicts=('kdeedu-kanagram')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kanagram-${pkgver}.tar.xz;)
+sha1sums=('d4735a91f2df1587f9c7c1da5ddfeea682d6c6f6')
+
+build() {
+  cd "${srcdir}"
+  mkdir -p build
+  cd build
+  cmake ../kanagram-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DSYSCONF_INSTALL_DIR=/etc
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/kanagram.install
===
--- extra-i686/kanagram.install 2016-01-12 07:49:13 UTC (rev 258017)
+++ extra-i686/kanagram.install 2016-01-12 07:49:37 UTC (rev 258018)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kanagram/repos/extra-i686/kanagram.install (from rev 258017, 
kanagram/trunk/kanagram.install)
===
--- extra-i686/kanagram.install (rev 0)
+++ extra-i686/kanagram.install 2016-01-12 07:49:37 UTC (rev 258018)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:49:13 UTC (rev 258017)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:49:37 UTC (rev 258018)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kanagram
-pkgver=15.12.0

[arch-commits] Commit in (5 files)

2016-01-11 Thread Felix Yan
Date: Tuesday, January 12, 2016 @ 08:47:26
  Author: fyan
Revision: 156055

addpkg: haskell-path 0.5.3-1

Added:
  haskell-path/
  haskell-path/repos/
  haskell-path/trunk/
  haskell-path/trunk/PKGBUILD
  haskell-path/trunk/haskell-path.install

--+
 PKGBUILD |   42 ++
 haskell-path.install |   18 ++
 2 files changed, 60 insertions(+)

Added: haskell-path/trunk/PKGBUILD
===
--- haskell-path/trunk/PKGBUILD (rev 0)
+++ haskell-path/trunk/PKGBUILD 2016-01-12 07:47:26 UTC (rev 156055)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=path
+pkgname=haskell-path
+pkgver=0.5.3
+pkgrel=1
+pkgdesc="Path"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-exceptions")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('6501bec6cf4a63520ad993bac5d7a0a71d4d0cb3c2155755a5faba93b82703c4')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


Property changes on: haskell-path/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-path/trunk/haskell-path.install
===
--- haskell-path/trunk/haskell-path.install (rev 0)
+++ haskell-path/trunk/haskell-path.install 2016-01-12 07:47:26 UTC (rev 
156055)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-path
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}


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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:47:39
  Author: arojas
Revision: 258012

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

Added:
  kross-interpreters/repos/extra-i686/PKGBUILD
(from rev 258011, kross-interpreters/trunk/PKGBUILD)
  kross-interpreters/repos/extra-x86_64/PKGBUILD
(from rev 258011, kross-interpreters/trunk/PKGBUILD)
Deleted:
  kross-interpreters/repos/extra-i686/PKGBUILD
  kross-interpreters/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:47:19 UTC (rev 258011)
+++ extra-i686/PKGBUILD 2016-01-12 07:47:39 UTC (rev 258012)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=kross-interpreters
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='Language interpreters to enable in-process scripting with Kross'
-arch=(i686 x86_64)
-url='http://projects.kde.org/kross-interpreters'
-license=(GPL)
-depends=(kross kdelibs4support)
-makedepends=(extra-cmake-modules kdoctools python2)
-optdepends=('python2: kross-python plugin')
-groups=(kde-applications kdebindings)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-sha256sums=('1b9207d0006cf0b09af8057e8511e7f677b4bd5f112eb6d80c541cc49e4a9a79')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}
-

Copied: kross-interpreters/repos/extra-i686/PKGBUILD (from rev 258011, 
kross-interpreters/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:47:39 UTC (rev 258012)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=kross-interpreters
+pkgver=15.12.1
+pkgrel=1
+pkgdesc='Language interpreters to enable in-process scripting with Kross'
+arch=(i686 x86_64)
+url='http://projects.kde.org/kross-interpreters'
+license=(GPL)
+depends=(kross kdelibs4support)
+makedepends=(extra-cmake-modules kdoctools python2)
+optdepends=('python2: kross-python plugin')
+groups=(kde-applications kdebindings)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha256sums=('0fcff9cab763a696277a0977f202df27afdcb0076195c8173087ac5a6e999dd3')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:47:19 UTC (rev 258011)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:47:39 UTC (rev 258012)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=kross-interpreters
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='Language interpreters to enable in-process scripting with Kross'
-arch=(i686 x86_64)
-url='http://projects.kde.org/kross-interpreters'
-license=(GPL)
-depends=(kross kdelibs4support)
-makedepends=(extra-cmake-modules kdoctools python2)
-optdepends=('python2: kross-python plugin')
-groups=(kde-applications kdebindings)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-sha256sums=('1b9207d0006cf0b09af8057e8511e7f677b4bd5f112eb6d80c541cc49e4a9a79')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}
-

Copied: kross-interpreters/repos/extra-x86_64/PKGBUILD (from rev 258011, 
kross-interpreters/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:47:39 UTC (rev 258012)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=kross-interpreters
+pkgver=15.12.1
+pkgrel=1
+pkgdesc='Language interpreters to enable in-process scripting with Kross'
+arch=(i686 x86_64)
+url='http://projects.kde.org/kross-interpreters'

[arch-commits] Commit in kdeedu-data/repos/extra-any (4 files)

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:31:10
  Author: arojas
Revision: 257961

archrelease: copy trunk to extra-any

Added:
  kdeedu-data/repos/extra-any/PKGBUILD
(from rev 257960, kdeedu-data/trunk/PKGBUILD)
  kdeedu-data/repos/extra-any/kdeedu-data.install
(from rev 257960, kdeedu-data/trunk/kdeedu-data.install)
Deleted:
  kdeedu-data/repos/extra-any/PKGBUILD
  kdeedu-data/repos/extra-any/kdeedu-data.install

-+
 PKGBUILD|   68 +-
 kdeedu-data.install |   24 -
 2 files changed, 46 insertions(+), 46 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-01-12 07:30:51 UTC (rev 257960)
+++ PKGBUILD2016-01-12 07:31:10 UTC (rev 257961)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdeedu-data
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Common data for KDE Edu applications"
-url="http://kde.org/applications/education;
-arch=('any')
-license=('GPL' 'LGPL' 'FDL')
-depends=('hicolor-icon-theme')
-makedepends=('extra-cmake-modules')
-conflicts=('libkdeedu<14')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/$pkgname-${pkgver}.tar.xz;)
-sha1sums=('f95bddd3b2144a7c1228619f9b1628abdfed24be')
-install=$pkgname.install
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kdeedu-data/repos/extra-any/PKGBUILD (from rev 257960, 
kdeedu-data/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-01-12 07:31:10 UTC (rev 257961)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeedu-data
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Common data for KDE Edu applications"
+url="http://kde.org/applications/education;
+arch=('any')
+license=('GPL' 'LGPL' 'FDL')
+depends=('hicolor-icon-theme')
+makedepends=('extra-cmake-modules')
+conflicts=('libkdeedu<14')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$pkgname-${pkgver}.tar.xz;)
+sha1sums=('e17223f8361b74a89d0de38b277c4ada6a0aee7a')
+install=$pkgname.install
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: kdeedu-data.install
===
--- kdeedu-data.install 2016-01-12 07:30:51 UTC (rev 257960)
+++ kdeedu-data.install 2016-01-12 07:31:10 UTC (rev 257961)
@@ -1,12 +0,0 @@
-post_install() {
-xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: kdeedu-data/repos/extra-any/kdeedu-data.install (from rev 257960, 
kdeedu-data/trunk/kdeedu-data.install)
===
--- kdeedu-data.install (rev 0)
+++ kdeedu-data.install 2016-01-12 07:31:10 UTC (rev 257961)
@@ -0,0 +1,12 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}


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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:33:22
  Author: arojas
Revision: 257968

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

Added:
  libkcddb/repos/extra-i686/PKGBUILD
(from rev 257967, libkcddb/trunk/PKGBUILD)
  libkcddb/repos/extra-x86_64/PKGBUILD
(from rev 257967, libkcddb/trunk/PKGBUILD)
Deleted:
  libkcddb/repos/extra-i686/PKGBUILD
  libkcddb/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:33:02 UTC (rev 257967)
+++ extra-i686/PKGBUILD 2016-01-12 07:33:22 UTC (rev 257968)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkcddb
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="KDE CDDB library"
-url='https://projects.kde.org/projects/kde/kdemultimedia/libkcddb'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs' 'libmusicbrainz5')
-makedepends=('cmake' 'automoc4')
-replaces=('kdemultimedia-kioslave')
-conflicts=('kdemultimedia-kioslave')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('8266083b54c3b1ed94529799a1d90573b418356f')
-
-build() {
-  cd "${srcdir}"
-  mkdir -p build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: libkcddb/repos/extra-i686/PKGBUILD (from rev 257967, 
libkcddb/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:33:22 UTC (rev 257968)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkcddb
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="KDE CDDB library"
+url='https://projects.kde.org/projects/kde/kdemultimedia/libkcddb'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs' 'libmusicbrainz5')
+makedepends=('cmake' 'automoc4')
+replaces=('kdemultimedia-kioslave')
+conflicts=('kdemultimedia-kioslave')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('5a257fa604f9ace9a3e8f4442740bab33a58fe18')
+
+build() {
+  cd "${srcdir}"
+  mkdir -p build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:33:02 UTC (rev 257967)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:33:22 UTC (rev 257968)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkcddb
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="KDE CDDB library"
-url='https://projects.kde.org/projects/kde/kdemultimedia/libkcddb'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs' 'libmusicbrainz5')
-makedepends=('cmake' 'automoc4')
-replaces=('kdemultimedia-kioslave')
-conflicts=('kdemultimedia-kioslave')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('8266083b54c3b1ed94529799a1d90573b418356f')
-
-build() {
-  cd "${srcdir}"
-  mkdir -p build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: libkcddb/repos/extra-x86_64/PKGBUILD (from rev 257967, 
libkcddb/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:33:22 UTC (rev 257968)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkcddb
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="KDE CDDB library"
+url='https://projects.kde.org/projects/kde/kdemultimedia/libkcddb'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs' 'libmusicbrainz5')
+makedepends=('cmake' 'automoc4')
+replaces=('kdemultimedia-kioslave')
+conflicts=('kdemultimedia-kioslave')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:33:02
  Author: arojas
Revision: 257967

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

Added:
  libkeduvocdocument/repos/extra-i686/PKGBUILD
(from rev 257966, libkeduvocdocument/trunk/PKGBUILD)
  libkeduvocdocument/repos/extra-x86_64/PKGBUILD
(from rev 257966, libkeduvocdocument/trunk/PKGBUILD)
Deleted:
  libkeduvocdocument/repos/extra-i686/PKGBUILD
  libkeduvocdocument/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:32:43 UTC (rev 257966)
+++ extra-i686/PKGBUILD 2016-01-12 07:33:02 UTC (rev 257967)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkeduvocdocument
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Common libraries for KDE Edu applications"
-url="http://kde.org/applications/education;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kio' 'kdeedu-data')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/$pkgname-${pkgver}.tar.xz;)
-sha1sums=('2256748b9ce89ae48f6c4551350f519bb0d26ce8')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: libkeduvocdocument/repos/extra-i686/PKGBUILD (from rev 257966, 
libkeduvocdocument/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:33:02 UTC (rev 257967)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkeduvocdocument
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Common libraries for KDE Edu applications"
+url="http://kde.org/applications/education;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kio' 'kdeedu-data')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$pkgname-${pkgver}.tar.xz;)
+sha1sums=('24eb52754358798c33e80202f30854bdbbc15f39')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:32:43 UTC (rev 257966)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:33:02 UTC (rev 257967)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkeduvocdocument
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Common libraries for KDE Edu applications"
-url="http://kde.org/applications/education;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kio' 'kdeedu-data')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/$pkgname-${pkgver}.tar.xz;)
-sha1sums=('2256748b9ce89ae48f6c4551350f519bb0d26ce8')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: libkeduvocdocument/repos/extra-x86_64/PKGBUILD (from rev 257966, 
libkeduvocdocument/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:33:02 UTC (rev 257967)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkeduvocdocument
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Common libraries for KDE Edu applications"
+url="http://kde.org/applications/education;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kio' 'kdeedu-data')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$pkgname-${pkgver}.tar.xz;)
+sha1sums=('24eb52754358798c33e80202f30854bdbbc15f39')
+
+prepare() {
+  mkdir -p build
+}

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

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

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

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

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

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

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

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:34:00
  Author: arojas
Revision: 257970

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

Added:
  libkdegames/repos/extra-i686/PKGBUILD
(from rev 257969, libkdegames/trunk/PKGBUILD)
  libkdegames/repos/extra-x86_64/PKGBUILD
(from rev 257969, libkdegames/trunk/PKGBUILD)
Deleted:
  libkdegames/repos/extra-i686/PKGBUILD
  libkdegames/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:33:40 UTC (rev 257969)
+++ extra-i686/PKGBUILD 2016-01-12 07:34:00 UTC (rev 257970)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkdegames
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Common code and data for many KDE games"
-url="https://projects.kde.org/projects/kde/kdegames/libkdegames;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs4support' 'kdeclarative' 'kdnssd' 'knewstuff' 'openal')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('d0cd66a7363d5f0ddf013863ed5f97897c03eae2')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: libkdegames/repos/extra-i686/PKGBUILD (from rev 257969, 
libkdegames/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:34:00 UTC (rev 257970)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkdegames
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Common code and data for many KDE games"
+url="https://projects.kde.org/projects/kde/kdegames/libkdegames;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs4support' 'kdeclarative' 'kdnssd' 'knewstuff' 'openal')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('56b7a590b24f393ca9a653001e04bc79742456bd')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:33:40 UTC (rev 257969)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:34:00 UTC (rev 257970)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkdegames
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Common code and data for many KDE games"
-url="https://projects.kde.org/projects/kde/kdegames/libkdegames;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs4support' 'kdeclarative' 'kdnssd' 'knewstuff' 'openal')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('d0cd66a7363d5f0ddf013863ed5f97897c03eae2')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: libkdegames/repos/extra-x86_64/PKGBUILD (from rev 257969, 
libkdegames/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:34:00 UTC (rev 257970)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkdegames
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Common code and data for many KDE games"
+url="https://projects.kde.org/projects/kde/kdegames/libkdegames;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs4support' 'kdeclarative' 

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:33:40
  Author: arojas
Revision: 257969

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

Added:
  libkcompactdisc/repos/extra-i686/PKGBUILD
(from rev 257968, libkcompactdisc/trunk/PKGBUILD)
  libkcompactdisc/repos/extra-x86_64/PKGBUILD
(from rev 257968, libkcompactdisc/trunk/PKGBUILD)
Deleted:
  libkcompactdisc/repos/extra-i686/PKGBUILD
  libkcompactdisc/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:33:22 UTC (rev 257968)
+++ extra-i686/PKGBUILD 2016-01-12 07:33:40 UTC (rev 257969)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkcompactdisc
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A library for interfacing with CDs"
-url='https://projects.kde.org/projects/kde/kdemultimedia/libkcompactdisc'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs')
-makedepends=('cmake' 'automoc4')
-replaces=('kdemultimedia-kioslave')
-conflicts=('kdemultimedia-kioslave')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('69fe8b3b6c64edd904eaec6d8361627cbfbe')
-
-build() {
-  cd "${srcdir}"
-  mkdir -p build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: libkcompactdisc/repos/extra-i686/PKGBUILD (from rev 257968, 
libkcompactdisc/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:33:40 UTC (rev 257969)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkcompactdisc
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A library for interfacing with CDs"
+url='https://projects.kde.org/projects/kde/kdemultimedia/libkcompactdisc'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+replaces=('kdemultimedia-kioslave')
+conflicts=('kdemultimedia-kioslave')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('c1e58de2d8c48e6eb4c205a7a29e45d099a21cc6')
+
+build() {
+  cd "${srcdir}"
+  mkdir -p build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:33:22 UTC (rev 257968)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:33:40 UTC (rev 257969)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkcompactdisc
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A library for interfacing with CDs"
-url='https://projects.kde.org/projects/kde/kdemultimedia/libkcompactdisc'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs')
-makedepends=('cmake' 'automoc4')
-replaces=('kdemultimedia-kioslave')
-conflicts=('kdemultimedia-kioslave')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('69fe8b3b6c64edd904eaec6d8361627cbfbe')
-
-build() {
-  cd "${srcdir}"
-  mkdir -p build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: libkcompactdisc/repos/extra-x86_64/PKGBUILD (from rev 257968, 
libkcompactdisc/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:33:40 UTC (rev 257969)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkcompactdisc
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A library for interfacing with CDs"
+url='https://projects.kde.org/projects/kde/kdemultimedia/libkcompactdisc'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+replaces=('kdemultimedia-kioslave')

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:32:25
  Author: arojas
Revision: 257965

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

Added:
  libksane/repos/extra-i686/PKGBUILD
(from rev 257964, libksane/trunk/PKGBUILD)
  libksane/repos/extra-i686/libksane.install
(from rev 257964, libksane/trunk/libksane.install)
  libksane/repos/extra-x86_64/PKGBUILD
(from rev 257964, libksane/trunk/PKGBUILD)
  libksane/repos/extra-x86_64/libksane.install
(from rev 257964, libksane/trunk/libksane.install)
Deleted:
  libksane/repos/extra-i686/PKGBUILD
  libksane/repos/extra-i686/libksane.install
  libksane/repos/extra-x86_64/PKGBUILD
  libksane/repos/extra-x86_64/libksane.install

---+
 /PKGBUILD |   74 
 /libksane.install |   22 +++
 extra-i686/PKGBUILD   |   37 
 extra-i686/libksane.install   |   11 -
 extra-x86_64/PKGBUILD |   37 
 extra-x86_64/libksane.install |   11 -
 6 files changed, 96 insertions(+), 96 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:32:07 UTC (rev 257964)
+++ extra-i686/PKGBUILD 2016-01-12 07:32:25 UTC (rev 257965)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=libksane
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="An image scanning library"
-url="https://projects.kde.org/projects/kde/kdegraphics/libs/libksane;
-arch=(i686 x86_64)
-license=(GPL LGPL FDL)
-depends=(ktextwidgets kwallet sane)
-makedepends=(extra-cmake-modules)
-install=$pkgname.install
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-sha1sums=('0c69697a66d6d0908d3822ecebedb08c2c424942')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: libksane/repos/extra-i686/PKGBUILD (from rev 257964, 
libksane/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:32:25 UTC (rev 257965)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=libksane
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="An image scanning library"
+url="https://projects.kde.org/projects/kde/kdegraphics/libs/libksane;
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+depends=(ktextwidgets kwallet sane)
+makedepends=(extra-cmake-modules)
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('0215146b6955e0d3ac08f84d50a99c42bdf9cea1')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/libksane.install
===
--- extra-i686/libksane.install 2016-01-12 07:32:07 UTC (rev 257964)
+++ extra-i686/libksane.install 2016-01-12 07:32:25 UTC (rev 257965)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: libksane/repos/extra-i686/libksane.install (from rev 257964, 
libksane/trunk/libksane.install)
===
--- extra-i686/libksane.install (rev 0)
+++ extra-i686/libksane.install 2016-01-12 07:32:25 UTC (rev 257965)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:32:07 UTC (rev 257964)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:32:25 UTC (rev 257965)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=libksane
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="An image scanning library"

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:46:56
  Author: arojas
Revision: 258010

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

Added:
  kate/repos/extra-i686/PKGBUILD
(from rev 258009, kate/trunk/PKGBUILD)
  kate/repos/extra-i686/kate.install
(from rev 258009, kate/trunk/kate.install)
  kate/repos/extra-i686/kwrite.install
(from rev 258009, kate/trunk/kwrite.install)
  kate/repos/extra-x86_64/PKGBUILD
(from rev 258009, kate/trunk/PKGBUILD)
  kate/repos/extra-x86_64/kate.install
(from rev 258009, kate/trunk/kate.install)
  kate/repos/extra-x86_64/kwrite.install
(from rev 258009, kate/trunk/kwrite.install)
Deleted:
  kate/repos/extra-i686/PKGBUILD
  kate/repos/extra-i686/kate.install
  kate/repos/extra-i686/kwrite.install
  kate/repos/extra-x86_64/PKGBUILD
  kate/repos/extra-x86_64/kate.install
  kate/repos/extra-x86_64/kwrite.install

-+
 /PKGBUILD   |  140 ++
 /kate.install   |   26 +++
 /kwrite.install |   24 +++
 extra-i686/PKGBUILD |   70 -
 extra-i686/kate.install |   13 ---
 extra-i686/kwrite.install   |   12 ---
 extra-x86_64/PKGBUILD   |   70 -
 extra-x86_64/kate.install   |   13 ---
 extra-x86_64/kwrite.install |   12 ---
 9 files changed, 190 insertions(+), 190 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:46:34 UTC (rev 258009)
+++ extra-i686/PKGBUILD 2016-01-12 07:46:56 UTC (rev 258010)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgbase=kate
-pkgname=('kwrite'
- 'kate')
-pkgver=15.12.0
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'plasma-framework' 
'knewstuff' 'ktexteditor'
- 'threadweaver' 'kitemmodels' 'kactivities')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;)
-sha1sums=('1036e78967774d3120e75a53a92e02b2cec3a928')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgbase}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DSYSCONF_INSTALL_DIR=/etc \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package_kwrite() {
-  pkgdesc="Text Editor"
-  groups=('kde-applications' 'kdebase')
-  url="http://www.kde.org/applications/utilities/kwrite/;
-  depends=('ktexteditor' 'kded' 'kactivities' 'hicolor-icon-theme')
-  install='kwrite.install'
-  replaces=('kdebase-kwrite')
-  conflicts=('kdebase-kwrite')
-  provides=('kdebase-kwrite')
-
-  cd build/kwrite
-  make DESTDIR="${pkgdir}" install
-
-  cd ../../build/doc/kwrite
-  make DESTDIR="${pkgdir}" install
-}
-
-package_kate() {
-  pkgdesc="Advanced Text Editor"
-  groups=('kde-applications' 'kdebase')
-  url="http://www.kde.org/applications/utilities/kate/;
-  depends=('knewstuff' 'ktexteditor' 'threadweaver' 'kded' 'kitemmodels' 
'kactivities' 'hicolor-icon-theme')
-  install='kate.install'
-  replaces=('kdesdk-kate')
-  conflicts=('kdesdk-kate')
-  provides=('kdesdk-kate')
-  optdepends=('konsole: open a terminal in Kate')
-
-  cd build/kate
-  make DESTDIR="${pkgdir}" install
-
-  cd ../../build/doc/kate
-  make DESTDIR="${pkgdir}" install
-
-  cd ../../../build/addons
-  make DESTDIR="${pkgdir}" install
-}

Copied: kate/repos/extra-i686/PKGBUILD (from rev 258009, kate/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:46:56 UTC (rev 258010)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgbase=kate
+pkgname=('kwrite'
+ 'kate')
+pkgver=15.12.1
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'plasma-framework' 
'knewstuff' 'ktexteditor'
+ 'threadweaver' 'kitemmodels' 'kactivities')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;)
+sha1sums=('f2bedbdb948bfcdd739c9df792286d5a5780a1ef')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgbase}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DSYSCONF_INSTALL_DIR=/etc \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package_kwrite() {
+  pkgdesc="Text Editor"
+  groups=('kde-applications' 'kdebase')
+  

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:47:19
  Author: arojas
Revision: 258011

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

Added:
  konsole/repos/extra-i686/PKGBUILD
(from rev 258010, konsole/trunk/PKGBUILD)
  konsole/repos/extra-x86_64/PKGBUILD
(from rev 258010, konsole/trunk/PKGBUILD)
Deleted:
  konsole/repos/extra-i686/PKGBUILD
  konsole/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:46:56 UTC (rev 258010)
+++ extra-i686/PKGBUILD 2016-01-12 07:47:19 UTC (rev 258011)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=konsole
-pkgver=15.12.0
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://kde.org/applications/system/konsole/'
-pkgdesc="Terminal"
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdebase')
-depends=('kdelibs4support' 'knotifyconfig' 'kpty')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-replaces=('kdebase-konsole')
-conflicts=('kdebase-konsole<4.14.3-2')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/konsole-${pkgver}.tar.xz;)
-sha1sums=('56bcfda7fb33b957c75e96efa8b48318e3799a89')
-
-build() {
-  cd "${srcdir}"
-  mkdir -p build
-  cd build
-  cmake ../konsole-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: konsole/repos/extra-i686/PKGBUILD (from rev 258010, 
konsole/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:47:19 UTC (rev 258011)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=konsole
+pkgver=15.12.1
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://kde.org/applications/system/konsole/'
+pkgdesc="Terminal"
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdebase')
+depends=('kdelibs4support' 'knotifyconfig' 'kpty')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+replaces=('kdebase-konsole')
+conflicts=('kdebase-konsole<4.14.3-2')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/konsole-${pkgver}.tar.xz;)
+sha1sums=('eee38414c1be56b8513d894ebb5f50edb7e2c06a')
+
+build() {
+  cd "${srcdir}"
+  mkdir -p build
+  cd build
+  cmake ../konsole-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:46:56 UTC (rev 258010)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:47:19 UTC (rev 258011)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=konsole
-pkgver=15.12.0
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://kde.org/applications/system/konsole/'
-pkgdesc="Terminal"
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdebase')
-depends=('kdelibs4support' 'knotifyconfig' 'kpty')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-replaces=('kdebase-konsole')
-conflicts=('kdebase-konsole<4.14.3-2')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/konsole-${pkgver}.tar.xz;)
-sha1sums=('56bcfda7fb33b957c75e96efa8b48318e3799a89')
-
-build() {
-  cd "${srcdir}"
-  mkdir -p build
-  cd build
-  cmake ../konsole-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: konsole/repos/extra-x86_64/PKGBUILD (from rev 258010, 
konsole/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:47:19 UTC (rev 258011)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=konsole
+pkgver=15.12.1
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://kde.org/applications/system/konsole/'

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:45:59
  Author: arojas
Revision: 258007

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

Added:
  ksystemlog/repos/extra-i686/PKGBUILD
(from rev 258006, ksystemlog/trunk/PKGBUILD)
  ksystemlog/repos/extra-x86_64/PKGBUILD
(from rev 258006, ksystemlog/trunk/PKGBUILD)
Deleted:
  ksystemlog/repos/extra-i686/PKGBUILD
  ksystemlog/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:45:40 UTC (rev 258006)
+++ extra-i686/PKGBUILD 2016-01-12 07:45:59 UTC (rev 258007)
@@ -1,38 +0,0 @@
-# $Id: PKGBUILD 250288 2015-11-09 21:13:39Z arojas $
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=ksystemlog
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='System log viewer tool'
-url='http://kde.org/applications/system/ksystemlog/'
-arch=(i686 x86_64)
-license=(GPL LGPL FDL)
-groups=(kde-applications kdeadmin)
-depends=(kio)
-makedepends=(extra-cmake-modules kdoctools)
-conflicts=(kdeadmin-ksystemlog)
-replaces=(kdeadmin-ksystemlog)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-sha1sums=('c3e0c804f94d8f82ee3ccb693a71673ad6006223')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: ksystemlog/repos/extra-i686/PKGBUILD (from rev 258006, 
ksystemlog/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:45:59 UTC (rev 258007)
@@ -0,0 +1,38 @@
+# $Id: PKGBUILD 250288 2015-11-09 21:13:39Z arojas $
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=ksystemlog
+pkgver=15.12.1
+pkgrel=1
+pkgdesc='System log viewer tool'
+url='http://kde.org/applications/system/ksystemlog/'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdeadmin)
+depends=(kio)
+makedepends=(extra-cmake-modules kdoctools)
+conflicts=(kdeadmin-ksystemlog)
+replaces=(kdeadmin-ksystemlog)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('fe49b6a1fde7351ebd43dfcc830264b5781cb278')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:45:40 UTC (rev 258006)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:45:59 UTC (rev 258007)
@@ -1,38 +0,0 @@
-# $Id: PKGBUILD 250288 2015-11-09 21:13:39Z arojas $
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=ksystemlog
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='System log viewer tool'
-url='http://kde.org/applications/system/ksystemlog/'
-arch=(i686 x86_64)
-license=(GPL LGPL FDL)
-groups=(kde-applications kdeadmin)
-depends=(kio)
-makedepends=(extra-cmake-modules kdoctools)
-conflicts=(kdeadmin-ksystemlog)
-replaces=(kdeadmin-ksystemlog)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-sha1sums=('c3e0c804f94d8f82ee3ccb693a71673ad6006223')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: ksystemlog/repos/extra-x86_64/PKGBUILD (from rev 258006, 
ksystemlog/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:45:59 UTC (rev 258007)
@@ -0,0 +1,38 @@
+# $Id: PKGBUILD 250288 2015-11-09 21:13:39Z arojas $
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 

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

2016-01-11 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:46:17
  Author: arojas
Revision: 258008

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

Added:
  kdeadmin-kuser/repos/extra-i686/PKGBUILD
(from rev 258007, kdeadmin-kuser/trunk/PKGBUILD)
  kdeadmin-kuser/repos/extra-i686/kdeadmin-kuser.install
(from rev 258007, kdeadmin-kuser/trunk/kdeadmin-kuser.install)
  kdeadmin-kuser/repos/extra-x86_64/PKGBUILD
(from rev 258007, kdeadmin-kuser/trunk/PKGBUILD)
  kdeadmin-kuser/repos/extra-x86_64/kdeadmin-kuser.install
(from rev 258007, kdeadmin-kuser/trunk/kdeadmin-kuser.install)
Deleted:
  kdeadmin-kuser/repos/extra-i686/PKGBUILD
  kdeadmin-kuser/repos/extra-i686/kdeadmin-kuser.install
  kdeadmin-kuser/repos/extra-x86_64/PKGBUILD
  kdeadmin-kuser/repos/extra-x86_64/kdeadmin-kuser.install

-+
 /PKGBUILD   |   70 ++
 /kdeadmin-kuser.install |   22 ++
 extra-i686/PKGBUILD |   35 -
 extra-i686/kdeadmin-kuser.install   |   11 -
 extra-x86_64/PKGBUILD   |   35 -
 extra-x86_64/kdeadmin-kuser.install |   11 -
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:45:59 UTC (rev 258007)
+++ extra-i686/PKGBUILD 2016-01-12 07:46:17 UTC (rev 258008)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdeadmin-kuser
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='User Manager'
-url='http://kde.org/applications/system/kuser/'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeadmin')
-depends=('kdebase-runtime' 'kdepimlibs4')
-makedepends=('cmake' 'automoc4')
-install=${pkgname}.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kuser-${pkgver}.tar.xz;)
-sha1sums=('f51eecb3e376521129af914154d6347a9fc3323f')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kuser-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: kdeadmin-kuser/repos/extra-i686/PKGBUILD (from rev 258007, 
kdeadmin-kuser/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:46:17 UTC (rev 258008)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeadmin-kuser
+pkgver=15.12.1
+pkgrel=1
+pkgdesc='User Manager'
+url='http://kde.org/applications/system/kuser/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeadmin')
+depends=('kdebase-runtime' 'kdepimlibs4')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kuser-${pkgver}.tar.xz;)
+sha1sums=('43a8d667e0752ba9244f14470c5e05ee184ad58a')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kuser-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/kdeadmin-kuser.install
===
--- extra-i686/kdeadmin-kuser.install   2016-01-12 07:45:59 UTC (rev 258007)
+++ extra-i686/kdeadmin-kuser.install   2016-01-12 07:46:17 UTC (rev 258008)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdeadmin-kuser/repos/extra-i686/kdeadmin-kuser.install (from rev 
258007, kdeadmin-kuser/trunk/kdeadmin-kuser.install)
===
--- extra-i686/kdeadmin-kuser.install   (rev 0)
+++ extra-i686/kdeadmin-kuser.install   2016-01-12 07:46:17 UTC (rev 258008)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:45:59 UTC (rev 258007)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:46:17 UTC (rev 258008)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdeadmin-kuser
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='User Manager'
-url='http://kde.org/applications/system/kuser/'
-arch=('i686' 

  1   2   >