[arch-commits] Commit in graphviz/trunk (4 files)

2014-02-04 Thread Gaetan Bisson
Date: Tuesday, February 4, 2014 @ 11:17:51
  Author: bisson
Revision: 205064

upstream update, implement FS#38772

Modified:
  graphviz/trunk/PKGBUILD
Deleted:
  graphviz/trunk/dotty.patch
  graphviz/trunk/yyerror0.patch
  graphviz/trunk/yyerror1.patch

+
 PKGBUILD   |   30 --
 dotty.patch|   21 -
 yyerror0.patch |   53 -
 yyerror1.patch |   26 --
 4 files changed, 8 insertions(+), 122 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 00:48:48 UTC (rev 205063)
+++ PKGBUILD2014-02-04 10:17:51 UTC (rev 205064)
@@ -4,14 +4,14 @@
 # Contributor: John Proctor jproc...@prium.net
 
 pkgname=graphviz
-pkgver=2.34.0
-pkgrel=3
+pkgver=2.36.0
+pkgrel=1
 pkgdesc='Graph visualization software'
 url='http://www.graphviz.org/'
 license=('CPL')
 arch=('i686' 'x86_64')
 depends=('libltdl' 'gd' 'librsvg' 'libxaw' 'ghostscript' 'pango' 'gts')
-makedepends=('swig' 'mono' 'guile' 'lua51' 'ocaml' 'perl' 'php' 'python2' 'r' 
'tk' 'qt4')
+makedepends=('swig' 'mono' 'guile' 'lua51' 'ocaml' 'perl' 'php' 'python2' 'r' 
'tk' 'qt4' 'gtk2')
 optdepends=('mono: sharp bindings'
 'guile: guile bindings'
 'lua51: lua bindings'
@@ -21,30 +21,16 @@
 'python2: python bindings'
 'r: r bindings'
 'tcl: tcl bindings'
-'qt4: gvedit')
-source=(${url}/pub/${pkgname}/stable/SOURCES/${pkgname}-${pkgver}.tar.gz
-'yyerror0.patch'
-'yyerror1.patch'
-'dotty.patch')
-sha1sums=('5a0c00bebe7f4c7a04523db21f40966dc9f0d441'
-  '7a6fe4f532974d9ca173b1aba9927bdeb5f80be9'
-  '6d76a230ee6c11bcd610ebe56f98e96ecef6217d'
-  '31bc9f505c8b6470289a0d6ec31c237765cba239')
+'qt4: gvedit'
+'gtk2: gtk output plugin')
+source=(${url}/pub/${pkgname}/stable/SOURCES/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('a41e9f1cbcc9a24651e14dd15a4cda3d912d7d19')
 
 install=install
 
-prepare() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   patch -p1 -i ../yyerror0.patch
-   patch -p1 -i ../yyerror1.patch
-   patch -p1 -i ../dotty.patch
-   sed \
-   -e '/LIBPOSTFIX=64/d' \
-   -i configure
-}
-
 build() {
cd ${srcdir}/${pkgname}-${pkgver}
+   export LIBPOSTFIX=/
export PYTHON=python2
export LUA=lua5.1
 

Deleted: dotty.patch
===
--- dotty.patch 2014-02-04 00:48:48 UTC (rev 205063)
+++ dotty.patch 2014-02-04 10:17:51 UTC (rev 205064)
@@ -1,21 +0,0 @@
-diff -Naur old/cmd/dotty/dotty_layout.lefty new/cmd/dotty/dotty_layout.lefty
 old/cmd/dotty/dotty_layout.lefty   2013-09-06 15:07:52.0 -1000
-+++ new/cmd/dotty/dotty_layout.lefty   2013-10-22 15:23:50.153028328 -1000
-@@ -5,7 +5,7 @@
- local fd;
- 
- if (~dotty.lservers[lserver] | tablesize (dotty.lservers[lserver]) == 0) {
--if (~((fd = openio ('pipe', lserver, 'r+', '%e -Txdot')) = 0)) {
-+if (~((fd = openio ('pipe', lserver, 'r+', '%e -Txdot1.2')) = 0)) {
- dotty.message (0, concat ('cannot start ', lserver));
- return null;
- }
-@@ -438,6 +438,8 @@
- }
- } else if (t[i] == 'I') {
- i = i + 7;
-+} else if (t[i] == 't') {
-+i = i + 2;
- } else {
- dotty.message (0, concat ('draw language parser error: ', t[i]));
- return null;

Deleted: yyerror0.patch
===
--- yyerror0.patch  2014-02-04 00:48:48 UTC (rev 205063)
+++ yyerror0.patch  2014-02-04 10:17:51 UTC (rev 205064)
@@ -1,53 +0,0 @@
-From 7aaddf52cd98589fb0c3ab72a393f8411838438a Mon Sep 17 00:00:00 2001
-From: Emden R. Gansner e...@alum.mit.edu
-Date: Fri, 4 Oct 2013 09:06:39 -0400
-Subject: [PATCH] Fix buffer overflow problem when reporting a syntax error
- with a very long input line
-

- lib/cgraph/scan.l | 21 +++--
- 1 file changed, 15 insertions(+), 6 deletions(-)
-
-diff --git a/lib/cgraph/scan.l b/lib/cgraph/scan.l
-index 3cfde0f..2efd203 100644
 a/lib/cgraph/scan.l
-+++ b/lib/cgraph/scan.l
-@@ -16,6 +16,7 @@
- %{
- #include grammar.h
- #include cghdr.h
-+#include agxbuf.h
- #include ctype.h
- #define GRAPH_EOF_TOKEN   '@' /* lex class must be 
defined below */
-   /* this is a workaround for linux flex */
-@@ -191,13 +192,21 @@ ID   ({NAME}|{NUMBER})
- %%
- void yyerror(char *str)
- {
-+  unsigned char   xbuf[BUFSIZ];
-   charbuf[BUFSIZ];
--  if (InputFile)
--  sprintf(buf,%s:%d: %s in line %d near '%s'\n,InputFile, 
line_num,
--  str,line_num,yytext);
--  else
--  sprintf(buf, %s in line %d near '%s'\n, str,line_num,yytext);
--  

[arch-commits] Commit in graphviz/repos (14 files)

2014-02-04 Thread Gaetan Bisson
Date: Tuesday, February 4, 2014 @ 11:18:23
  Author: bisson
Revision: 205065

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

Added:
  graphviz/repos/extra-i686/PKGBUILD
(from rev 205064, graphviz/trunk/PKGBUILD)
  graphviz/repos/extra-i686/install
(from rev 205064, graphviz/trunk/install)
  graphviz/repos/extra-x86_64/PKGBUILD
(from rev 205064, graphviz/trunk/PKGBUILD)
  graphviz/repos/extra-x86_64/install
(from rev 205064, graphviz/trunk/install)
Deleted:
  graphviz/repos/extra-i686/PKGBUILD
  graphviz/repos/extra-i686/dotty.patch
  graphviz/repos/extra-i686/install
  graphviz/repos/extra-i686/yyerror0.patch
  graphviz/repos/extra-i686/yyerror1.patch
  graphviz/repos/extra-x86_64/PKGBUILD
  graphviz/repos/extra-x86_64/dotty.patch
  graphviz/repos/extra-x86_64/install
  graphviz/repos/extra-x86_64/yyerror0.patch
  graphviz/repos/extra-x86_64/yyerror1.patch

-+
 /PKGBUILD   |   88 ++
 /install|   24 +++
 extra-i686/PKGBUILD |   58 ---
 extra-i686/dotty.patch  |   21 --
 extra-i686/install  |   12 -
 extra-i686/yyerror0.patch   |   53 -
 extra-i686/yyerror1.patch   |   26 
 extra-x86_64/PKGBUILD   |   58 ---
 extra-x86_64/dotty.patch|   21 --
 extra-x86_64/install|   12 -
 extra-x86_64/yyerror0.patch |   53 -
 extra-x86_64/yyerror1.patch |   26 
 12 files changed, 112 insertions(+), 340 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-02-04 10:17:51 UTC (rev 205064)
+++ extra-i686/PKGBUILD 2014-02-04 10:18:23 UTC (rev 205065)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: kevin ke...@archlinux.org
-# Contributor: John Proctor jproc...@prium.net
-
-pkgname=graphviz
-pkgver=2.34.0
-pkgrel=3
-pkgdesc='Graph visualization software'
-url='http://www.graphviz.org/'
-license=('CPL')
-arch=('i686' 'x86_64')
-depends=('libltdl' 'gd' 'librsvg' 'libxaw' 'ghostscript' 'pango' 'gts')
-makedepends=('swig' 'mono' 'guile' 'lua51' 'ocaml' 'perl' 'php' 'python2' 'r' 
'tk' 'qt4')
-optdepends=('mono: sharp bindings'
-'guile: guile bindings'
-'lua51: lua bindings'
-'ocaml: ocaml bindings'
-'perl: perl bindings'
-'php: php bindings'
-'python2: python bindings'
-'r: r bindings'
-'tcl: tcl bindings'
-'qt4: gvedit')
-source=(${url}/pub/${pkgname}/stable/SOURCES/${pkgname}-${pkgver}.tar.gz
-'yyerror0.patch'
-'yyerror1.patch'
-'dotty.patch')
-sha1sums=('5a0c00bebe7f4c7a04523db21f40966dc9f0d441'
-  '7a6fe4f532974d9ca173b1aba9927bdeb5f80be9'
-  '6d76a230ee6c11bcd610ebe56f98e96ecef6217d'
-  '31bc9f505c8b6470289a0d6ec31c237765cba239')
-
-install=install
-
-prepare() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   patch -p1 -i ../yyerror0.patch
-   patch -p1 -i ../yyerror1.patch
-   patch -p1 -i ../dotty.patch
-   sed \
-   -e '/LIBPOSTFIX=64/d' \
-   -i configure
-}
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   export PYTHON=python2
-   export LUA=lua5.1
-
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-}

Copied: graphviz/repos/extra-i686/PKGBUILD (from rev 205064, 
graphviz/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-02-04 10:18:23 UTC (rev 205065)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: kevin ke...@archlinux.org
+# Contributor: John Proctor jproc...@prium.net
+
+pkgname=graphviz
+pkgver=2.36.0
+pkgrel=1
+pkgdesc='Graph visualization software'
+url='http://www.graphviz.org/'
+license=('CPL')
+arch=('i686' 'x86_64')
+depends=('libltdl' 'gd' 'librsvg' 'libxaw' 'ghostscript' 'pango' 'gts')
+makedepends=('swig' 'mono' 'guile' 'lua51' 'ocaml' 'perl' 'php' 'python2' 'r' 
'tk' 'qt4' 'gtk2')
+optdepends=('mono: sharp bindings'
+'guile: guile bindings'
+'lua51: lua bindings'
+'ocaml: ocaml bindings'
+'perl: perl bindings'
+'php: php bindings'
+'python2: python bindings'
+'r: r bindings'
+'tcl: tcl bindings'
+'qt4: gvedit'
+'gtk2: gtk output plugin')
+source=(${url}/pub/${pkgname}/stable/SOURCES/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('a41e9f1cbcc9a24651e14dd15a4cda3d912d7d19')
+
+install=install
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   export LIBPOSTFIX=/
+   export 

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

2014-02-04 Thread Jan de Groot
Date: Tuesday, February 4, 2014 @ 11:50:48
  Author: jgc
Revision: 205066

upgpkg: nspr 4.10.3-1

Modified:
  nspr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 10:18:23 UTC (rev 205065)
+++ PKGBUILD2014-02-04 10:50:48 UTC (rev 205066)
@@ -3,7 +3,7 @@
 # Contributor: Alexander Baldeck alexan...@archlinux.org
 
 pkgname=nspr
-pkgver=4.10.2
+pkgver=4.10.3
 pkgrel=1
 pkgdesc=Netscape Portable Runtime
 arch=(i686 x86_64)
@@ -13,8 +13,8 @@
 makedepends=('zip')
 options=('!emptydirs')
 
source=(ftp://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${pkgver}/src/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('650e4aa35d58624bc1083ed585c81c4af09cf23c')
-md5sums=('f0d254da0b2b870d9a5fa094e879d4b8')
+sha1sums=('afcb28ed2b159cb059141bdf5f2e001374a845cf')
+md5sums=('bf298e874cf454a3c2f8fe7e671c5d2e')
 
 build() {
   cd $pkgname-$pkgver



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

2014-02-04 Thread Jan de Groot
Date: Tuesday, February 4, 2014 @ 11:50:56
  Author: jgc
Revision: 205067

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-02-04 10:50:48 UTC (rev 205066)
+++ extra-i686/PKGBUILD 2014-02-04 10:50:56 UTC (rev 205067)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Alexander Baldeck alexan...@archlinux.org
-
-pkgname=nspr
-pkgver=4.10.2
-pkgrel=1
-pkgdesc=Netscape Portable Runtime
-arch=(i686 x86_64)
-url=http://www.mozilla.org/projects/nspr/;
-license=('MPL' 'GPL')
-depends=('glibc')
-makedepends=('zip')
-options=('!emptydirs')
-source=(ftp://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${pkgver}/src/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('650e4aa35d58624bc1083ed585c81c4af09cf23c')
-md5sums=('f0d254da0b2b870d9a5fa094e879d4b8')
-
-build() {
-  cd $pkgname-$pkgver
-
-  if [ $CARCH = x86_64 ]; then
-_confflags=--enable-64bit
-  else
-_confflags=
-  fi
-
-  ./nspr/configure \
-  --prefix=/usr \
-  --libdir=/usr/lib \
-  --includedir=/usr/include/nspr \
-  --enable-optimize \
-  --disable-debug ${_confflags}
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-
-  ln -s nspr.pc $pkgdir/usr/lib/pkgconfig/mozilla-nspr.pc
-  rm -r $pkgdir/usr/bin/{compile-et.pl,prerr.properties} \
- $pkgdir/usr/include/nspr/md
-}

Copied: nspr/repos/extra-i686/PKGBUILD (from rev 205066, nspr/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-02-04 10:50:56 UTC (rev 205067)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Alexander Baldeck alexan...@archlinux.org
+
+pkgname=nspr
+pkgver=4.10.3
+pkgrel=1
+pkgdesc=Netscape Portable Runtime
+arch=(i686 x86_64)
+url=http://www.mozilla.org/projects/nspr/;
+license=('MPL' 'GPL')
+depends=('glibc')
+makedepends=('zip')
+options=('!emptydirs')
+source=(ftp://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${pkgver}/src/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('afcb28ed2b159cb059141bdf5f2e001374a845cf')
+md5sums=('bf298e874cf454a3c2f8fe7e671c5d2e')
+
+build() {
+  cd $pkgname-$pkgver
+
+  if [ $CARCH = x86_64 ]; then
+_confflags=--enable-64bit
+  else
+_confflags=
+  fi
+
+  ./nspr/configure \
+  --prefix=/usr \
+  --libdir=/usr/lib \
+  --includedir=/usr/include/nspr \
+  --enable-optimize \
+  --disable-debug ${_confflags}
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  ln -s nspr.pc $pkgdir/usr/lib/pkgconfig/mozilla-nspr.pc
+  rm -r $pkgdir/usr/bin/{compile-et.pl,prerr.properties} \
+ $pkgdir/usr/include/nspr/md
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-02-04 10:50:48 UTC (rev 205066)
+++ extra-x86_64/PKGBUILD   2014-02-04 10:50:56 UTC (rev 205067)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Alexander Baldeck alexan...@archlinux.org
-
-pkgname=nspr
-pkgver=4.10.2
-pkgrel=1
-pkgdesc=Netscape Portable Runtime
-arch=(i686 x86_64)
-url=http://www.mozilla.org/projects/nspr/;
-license=('MPL' 'GPL')
-depends=('glibc')
-makedepends=('zip')
-options=('!emptydirs')
-source=(ftp://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${pkgver}/src/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('650e4aa35d58624bc1083ed585c81c4af09cf23c')
-md5sums=('f0d254da0b2b870d9a5fa094e879d4b8')
-
-build() {
-  cd $pkgname-$pkgver
-
-  if [ $CARCH = x86_64 ]; then
-_confflags=--enable-64bit
-  else
-_confflags=
-  fi
-
-  ./nspr/configure \
-  --prefix=/usr \
-  --libdir=/usr/lib \
-  --includedir=/usr/include/nspr \
-  --enable-optimize \
-  --disable-debug ${_confflags}
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-
-  ln -s nspr.pc $pkgdir/usr/lib/pkgconfig/mozilla-nspr.pc
-  rm -r $pkgdir/usr/bin/{compile-et.pl,prerr.properties} \
- $pkgdir/usr/include/nspr/md
-}

Copied: nspr/repos/extra-x86_64/PKGBUILD (from rev 205066, nspr/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-02-04 10:50:56 UTC (rev 205067)
@@ -0,0 

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

2014-02-04 Thread Andreas Radke
Date: Tuesday, February 4, 2014 @ 12:00:54
  Author: andyrtr
Revision: 205068

upgpkg: mesa 10.0.3-1

upstream update 10.0.3

Modified:
  mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 10:50:56 UTC (rev 205067)
+++ PKGBUILD2014-02-04 11:00:54 UTC (rev 205068)
@@ -4,7 +4,7 @@
 
 pkgbase=mesa
 pkgname=('ati-dri' 'intel-dri' 'nouveau-dri' 'svga-dri' 'mesa' 'mesa-libgl')
-pkgver=10.0.2
+pkgver=10.0.3
 pkgrel=1
 arch=('i686' 'x86_64')
 makedepends=('python2' 'libxml2' 'libx11' 'glproto' 'libdrm' 'dri2proto' 
'libxxf86vm' 'libxdamage'
@@ -13,7 +13,7 @@
 license=('custom')
 source=(ftp://ftp.freedesktop.org/pub/mesa/${pkgver}/MesaLib-${pkgver}.tar.bz2
 LICENSE)
-md5sums=('8544c0ab3e438a08b5103421ea15b6d2'
+md5sums=('5f9f463ef08129f6762106b434910adb'
  '5c65a0fe315dd347e09b1f2826a1df5a')
 
 build() {



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

2014-02-04 Thread Andreas Radke
Date: Tuesday, February 4, 2014 @ 12:01:18
  Author: andyrtr
Revision: 205069

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

Added:
  mesa/repos/extra-i686/LICENSE
(from rev 205068, mesa/trunk/LICENSE)
  mesa/repos/extra-i686/PKGBUILD
(from rev 205068, mesa/trunk/PKGBUILD)
  mesa/repos/extra-x86_64/LICENSE
(from rev 205068, mesa/trunk/LICENSE)
  mesa/repos/extra-x86_64/PKGBUILD
(from rev 205068, mesa/trunk/PKGBUILD)
Deleted:
  mesa/repos/extra-i686/LICENSE
  mesa/repos/extra-i686/PKGBUILD
  mesa/repos/extra-x86_64/LICENSE
  mesa/repos/extra-x86_64/PKGBUILD

---+
 /LICENSE  |  164 ++
 /PKGBUILD |  296 
 extra-i686/LICENSE|   82 -
 extra-i686/PKGBUILD   |  151 
 extra-x86_64/LICENSE  |   82 -
 extra-x86_64/PKGBUILD |  151 
 6 files changed, 460 insertions(+), 466 deletions(-)

Deleted: extra-i686/LICENSE
===
--- extra-i686/LICENSE  2014-02-04 11:00:54 UTC (rev 205068)
+++ extra-i686/LICENSE  2014-02-04 11:01:18 UTC (rev 205069)
@@ -1,82 +0,0 @@
-Disclaimer
-
-Mesa is a 3-D graphics library with an API which is very similar to
-that of OpenGL*
-To the extent that Mesa utilizes the OpenGL command syntax or state
-machine, it is being used with authorization from Silicon Graphics,
-Inc.(SGI). However, the author does not possess an OpenGL license
-from SGI, and makes no claim that Mesa is in any way a compatible
-replacement for OpenGL or associated with SGI. Those who want a
-licensed implementation of OpenGL should contact a licensed
-vendor.
-
-Please do not refer to the library as MesaGL (for legal
-reasons). It's just Mesa or The Mesa 3-D graphics
-library
-
-* OpenGL is a trademark of Silicon Graphics Incorporated.
-
-License / Copyright Information
-
-The Mesa distribution consists of several components.  Different copyrights
-and licenses apply to different components.  For example, GLUT is copyrighted
-by Mark Kilgard, some demo programs are copyrighted by SGI, some of the Mesa
-device drivers are copyrighted by their authors.  See below for a list of
-Mesa's main components and the license for each.
-
-The core Mesa library is licensed according to the terms of the MIT license.
-This allows integration with the XFree86, Xorg and DRI projects.
-
-The default Mesa license is as follows:
-
-Copyright (C) 1999-2007  Brian Paul   All Rights Reserved.
-
-Permission is hereby granted, free of charge, to any person obtaining a
-copy of this software and associated documentation files (the Software),
-to deal in the Software without restriction, including without limitation
-the rights to use, copy, modify, merge, publish, distribute, sublicense,
-and/or sell copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included
-in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS
-OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
-BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
-AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-Attention, Contributors
-
-When contributing to the Mesa project you must agree to the licensing terms
-of the component to which you're contributing.
-The following section lists the primary components of the Mesa distribution
-and their respective licenses.
-
-
-Mesa Component Licenses
-
-Component Location   Primary Author  License
-
-Main Mesa codesrc/mesa/  Brian Paul  Mesa (MIT)
-
-Device driverssrc/mesa/drivers/* See drivers See drivers
-
-Ext headers   include/GL/glext.h SGI SGI Free B
-  include/GL/glxext.h
-
-GLUT  src/glut/  Mark KilgardMark's copyright
-
-Mesa GLU library  src/glu/mesa/  Brian Paul  GNU-LGPL
-
-SGI GLU library   src/glu/sgi/   SGI SGI Free B
-
-demo programs progs/demos/   various see source files
-
-X demos   progs/xdemos/  Brian Paul  see source files
-
-SGI demos progs/samples/ SGI SGI copyright
-
-RedBook demos progs/redbook/ SGI SGI copyright

Copied: mesa/repos/extra-i686/LICENSE (from rev 205068, mesa/trunk/LICENSE)
===
--- 

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

2014-02-04 Thread Jan de Groot
Date: Tuesday, February 4, 2014 @ 12:01:58
  Author: jgc
Revision: 205071

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

Added:
  python-geoip/repos/extra-i686/PKGBUILD
(from rev 205070, python-geoip/trunk/PKGBUILD)
  python-geoip/repos/extra-x86_64/PKGBUILD
(from rev 205070, python-geoip/trunk/PKGBUILD)
Deleted:
  python-geoip/repos/extra-i686/PKGBUILD
  python-geoip/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-02-04 11:01:51 UTC (rev 205070)
+++ extra-i686/PKGBUILD 2014-02-04 11:01:58 UTC (rev 205071)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Angel Velasquez an...@archlinux.org
-
-pkgname=('python2-geoip')
-pkgbase=python-geoip
-pkgver=1.2.8
-pkgrel=3
-pkgdesc=Python bindings for the GeoIP IP-to-country resolver library
-arch=('i686' 'x86_64')
-url=http://dev.maxmind.com/geoip/legacy/downloadable#Python-10;
-license=('LGPL')
-depends=('python2' 'geoip')
-source=(http://www.maxmind.com/download/geoip/api/python/GeoIP-Python-$pkgver.tar.gz)
-sha256sums=('8b946307355b60cb0f2b0be8ac90c1231286e0e79917509763267fce01a50e73')
-
-build() {
-  cd GeoIP-Python-$pkgver
-  python2 setup.py build
-}
-
-package_python2-geoip() {
-  conflicts=('python-geoip1.2.8')
-
-  cd GeoIP-Python-$pkgver
-  python2 setup.py install --root=$pkgdir -O1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-geoip/repos/extra-i686/PKGBUILD (from rev 205070, 
python-geoip/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-02-04 11:01:58 UTC (rev 205071)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Angel Velasquez an...@archlinux.org
+
+pkgname=('python2-geoip')
+pkgbase=python-geoip
+pkgver=1.2.9
+pkgrel=1
+pkgdesc=Python bindings for the GeoIP IP-to-country resolver library
+arch=('i686' 'x86_64')
+url=https://pypi.python.org/pypi/GeoIP/;
+license=('LGPL')
+depends=('python2' 'geoip')
+source=(https://pypi.python.org/packages/source/G/GeoIP/GeoIP-${pkgver}.tar.gz)
+md5sums=('367a083a13c442309eeb47fa061bd262')
+
+build() {
+  cd GeoIP-$pkgver
+  python2 setup.py build
+}
+
+package_python2-geoip() {
+  conflicts=('python-geoip1.2.8')
+
+  cd GeoIP-$pkgver
+  python2 setup.py install --root=$pkgdir -O1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-02-04 11:01:51 UTC (rev 205070)
+++ extra-x86_64/PKGBUILD   2014-02-04 11:01:58 UTC (rev 205071)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Angel Velasquez an...@archlinux.org
-
-pkgname=('python2-geoip')
-pkgbase=python-geoip
-pkgver=1.2.8
-pkgrel=3
-pkgdesc=Python bindings for the GeoIP IP-to-country resolver library
-arch=('i686' 'x86_64')
-url=http://dev.maxmind.com/geoip/legacy/downloadable#Python-10;
-license=('LGPL')
-depends=('python2' 'geoip')
-source=(http://www.maxmind.com/download/geoip/api/python/GeoIP-Python-$pkgver.tar.gz)
-sha256sums=('8b946307355b60cb0f2b0be8ac90c1231286e0e79917509763267fce01a50e73')
-
-build() {
-  cd GeoIP-Python-$pkgver
-  python2 setup.py build
-}
-
-package_python2-geoip() {
-  conflicts=('python-geoip1.2.8')
-
-  cd GeoIP-Python-$pkgver
-  python2 setup.py install --root=$pkgdir -O1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-geoip/repos/extra-x86_64/PKGBUILD (from rev 205070, 
python-geoip/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-02-04 11:01:58 UTC (rev 205071)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Angel Velasquez an...@archlinux.org
+
+pkgname=('python2-geoip')
+pkgbase=python-geoip
+pkgver=1.2.9
+pkgrel=1
+pkgdesc=Python bindings for the GeoIP IP-to-country resolver library
+arch=('i686' 'x86_64')
+url=https://pypi.python.org/pypi/GeoIP/;
+license=('LGPL')
+depends=('python2' 'geoip')
+source=(https://pypi.python.org/packages/source/G/GeoIP/GeoIP-${pkgver}.tar.gz)
+md5sums=('367a083a13c442309eeb47fa061bd262')
+
+build() {
+  cd GeoIP-$pkgver
+  python2 setup.py build
+}
+
+package_python2-geoip() {
+  conflicts=('python-geoip1.2.8')
+
+  cd GeoIP-$pkgver
+  python2 setup.py install --root=$pkgdir -O1
+}
+
+# vim:set ts=2 sw=2 et:



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

2014-02-04 Thread Jan de Groot
Date: Tuesday, February 4, 2014 @ 12:01:51
  Author: jgc
Revision: 205070

upgpkg: python-geoip 1.2.9-1

Modified:
  python-geoip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 11:01:18 UTC (rev 205069)
+++ PKGBUILD2014-02-04 11:01:51 UTC (rev 205070)
@@ -4,18 +4,18 @@
 
 pkgname=('python2-geoip')
 pkgbase=python-geoip
-pkgver=1.2.8
-pkgrel=3
+pkgver=1.2.9
+pkgrel=1
 pkgdesc=Python bindings for the GeoIP IP-to-country resolver library
 arch=('i686' 'x86_64')
-url=http://dev.maxmind.com/geoip/legacy/downloadable#Python-10;
+url=https://pypi.python.org/pypi/GeoIP/;
 license=('LGPL')
 depends=('python2' 'geoip')
-source=(http://www.maxmind.com/download/geoip/api/python/GeoIP-Python-$pkgver.tar.gz)
-sha256sums=('8b946307355b60cb0f2b0be8ac90c1231286e0e79917509763267fce01a50e73')
+source=(https://pypi.python.org/packages/source/G/GeoIP/GeoIP-${pkgver}.tar.gz)
+md5sums=('367a083a13c442309eeb47fa061bd262')
 
 build() {
-  cd GeoIP-Python-$pkgver
+  cd GeoIP-$pkgver
   python2 setup.py build
 }
 
@@ -22,7 +22,7 @@
 package_python2-geoip() {
   conflicts=('python-geoip1.2.8')
 
-  cd GeoIP-Python-$pkgver
+  cd GeoIP-$pkgver
   python2 setup.py install --root=$pkgdir -O1
 }
 



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

2014-02-04 Thread Andreas Radke
Date: Tuesday, February 4, 2014 @ 12:26:45
  Author: andyrtr
Revision: 205072

upgpkg: sqlite 3.8.3-1

upstream update 3.8.3

Modified:
  sqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 11:01:58 UTC (rev 205071)
+++ PKGBUILD2014-02-04 11:26:45 UTC (rev 205072)
@@ -4,10 +4,10 @@
 
 pkgbase=sqlite
 pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc') 
-_amalgamationver=3080200
+_amalgamationver=3080300
 _docver=${_amalgamationver}
 #_docver=3080001
-pkgver=3.8.2
+pkgver=3.8.3
 pkgrel=1
 pkgdesc=A C library that implements an SQL database engine
 arch=('i686' 'x86_64')
@@ -15,12 +15,12 @@
 url=http://www.sqlite.org/;
 makedepends=('tcl' 'readline')
 source=( # tarball containing the amalgamation for SQLite = 3.7.5 together 
with a configure script and makefile for building it; includes now also the Tcl 
Extension Architecture (TEA)
-   http://www.sqlite.org/2013/sqlite-autoconf-$_amalgamationver.tar.gz
-   http://www.sqlite.org/2013/sqlite-doc-${_docver}.zip
+   http://www.sqlite.org/2014/sqlite-autoconf-$_amalgamationver.tar.gz
+   http://www.sqlite.org/2014/sqlite-doc-${_docver}.zip
license.txt)
 options=('!emptydirs')
-sha1sums=('6033ef603ce221d367c665477514d972ef1dc90e'
-  'b9cbd42d08b8c1ce96656a6b111e918bb515b605'
+sha1sums=('c2a21d71d0c7dc3af71cf90f04dfd22ecfb280c2'
+  '199c977b948d3e6b9b0b165cb661275e0856d38e'
   'f34f6daa4ab3073d74e774aad21d66878cf26853')
 
 build() {



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

2014-02-04 Thread Andreas Radke
Date: Tuesday, February 4, 2014 @ 12:27:00
  Author: andyrtr
Revision: 205073

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

Added:
  sqlite/repos/extra-i686/PKGBUILD
(from rev 205072, sqlite/trunk/PKGBUILD)
  sqlite/repos/extra-i686/license.txt
(from rev 205072, sqlite/trunk/license.txt)
  sqlite/repos/extra-x86_64/PKGBUILD
(from rev 205072, sqlite/trunk/PKGBUILD)
  sqlite/repos/extra-x86_64/license.txt
(from rev 205072, sqlite/trunk/license.txt)
Deleted:
  sqlite/repos/extra-i686/PKGBUILD
  sqlite/repos/extra-i686/license.txt
  sqlite/repos/extra-x86_64/PKGBUILD
  sqlite/repos/extra-x86_64/license.txt

--+
 /PKGBUILD|  192 +
 /license.txt |   66 +++
 extra-i686/PKGBUILD  |   96 --
 extra-i686/license.txt   |   33 ---
 extra-x86_64/PKGBUILD|   96 --
 extra-x86_64/license.txt |   33 ---
 6 files changed, 258 insertions(+), 258 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-02-04 11:26:45 UTC (rev 205072)
+++ extra-i686/PKGBUILD 2014-02-04 11:27:00 UTC (rev 205073)
@@ -1,96 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgbase=sqlite
-pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc') 
-_amalgamationver=3080200
-_docver=${_amalgamationver}
-#_docver=3080001
-pkgver=3.8.2
-pkgrel=1
-pkgdesc=A C library that implements an SQL database engine
-arch=('i686' 'x86_64')
-license=('custom:Public Domain')
-url=http://www.sqlite.org/;
-makedepends=('tcl' 'readline')
-source=( # tarball containing the amalgamation for SQLite = 3.7.5 together 
with a configure script and makefile for building it; includes now also the Tcl 
Extension Architecture (TEA)
-   http://www.sqlite.org/2013/sqlite-autoconf-$_amalgamationver.tar.gz
-   http://www.sqlite.org/2013/sqlite-doc-${_docver}.zip
-   license.txt)
-options=('!emptydirs')
-sha1sums=('6033ef603ce221d367c665477514d972ef1dc90e'
-  'b9cbd42d08b8c1ce96656a6b111e918bb515b605'
-  'f34f6daa4ab3073d74e774aad21d66878cf26853')
-
-build() {
-  export CFLAGS=$CFLAGS -DSQLITE_ENABLE_FTS3=1 
-DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY 
-DSQLITE_SECURE_DELETE
-
-  # build sqlite
-  cd $srcdir/sqlite-autoconf-$_amalgamationver
-
-  ./configure --prefix=/usr \
-   --disable-static
-  make
-  
-  # build the tcl extension
-  cd $srcdir/sqlite-autoconf-$_amalgamationver/tea
-  ./configure --prefix=/usr \
-   --with-system-sqlite
-  make
-
-}
-
-package_sqlite() {
- 
- pkgdesc=A C library that implements an SQL database engine
- depends=('readline')
- provides=(sqlite3=$pkgver)
- replaces=(sqlite3)
- 
-  cd ${srcdir}/sqlite-autoconf-$_amalgamationver
-  make DESTDIR=${pkgdir} install
-  
-  # license - no linking required because pkgbase=pkgname
-  install -D -m644 ${srcdir}/license.txt 
${pkgdir}/usr/share/licenses/${pkgbase}/license.txt
-}
-
-package_sqlite-tcl() {
- 
- pkgdesc=sqlite Tcl Extension Architecture (TEA)
- depends=('sqlite')
- provides=(sqlite3-tcl=$pkgver)
- replaces=(sqlite3-tcl)
- 
-  cd ${srcdir}/sqlite-autoconf-$_amalgamationver/tea
-  make DESTDIR=${pkgdir} install
-  
-  # link license
-  install -m755 -d ${pkgdir}/usr/share/licenses
-  ln -sf /usr/share/licenses/${pkgbase} 
${pkgdir}/usr/share/licenses/${pkgname}
-}
-
-package_sqlite-doc() {
-
- pkgdesc=most of the static HTML files that comprise this website, including 
all of the SQL Syntax and the C/C++ interface specs and other miscellaneous 
documentation
- #arch=('any') - not yet supported
- provides=(sqlite3-doc=$pkgver)
- replaces=(sqlite3-doc)
- 
-  #cd ${srcdir}/sqlite-doc-${_amalgamationver}
-  cd ${srcdir}/sqlite-doc-${_docver}
-  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
-  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
-  
-  # fix permissions and remove obsolete files; 
https://bugs.archlinux.org/task/24605
-  find ${pkgdir} -type f -perm 755 -exec ls -lha {} \;
-  find ${pkgdir} -type f -perm 755 -exec chmod 644 {} \;
-
-  find ${pkgdir} -type f -name '*~' -exec ls -lha {} \;
-  find ${pkgdir} -type d -name '*~' -exec ls -lha {} \;
-  find ${pkgdir} -name '*~' -exec rm -f {} \;
-
-  find ${pkgdir} -type f -name '.~*' -exec ls -lha {} \; # 
/build/pkg/sqlite-doc/usr/share/doc/sqlite/images/fileformat/.~lock.indexpage.odg#
-  find ${pkgdir} -type d -name '.~*' -exec ls -lha {} \;
-  find ${pkgdir} -name '.~*' -exec rm -f {} \;
-}

Copied: sqlite/repos/extra-i686/PKGBUILD (from rev 205072, 
sqlite/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-02-04 11:27:00 UTC (rev 205073)
@@ -0,0 +1,96 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: Tom Newsom 

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

2014-02-04 Thread Jan Steffens
Date: Tuesday, February 4, 2014 @ 12:31:05
  Author: heftig
Revision: 205074

Paper over upgrade problems

Modified:
  graphviz/trunk/PKGBUILD

--+
 PKGBUILD |8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 11:27:00 UTC (rev 205073)
+++ PKGBUILD2014-02-04 11:31:05 UTC (rev 205074)
@@ -5,7 +5,7 @@
 
 pkgname=graphviz
 pkgver=2.36.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Graph visualization software'
 url='http://www.graphviz.org/'
 license=('CPL')
@@ -41,4 +41,10 @@
 package() {
cd ${srcdir}/${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
+
+   # Workaround symlink upgrade bug (fixed in pacman trunk)
+   # Also deduplicates the tcl libraries (upstream bug?)
+   # Might have been this commit: 
https://github.com/ellson/graphviz/commit/f11aead
+   rm -r ${pkgdir}/usr/lib/tcl8.6/graphviz
+   ln -s ../graphviz/tcl $pkgdir/usr/lib/tcl8.6/graphviz
 }



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

2014-02-04 Thread Jan Steffens
Date: Tuesday, February 4, 2014 @ 12:31:25
  Author: heftig
Revision: 205075

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

Added:
  graphviz/repos/extra-i686/PKGBUILD
(from rev 205074, graphviz/trunk/PKGBUILD)
  graphviz/repos/extra-i686/install
(from rev 205074, graphviz/trunk/install)
  graphviz/repos/extra-x86_64/PKGBUILD
(from rev 205074, graphviz/trunk/PKGBUILD)
  graphviz/repos/extra-x86_64/install
(from rev 205074, graphviz/trunk/install)
Deleted:
  graphviz/repos/extra-i686/PKGBUILD
  graphviz/repos/extra-i686/install
  graphviz/repos/extra-x86_64/PKGBUILD
  graphviz/repos/extra-x86_64/install

---+
 /PKGBUILD |  100 
 /install  |   24 +++
 extra-i686/PKGBUILD   |   44 -
 extra-i686/install|   12 -
 extra-x86_64/PKGBUILD |   44 -
 extra-x86_64/install  |   12 -
 6 files changed, 124 insertions(+), 112 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-02-04 11:31:05 UTC (rev 205074)
+++ extra-i686/PKGBUILD 2014-02-04 11:31:25 UTC (rev 205075)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: kevin ke...@archlinux.org
-# Contributor: John Proctor jproc...@prium.net
-
-pkgname=graphviz
-pkgver=2.36.0
-pkgrel=1
-pkgdesc='Graph visualization software'
-url='http://www.graphviz.org/'
-license=('CPL')
-arch=('i686' 'x86_64')
-depends=('libltdl' 'gd' 'librsvg' 'libxaw' 'ghostscript' 'pango' 'gts')
-makedepends=('swig' 'mono' 'guile' 'lua51' 'ocaml' 'perl' 'php' 'python2' 'r' 
'tk' 'qt4' 'gtk2')
-optdepends=('mono: sharp bindings'
-'guile: guile bindings'
-'lua51: lua bindings'
-'ocaml: ocaml bindings'
-'perl: perl bindings'
-'php: php bindings'
-'python2: python bindings'
-'r: r bindings'
-'tcl: tcl bindings'
-'qt4: gvedit'
-'gtk2: gtk output plugin')
-source=(${url}/pub/${pkgname}/stable/SOURCES/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('a41e9f1cbcc9a24651e14dd15a4cda3d912d7d19')
-
-install=install
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   export LIBPOSTFIX=/
-   export PYTHON=python2
-   export LUA=lua5.1
-
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-}

Copied: graphviz/repos/extra-i686/PKGBUILD (from rev 205074, 
graphviz/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-02-04 11:31:25 UTC (rev 205075)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: kevin ke...@archlinux.org
+# Contributor: John Proctor jproc...@prium.net
+
+pkgname=graphviz
+pkgver=2.36.0
+pkgrel=2
+pkgdesc='Graph visualization software'
+url='http://www.graphviz.org/'
+license=('CPL')
+arch=('i686' 'x86_64')
+depends=('libltdl' 'gd' 'librsvg' 'libxaw' 'ghostscript' 'pango' 'gts')
+makedepends=('swig' 'mono' 'guile' 'lua51' 'ocaml' 'perl' 'php' 'python2' 'r' 
'tk' 'qt4' 'gtk2')
+optdepends=('mono: sharp bindings'
+'guile: guile bindings'
+'lua51: lua bindings'
+'ocaml: ocaml bindings'
+'perl: perl bindings'
+'php: php bindings'
+'python2: python bindings'
+'r: r bindings'
+'tcl: tcl bindings'
+'qt4: gvedit'
+'gtk2: gtk output plugin')
+source=(${url}/pub/${pkgname}/stable/SOURCES/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('a41e9f1cbcc9a24651e14dd15a4cda3d912d7d19')
+
+install=install
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   export LIBPOSTFIX=/
+   export PYTHON=python2
+   export LUA=lua5.1
+
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+
+   # Workaround symlink upgrade bug (fixed in pacman trunk)
+   # Also deduplicates the tcl libraries (upstream bug?)
+   # Might have been this commit: 
https://github.com/ellson/graphviz/commit/f11aead
+   rm -r ${pkgdir}/usr/lib/tcl8.6/graphviz
+   ln -s ../graphviz/tcl $pkgdir/usr/lib/tcl8.6/graphviz
+}

Deleted: extra-i686/install
===
--- extra-i686/install  2014-02-04 11:31:05 UTC (rev 205074)
+++ extra-i686/install  2014-02-04 11:31:25 UTC (rev 205075)
@@ -1,12 +0,0 @@
-post_install() {
-   rm -f usr/lib/graphviz/config{,6}
-   usr/bin/dot -c
-}
-
-post_upgrade() {
-   post_install
-}
-
-pre_remove() {
-   rm -f usr/lib/graphviz/config{,6}
-}

Copied: graphviz/repos/extra-i686/install (from rev 205074, 
graphviz/trunk/install)

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

2014-02-04 Thread Evangelos Foutras
Date: Tuesday, February 4, 2014 @ 12:40:54
  Author: foutrelis
Revision: 205076

upgpkg: chromium 32.0.1700.107-1

New upstream release.

Modified:
  chromium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 11:31:25 UTC (rev 205075)
+++ PKGBUILD2014-02-04 11:40:54 UTC (rev 205076)
@@ -5,7 +5,7 @@
 # Contributor: Daniel J Griffiths ghost1...@archlinux.us
 
 pkgname=chromium
-pkgver=32.0.1700.102
+pkgver=32.0.1700.107
 _toolchains_rev=12181
 pkgrel=1
 pkgdesc=The open-source project behind Google Chrome, an attempt at creating 
a safer, faster, and more stable browser
@@ -34,7 +34,7 @@
 noextract=(naclsdk_nacl_linux_x86-$_toolchains_rev.tgz
naclsdk_pnacl_linux_x86-$_toolchains_rev.tgz
naclsdk_pnacl_translator-$_toolchains_rev.tgz)
-sha256sums=('da13d46517053541fc110acbbdc3b529f96a31a68f7d9b75dc1198c64e83bc4b'
+sha256sums=('1febb61356e8e9de549c33133583980ac6e02dc0ef1fdbfa703665e2e47ac1ad'
 'cb4ac159f61de5e75d339813c0fc74f986156310a2c43a30ba40125951e72450'
 'ad229b69a5af72a9fa7cf2167ee48560cc11049206e4ef919cb31d1273d6409f'
 'fdb8309ef2b1c8600d63c4420ac02d66d85ab9befe98d99e9706828870730077'



[arch-commits] Commit in chromium/repos (20 files)

2014-02-04 Thread Evangelos Foutras
Date: Tuesday, February 4, 2014 @ 12:41:13
  Author: foutrelis
Revision: 205077

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

Added:
  chromium/repos/extra-i686/PKGBUILD
(from rev 205076, chromium/trunk/PKGBUILD)
  chromium/repos/extra-i686/chromium.default
(from rev 205076, chromium/trunk/chromium.default)
  chromium/repos/extra-i686/chromium.desktop
(from rev 205076, chromium/trunk/chromium.desktop)
  chromium/repos/extra-i686/chromium.install
(from rev 205076, chromium/trunk/chromium.install)
  chromium/repos/extra-i686/chromium.sh
(from rev 205076, chromium/trunk/chromium.sh)
  chromium/repos/extra-x86_64/PKGBUILD
(from rev 205076, chromium/trunk/PKGBUILD)
  chromium/repos/extra-x86_64/chromium.default
(from rev 205076, chromium/trunk/chromium.default)
  chromium/repos/extra-x86_64/chromium.desktop
(from rev 205076, chromium/trunk/chromium.desktop)
  chromium/repos/extra-x86_64/chromium.install
(from rev 205076, chromium/trunk/chromium.install)
  chromium/repos/extra-x86_64/chromium.sh
(from rev 205076, chromium/trunk/chromium.sh)
Deleted:
  chromium/repos/extra-i686/PKGBUILD
  chromium/repos/extra-i686/chromium.default
  chromium/repos/extra-i686/chromium.desktop
  chromium/repos/extra-i686/chromium.install
  chromium/repos/extra-i686/chromium.sh
  chromium/repos/extra-x86_64/PKGBUILD
  chromium/repos/extra-x86_64/chromium.default
  chromium/repos/extra-x86_64/chromium.desktop
  chromium/repos/extra-x86_64/chromium.install
  chromium/repos/extra-x86_64/chromium.sh

---+
 /PKGBUILD |  350 
 /chromium.default |8 
 /chromium.desktop |  226 +
 /chromium.install |   24 ++
 /chromium.sh  |   32 +++
 extra-i686/PKGBUILD   |  175 
 extra-i686/chromium.default   |4 
 extra-i686/chromium.desktop   |  113 
 extra-i686/chromium.install   |   12 -
 extra-i686/chromium.sh|   16 -
 extra-x86_64/PKGBUILD |  175 
 extra-x86_64/chromium.default |4 
 extra-x86_64/chromium.desktop |  113 
 extra-x86_64/chromium.install |   12 -
 extra-x86_64/chromium.sh  |   16 -
 15 files changed, 640 insertions(+), 640 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 205076:205077 to see the changes.


[arch-commits] Commit in xkeyboard-config/repos/extra-any (3 files)

2014-02-04 Thread Laurent Carlier
Date: Tuesday, February 4, 2014 @ 13:15:37
  Author: lcarlier
Revision: 205079

archrelease: copy trunk to extra-any

Added:
  xkeyboard-config/repos/extra-any/PKGBUILD
(from rev 205078, xkeyboard-config/trunk/PKGBUILD)
  xkeyboard-config/repos/extra-any/revert-comma-in-keypad.patch
(from rev 205078, xkeyboard-config/trunk/revert-comma-in-keypad.patch)
Deleted:
  xkeyboard-config/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   82 +++--
 revert-comma-in-keypad.patch |   39 +++
 2 files changed, 86 insertions(+), 35 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-02-04 12:15:30 UTC (rev 205078)
+++ PKGBUILD2014-02-04 12:15:37 UTC (rev 205079)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xkeyboard-config
-pkgver=2.11
-pkgrel=1
-pkgdesc=X keyboard configuration files
-arch=(any)
-license=('custom')
-url=http://www.freedesktop.org/wiki/Software/XKeyboardConfig;
-makedepends=('intltool' 'xorg-xkbcomp')
-provides=('xkbdata')
-replaces=('xkbdata')
-conflicts=('xkbdata')
-source=(http://xorg.freedesktop.org/archive/individual/data/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('e7125460892c2b5c3a8d843cb18c24b60c46051e925c2888a61fa672a2f76d76')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
-  --with-xkb-base=/usr/share/X11/xkb \
-  --with-xkb-rules-symlink=xorg \
-  --enable-compat-rules=yes
-  make
- }
- 
- package() { 
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  rm -f ${pkgdir}/usr/share/X11/xkb/compiled
-  install -m755 -d ${pkgdir}/var/lib/xkb
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: xkeyboard-config/repos/extra-any/PKGBUILD (from rev 205078, 
xkeyboard-config/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-02-04 12:15:37 UTC (rev 205079)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xkeyboard-config
+pkgver=2.11
+pkgrel=2
+pkgdesc=X keyboard configuration files
+arch=(any)
+license=('custom')
+url=http://www.freedesktop.org/wiki/Software/XKeyboardConfig;
+makedepends=('intltool' 'xorg-xkbcomp')
+provides=('xkbdata')
+replaces=('xkbdata')
+conflicts=('xkbdata')
+source=(http://xorg.freedesktop.org/archive/individual/data/${pkgname}/${pkgname}-${pkgver}.tar.bz2
+revert-comma-in-keypad.patch)
+sha256sums=('e7125460892c2b5c3a8d843cb18c24b60c46051e925c2888a61fa672a2f76d76'
+'05b22863ddb1de64575b56714ebd693f2ea639b7a4ae15e25c9a1f0d14dba817')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # fix FS#38743 , not merged upstream
+  patch -Np1 -i../revert-comma-in-keypad.patch
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr \
+  --with-xkb-base=/usr/share/X11/xkb \
+  --with-xkb-rules-symlink=xorg \
+  --enable-compat-rules=yes
+  make
+ }
+ 
+ package() { 
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+  rm -f ${pkgdir}/usr/share/X11/xkb/compiled
+
+  install -m755 -d ${pkgdir}/var/lib/xkb
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Copied: xkeyboard-config/repos/extra-any/revert-comma-in-keypad.patch (from rev 
205078, xkeyboard-config/trunk/revert-comma-in-keypad.patch)
===
--- revert-comma-in-keypad.patch(rev 0)
+++ revert-comma-in-keypad.patch2014-02-04 12:15:37 UTC (rev 205079)
@@ -0,0 +1,39 @@
+diff --git a/symbols/fr b/symbols/fr
+index 9c89db8..3898b1c 100644
+--- a/symbols/fr
 b/symbols/fr
+@@ -36,8 +36,6 @@ xkb_symbols basic {
+ key AB09{ [ colon,  slash, periodcentered,   division ] 
};
+ key AB10{ [exclam,section, dead_belowdot, dead_abovedot 
] };
+ 
+-include kpdl(comma)
+-
+ include level3(ralt_switch)
+ };
+ 
+diff --git a/symbols/it b/symbols/it
+index 8a66a30..2673cf9 100644
+--- a/symbols/it
 b/symbols/it
+@@ -33,8 +33,6 @@ xkb_symbols basic {
+ 
+ key LSGT{ [  less,greater,guillemotleft,guillemotright] 
};
+ 
+-include kpdl(comma)
+-
+ include level3(ralt_switch)
+ };
+ 
+diff --git a/symbols/nl b/symbols/nl
+index 1dde405..76cb018 100644
+--- a/symbols/nl
 b/symbols/nl
+@@ -49,8 +49,6 @@ xkb_symbols basic {
+ 
+ key LSGT{ [bracketright, bracketleft,   bar,brokenbar ] 
};
+ 
+-include kpdl(comma)
+-
+ include level3(ralt_switch)
+ };
+ 



[arch-commits] Commit in xkeyboard-config/trunk (2 files)

2014-02-04 Thread Laurent Carlier
Date: Tuesday, February 4, 2014 @ 13:15:30
  Author: lcarlier
Revision: 205078

upgpkg: xkeyboard-config 2.11-2

Fix comma instead of dot in the keypad (FS#38743)

Added:
  xkeyboard-config/trunk/revert-comma-in-keypad.patch
Modified:
  xkeyboard-config/trunk/PKGBUILD

--+
 PKGBUILD |   18 +++---
 revert-comma-in-keypad.patch |   39 +++
 2 files changed, 54 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 11:41:13 UTC (rev 205077)
+++ PKGBUILD2014-02-04 12:15:30 UTC (rev 205078)
@@ -4,7 +4,7 @@
 
 pkgname=xkeyboard-config
 pkgver=2.11
-pkgrel=1
+pkgrel=2
 pkgdesc=X keyboard configuration files
 arch=(any)
 license=('custom')
@@ -13,11 +13,21 @@
 provides=('xkbdata')
 replaces=('xkbdata')
 conflicts=('xkbdata')
-source=(http://xorg.freedesktop.org/archive/individual/data/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('e7125460892c2b5c3a8d843cb18c24b60c46051e925c2888a61fa672a2f76d76')
+source=(http://xorg.freedesktop.org/archive/individual/data/${pkgname}/${pkgname}-${pkgver}.tar.bz2
+revert-comma-in-keypad.patch)
+sha256sums=('e7125460892c2b5c3a8d843cb18c24b60c46051e925c2888a61fa672a2f76d76'
+'05b22863ddb1de64575b56714ebd693f2ea639b7a4ae15e25c9a1f0d14dba817')
 
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # fix FS#38743 , not merged upstream
+  patch -Np1 -i../revert-comma-in-keypad.patch
+}
+
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
+
   ./configure --prefix=/usr \
   --with-xkb-base=/usr/share/X11/xkb \
   --with-xkb-rules-symlink=xorg \
@@ -27,8 +37,10 @@
  
  package() { 
   cd ${srcdir}/${pkgname}-${pkgver}
+
   make DESTDIR=${pkgdir} install
   rm -f ${pkgdir}/usr/share/X11/xkb/compiled
+
   install -m755 -d ${pkgdir}/var/lib/xkb
   install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
   install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/

Added: revert-comma-in-keypad.patch
===
--- revert-comma-in-keypad.patch(rev 0)
+++ revert-comma-in-keypad.patch2014-02-04 12:15:30 UTC (rev 205078)
@@ -0,0 +1,39 @@
+diff --git a/symbols/fr b/symbols/fr
+index 9c89db8..3898b1c 100644
+--- a/symbols/fr
 b/symbols/fr
+@@ -36,8 +36,6 @@ xkb_symbols basic {
+ key AB09{ [ colon,  slash, periodcentered,   division ] 
};
+ key AB10{ [exclam,section, dead_belowdot, dead_abovedot 
] };
+ 
+-include kpdl(comma)
+-
+ include level3(ralt_switch)
+ };
+ 
+diff --git a/symbols/it b/symbols/it
+index 8a66a30..2673cf9 100644
+--- a/symbols/it
 b/symbols/it
+@@ -33,8 +33,6 @@ xkb_symbols basic {
+ 
+ key LSGT{ [  less,greater,guillemotleft,guillemotright] 
};
+ 
+-include kpdl(comma)
+-
+ include level3(ralt_switch)
+ };
+ 
+diff --git a/symbols/nl b/symbols/nl
+index 1dde405..76cb018 100644
+--- a/symbols/nl
 b/symbols/nl
+@@ -49,8 +49,6 @@ xkb_symbols basic {
+ 
+ key LSGT{ [bracketright, bracketleft,   bar,brokenbar ] 
};
+ 
+-include kpdl(comma)
+-
+ include level3(ralt_switch)
+ };
+ 



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

2014-02-04 Thread Jan de Groot
Date: Tuesday, February 4, 2014 @ 13:22:02
  Author: jgc
Revision: 205080

upgpkg: wildmidi 0.3.2-1

Modified:
  wildmidi/trunk/PKGBUILD

--+
 PKGBUILD |   23 +--
 1 file changed, 13 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 12:15:37 UTC (rev 205079)
+++ PKGBUILD2014-02-04 12:22:02 UTC (rev 205080)
@@ -3,25 +3,28 @@
 # Contributor: Panagiotis Papadopoulos
 
 pkgname=wildmidi
-pkgver=0.2.3.5
-pkgrel=2
+pkgver=0.3.2
+pkgrel=1
 pkgdesc='Open Source MIDI Synthesizer'
 arch=('i686' 'x86_64')
-url='http://wildmidi.sourceforge.net/'
+url=http://www.mindwerks.net/projects/wildmidi/;
 license=('LGPL3')
 depends=('alsa-lib')
-options=(!makeflags)
-source=(http://sourceforge.net/projects/wildmidi/files/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('44583c95fd67761f8cd6275fd1c312f2')
+makedepends=('cmake')
+source=(https://github.com/psi29a/wildmidi/archive/wildmidi-${pkgver}.tar.gz)
+md5sums=('9fda0b9d5290af9516e2da576103fab8')
 
+prepare() {
+  mkdir build
+}
+
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr --disable-werror
+  cd build
+  cmake -D CMAKE_INSTALL_PREFIX=/usr ../$pkgname-$pkgname-$pkgver
   make
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd build
   make DESTDIR=${pkgdir} install
 }



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

2014-02-04 Thread Jan de Groot
Date: Tuesday, February 4, 2014 @ 13:22:09
  Author: jgc
Revision: 205081

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

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

---+
 /PKGBUILD |   60 
 extra-i686/PKGBUILD   |   27 -
 extra-x86_64/PKGBUILD |   27 -
 3 files changed, 60 insertions(+), 54 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-02-04 12:22:02 UTC (rev 205080)
+++ extra-i686/PKGBUILD 2014-02-04 12:22:09 UTC (rev 205081)
@@ -1,27 +0,0 @@
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Panagiotis Papadopoulos
-
-pkgname=wildmidi
-pkgver=0.2.3.5
-pkgrel=2
-pkgdesc='Open Source MIDI Synthesizer'
-arch=('i686' 'x86_64')
-url='http://wildmidi.sourceforge.net/'
-license=('LGPL3')
-depends=('alsa-lib')
-options=(!makeflags)
-source=(http://sourceforge.net/projects/wildmidi/files/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('44583c95fd67761f8cd6275fd1c312f2')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr --disable-werror
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: wildmidi/repos/extra-i686/PKGBUILD (from rev 205080, 
wildmidi/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-02-04 12:22:09 UTC (rev 205081)
@@ -0,0 +1,30 @@
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Panagiotis Papadopoulos
+
+pkgname=wildmidi
+pkgver=0.3.2
+pkgrel=1
+pkgdesc='Open Source MIDI Synthesizer'
+arch=('i686' 'x86_64')
+url=http://www.mindwerks.net/projects/wildmidi/;
+license=('LGPL3')
+depends=('alsa-lib')
+makedepends=('cmake')
+source=(https://github.com/psi29a/wildmidi/archive/wildmidi-${pkgver}.tar.gz)
+md5sums=('9fda0b9d5290af9516e2da576103fab8')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake -D CMAKE_INSTALL_PREFIX=/usr ../$pkgname-$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-02-04 12:22:02 UTC (rev 205080)
+++ extra-x86_64/PKGBUILD   2014-02-04 12:22:09 UTC (rev 205081)
@@ -1,27 +0,0 @@
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Panagiotis Papadopoulos
-
-pkgname=wildmidi
-pkgver=0.2.3.5
-pkgrel=2
-pkgdesc='Open Source MIDI Synthesizer'
-arch=('i686' 'x86_64')
-url='http://wildmidi.sourceforge.net/'
-license=('LGPL3')
-depends=('alsa-lib')
-options=(!makeflags)
-source=(http://sourceforge.net/projects/wildmidi/files/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('44583c95fd67761f8cd6275fd1c312f2')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr --disable-werror
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: wildmidi/repos/extra-x86_64/PKGBUILD (from rev 205080, 
wildmidi/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-02-04 12:22:09 UTC (rev 205081)
@@ -0,0 +1,30 @@
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Panagiotis Papadopoulos
+
+pkgname=wildmidi
+pkgver=0.3.2
+pkgrel=1
+pkgdesc='Open Source MIDI Synthesizer'
+arch=('i686' 'x86_64')
+url=http://www.mindwerks.net/projects/wildmidi/;
+license=('LGPL3')
+depends=('alsa-lib')
+makedepends=('cmake')
+source=(https://github.com/psi29a/wildmidi/archive/wildmidi-${pkgver}.tar.gz)
+md5sums=('9fda0b9d5290af9516e2da576103fab8')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake -D CMAKE_INSTALL_PREFIX=/usr ../$pkgname-$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-02-04 Thread Sergej Pupykin
Date: Tuesday, February 4, 2014 @ 13:27:08
  Author: spupykin
Revision: 105278

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

Added:
  libyaml/repos/community-i686/PKGBUILD
(from rev 105277, libyaml/trunk/PKGBUILD)
  libyaml/repos/community-x86_64/PKGBUILD
(from rev 105277, libyaml/trunk/PKGBUILD)
Deleted:
  libyaml/repos/community-i686/PKGBUILD
  libyaml/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   52 
 community-i686/PKGBUILD   |   26 --
 community-x86_64/PKGBUILD |   26 --
 3 files changed, 52 insertions(+), 52 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-02-04 12:26:51 UTC (rev 105277)
+++ community-i686/PKGBUILD 2014-02-04 12:27:08 UTC (rev 105278)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Michal Bozon michal.bozon__at__gmail.com
-
-pkgname=libyaml
-pkgver=0.1.4
-pkgrel=3
-pkgdesc=YAML 1.1 library
-arch=('i686' 'x86_64')
-url=http://pyyaml.org/wiki/LibYAML;
-license=('MIT')
-source=(http://pyyaml.org/download/libyaml/yaml-$pkgver.tar.gz)
-md5sums=('36c852831d02cf90508c29852361d01b')
-
-build() {
-  cd $srcdir/yaml-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/yaml-$pkgver
-  make DESTDIR=$pkgdir install
-  install -m644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: libyaml/repos/community-i686/PKGBUILD (from rev 105277, 
libyaml/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-02-04 12:27:08 UTC (rev 105278)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Michal Bozon michal.bozon__at__gmail.com
+
+pkgname=libyaml
+pkgver=0.1.5
+pkgrel=1
+pkgdesc=YAML 1.1 library
+arch=('i686' 'x86_64')
+url=http://pyyaml.org/wiki/LibYAML;
+license=('MIT')
+source=(http://pyyaml.org/download/libyaml/yaml-$pkgver.tar.gz)
+md5sums=('24f6093c1e840ca5df2eb09291a1dbf1')
+
+build() {
+  cd $srcdir/yaml-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/yaml-$pkgver
+  make DESTDIR=$pkgdir install
+  install -m644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-02-04 12:26:51 UTC (rev 105277)
+++ community-x86_64/PKGBUILD   2014-02-04 12:27:08 UTC (rev 105278)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Michal Bozon michal.bozon__at__gmail.com
-
-pkgname=libyaml
-pkgver=0.1.4
-pkgrel=3
-pkgdesc=YAML 1.1 library
-arch=('i686' 'x86_64')
-url=http://pyyaml.org/wiki/LibYAML;
-license=('MIT')
-source=(http://pyyaml.org/download/libyaml/yaml-$pkgver.tar.gz)
-md5sums=('36c852831d02cf90508c29852361d01b')
-
-build() {
-  cd $srcdir/yaml-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/yaml-$pkgver
-  make DESTDIR=$pkgdir install
-  install -m644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: libyaml/repos/community-x86_64/PKGBUILD (from rev 105277, 
libyaml/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-02-04 12:27:08 UTC (rev 105278)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Michal Bozon michal.bozon__at__gmail.com
+
+pkgname=libyaml
+pkgver=0.1.5
+pkgrel=1
+pkgdesc=YAML 1.1 library
+arch=('i686' 'x86_64')
+url=http://pyyaml.org/wiki/LibYAML;
+license=('MIT')
+source=(http://pyyaml.org/download/libyaml/yaml-$pkgver.tar.gz)
+md5sums=('24f6093c1e840ca5df2eb09291a1dbf1')
+
+build() {
+  cd $srcdir/yaml-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/yaml-$pkgver
+  make DESTDIR=$pkgdir install
+  install -m644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+



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

2014-02-04 Thread Sergej Pupykin
Date: Tuesday, February 4, 2014 @ 13:26:51
  Author: spupykin
Revision: 105277

upgpkg: libyaml 0.1.5-1

upd

Modified:
  libyaml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-03 20:58:05 UTC (rev 105276)
+++ PKGBUILD2014-02-04 12:26:51 UTC (rev 105277)
@@ -3,14 +3,14 @@
 # Contributor: Michal Bozon michal.bozon__at__gmail.com
 
 pkgname=libyaml
-pkgver=0.1.4
-pkgrel=3
+pkgver=0.1.5
+pkgrel=1
 pkgdesc=YAML 1.1 library
 arch=('i686' 'x86_64')
 url=http://pyyaml.org/wiki/LibYAML;
 license=('MIT')
 source=(http://pyyaml.org/download/libyaml/yaml-$pkgver.tar.gz)
-md5sums=('36c852831d02cf90508c29852361d01b')
+md5sums=('24f6093c1e840ca5df2eb09291a1dbf1')
 
 build() {
   cd $srcdir/yaml-$pkgver



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

2014-02-04 Thread Sergej Pupykin
Date: Tuesday, February 4, 2014 @ 13:43:53
  Author: spupykin
Revision: 105279

Modified:
  qucs/trunk/PKGBUILD

--+
 PKGBUILD |9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 12:27:08 UTC (rev 105278)
+++ PKGBUILD2014-02-04 12:43:53 UTC (rev 105279)
@@ -4,7 +4,7 @@
 
 pkgname=qucs
 pkgver=0.0.17
-pkgrel=1
+pkgrel=2
 pkgdesc=An integrated circuit simulator with a graphical user interface
 arch=('i686' 'x86_64')
 url=http://qucs.sourceforge.net;
@@ -17,6 +17,11 @@
 
source=(http://downloads.sourceforge.net/project/qucs/qucs/$pkgver/qucs-$pkgver.tar.gz;)
 md5sums=('4b93ffcc2ef3dbbd6fa53a5743721532')
 
+prepare() {
+  cd $srcdir/$pkgname-${pkgver/s/.}
+  sed -i 's|Icon=.*|Icon=/usr/share/qucs/bitmaps/big.qucs.xpm|' 
debian/qucs.desktop
+}
+
 build() {
   cd $srcdir/$pkgname-${pkgver/s/.}
   ./configure --prefix=/usr
@@ -26,4 +31,6 @@
 package() {
   cd $srcdir/$pkgname-${pkgver/s/.}
   make DESTDIR=$pkgdir install
+
+  install -Dm0644 debian/qucs.desktop 
$pkgdir/usr/share/applications/qucs.desktop
 }



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

2014-02-04 Thread Laurent Carlier
Date: Tuesday, February 4, 2014 @ 14:02:49
  Author: lcarlier
Revision: 105280

upgpkg: lib32-sqlite 3.8.3-1

upstream update 3.8.3

Modified:
  lib32-sqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 12:43:53 UTC (rev 105279)
+++ PKGBUILD2014-02-04 13:02:49 UTC (rev 105280)
@@ -5,10 +5,10 @@
 
 _pkgbasename=sqlite
 pkgname=lib32-sqlite
-_amalgamationver=3080200
+_amalgamationver=3080300
 _docver=${_amalgamationver}
 #_docver=3080001
-pkgver=3.8.2
+pkgver=3.8.3
 pkgrel=1
 pkgdesc=A C library that implements an SQL database engine (32-bit)
 arch=('x86_64')
@@ -16,8 +16,8 @@
 url=http://www.sqlite.org/;
 depends=(lib32-glibc $_pkgbasename)
 makedepends=('tcl' 'gcc-multilib' 'lib32-readline')
-source=(http://www.sqlite.org/2013/sqlite-autoconf-${_amalgamationver}.tar.gz)
-sha1sums=('6033ef603ce221d367c665477514d972ef1dc90e')
+source=(http://www.sqlite.org/2014/sqlite-autoconf-${_amalgamationver}.tar.gz)
+sha1sums=('c2a21d71d0c7dc3af71cf90f04dfd22ecfb280c2')
 provides=(lib32-sqlite3=$pkgver)
 replaces=(lib32-sqlite3)
 conflicts=(lib32-sqlite3)



[arch-commits] Commit in lib32-sqlite/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2014-02-04 Thread Laurent Carlier
Date: Tuesday, February 4, 2014 @ 14:02:58
  Author: lcarlier
Revision: 105281

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-sqlite/repos/multilib-x86_64/PKGBUILD
(from rev 105280, lib32-sqlite/trunk/PKGBUILD)
Deleted:
  lib32-sqlite/repos/multilib-x86_64/PKGBUILD

--+
 PKGBUILD |  100 ++---
 1 file changed, 50 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-02-04 13:02:49 UTC (rev 105280)
+++ PKGBUILD2014-02-04 13:02:58 UTC (rev 105281)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Biru Ionut io...@archlinux.ro
-# Contributor: Mikko Seppälä t-r-...@mbnet.fi
-# Contributor: Kaos  gianlucaatlas dot gmail dot com 
-
-_pkgbasename=sqlite
-pkgname=lib32-sqlite
-_amalgamationver=3080200
-_docver=${_amalgamationver}
-#_docver=3080001
-pkgver=3.8.2
-pkgrel=1
-pkgdesc=A C library that implements an SQL database engine (32-bit)
-arch=('x86_64')
-license=('custom')
-url=http://www.sqlite.org/;
-depends=(lib32-glibc $_pkgbasename)
-makedepends=('tcl' 'gcc-multilib' 'lib32-readline')
-source=(http://www.sqlite.org/2013/sqlite-autoconf-${_amalgamationver}.tar.gz)
-sha1sums=('6033ef603ce221d367c665477514d972ef1dc90e')
-provides=(lib32-sqlite3=$pkgver)
-replaces=(lib32-sqlite3)
-conflicts=(lib32-sqlite3)
-
-build() {
-  cd ${srcdir}/sqlite-autoconf-${_amalgamationver}
-
-  export CC=gcc -m32
-  export CXX=g++ -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-
-  export LTLINK_EXTRAS=-ldl
-  export CFLAGS=$CFLAGS -DSQLITE_ENABLE_FTS3=1 
-DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY 
-DSQLITE_SECURE_DELETE
-
-  ./configure --prefix=/usr --libdir=/usr/lib32 \
---disable-static
-
-  make
-}
-
-
-package() {
-  cd ${srcdir}/sqlite-autoconf-${_amalgamationver}
-
-  make DESTDIR=${pkgdir} install
-
-  rm -rf ${pkgdir}/usr/{include,share,bin}
-  mkdir -p $pkgdir/usr/share/licenses
-  ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
-}

Copied: lib32-sqlite/repos/multilib-x86_64/PKGBUILD (from rev 105280, 
lib32-sqlite/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-02-04 13:02:58 UTC (rev 105281)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Biru Ionut io...@archlinux.ro
+# Contributor: Mikko Seppälä t-r-...@mbnet.fi
+# Contributor: Kaos  gianlucaatlas dot gmail dot com 
+
+_pkgbasename=sqlite
+pkgname=lib32-sqlite
+_amalgamationver=3080300
+_docver=${_amalgamationver}
+#_docver=3080001
+pkgver=3.8.3
+pkgrel=1
+pkgdesc=A C library that implements an SQL database engine (32-bit)
+arch=('x86_64')
+license=('custom')
+url=http://www.sqlite.org/;
+depends=(lib32-glibc $_pkgbasename)
+makedepends=('tcl' 'gcc-multilib' 'lib32-readline')
+source=(http://www.sqlite.org/2014/sqlite-autoconf-${_amalgamationver}.tar.gz)
+sha1sums=('c2a21d71d0c7dc3af71cf90f04dfd22ecfb280c2')
+provides=(lib32-sqlite3=$pkgver)
+replaces=(lib32-sqlite3)
+conflicts=(lib32-sqlite3)
+
+build() {
+  cd ${srcdir}/sqlite-autoconf-${_amalgamationver}
+
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  export LTLINK_EXTRAS=-ldl
+  export CFLAGS=$CFLAGS -DSQLITE_ENABLE_FTS3=1 
-DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY 
-DSQLITE_SECURE_DELETE
+
+  ./configure --prefix=/usr --libdir=/usr/lib32 \
+--disable-static
+
+  make
+}
+
+
+package() {
+  cd ${srcdir}/sqlite-autoconf-${_amalgamationver}
+
+  make DESTDIR=${pkgdir} install
+
+  rm -rf ${pkgdir}/usr/{include,share,bin}
+  mkdir -p $pkgdir/usr/share/licenses
+  ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
+}



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

2014-02-04 Thread Evangelos Foutras
Date: Tuesday, February 4, 2014 @ 14:06:39
  Author: foutrelis
Revision: 205082

upgpkg: thunderbird 24.3.0-1

- New upstream release.
- Remove libnotify dependency; not used anymore:
  https://bugzilla.mozilla.org/show_bug.cgi?id=853104

Modified:
  thunderbird/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 12:22:09 UTC (rev 205081)
+++ PKGBUILD2014-02-04 13:06:39 UTC (rev 205082)
@@ -5,23 +5,23 @@
 # Contributor: Anders Bostrom anders.bost...@home.se
 
 pkgname=thunderbird
-pkgver=24.2.0
+pkgver=24.3.0
 pkgrel=1
 pkgdesc=Standalone Mail/News reader
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL')
 url=http://www.mozilla.org/thunderbird/;
-depends=('alsa-lib' 'dbus-glib' 'desktop-file-utils' 'gtk2' 
'hicolor-icon-theme' 'hunspell' 'libevent' 'libnotify' 'libvpx' 'libxt' 
'mime-types' 'mozilla-common' 'nss' 'sqlite' 'startup-notification')
+depends=('alsa-lib' 'dbus-glib' 'desktop-file-utils' 'gtk2' 
'hicolor-icon-theme' 'hunspell' 'libevent' 'libvpx' 'libxt' 'mime-types' 
'mozilla-common' 'nss' 'sqlite' 'startup-notification')
 makedepends=('unzip' 'zip' 'pkg-config' 'python2' 'wireless_tools' 'yasm' 
'mesa' 'autoconf2.13')
 optdepends=('libcanberra: for sound support')
 install=thunderbird.install
-source=(ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/source/thunderbird-$pkgver.source.tar.bz2{,.asc}
+source=(https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/source/thunderbird-$pkgver.source.tar.bz2{,.asc}
 mozconfig
 thunderbird.desktop
 thunderbird-install-dir.patch
 vendor.js)
 options=(!emptydirs)
-sha256sums=('66474132bd6ebbb8a913c3f4acd4ecc9bec011e4c7ee49475f29558801a905cf'
+sha256sums=('b8cc29ed8e3d1bd9d410b8c6c2c069c38ded11844121f93a6fa1b0d1d753e51d'
 'SKIP'
 'd8844a988b660d40732d4694104d38dd5e8924a987d79247f9651e52fe9e4516'
 'd506b771e765e09e2e039b975e25befade8eec97e8950813a32463604955ab4e'



[arch-commits] Commit in thunderbird/repos (24 files)

2014-02-04 Thread Evangelos Foutras
Date: Tuesday, February 4, 2014 @ 14:06:57
  Author: foutrelis
Revision: 205083

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

Added:
  thunderbird/repos/extra-i686/PKGBUILD
(from rev 205082, thunderbird/trunk/PKGBUILD)
  thunderbird/repos/extra-i686/mozconfig
(from rev 205082, thunderbird/trunk/mozconfig)
  thunderbird/repos/extra-i686/thunderbird-install-dir.patch
(from rev 205082, thunderbird/trunk/thunderbird-install-dir.patch)
  thunderbird/repos/extra-i686/thunderbird.desktop
(from rev 205082, thunderbird/trunk/thunderbird.desktop)
  thunderbird/repos/extra-i686/thunderbird.install
(from rev 205082, thunderbird/trunk/thunderbird.install)
  thunderbird/repos/extra-i686/vendor.js
(from rev 205082, thunderbird/trunk/vendor.js)
  thunderbird/repos/extra-x86_64/PKGBUILD
(from rev 205082, thunderbird/trunk/PKGBUILD)
  thunderbird/repos/extra-x86_64/mozconfig
(from rev 205082, thunderbird/trunk/mozconfig)
  thunderbird/repos/extra-x86_64/thunderbird-install-dir.patch
(from rev 205082, thunderbird/trunk/thunderbird-install-dir.patch)
  thunderbird/repos/extra-x86_64/thunderbird.desktop
(from rev 205082, thunderbird/trunk/thunderbird.desktop)
  thunderbird/repos/extra-x86_64/thunderbird.install
(from rev 205082, thunderbird/trunk/thunderbird.install)
  thunderbird/repos/extra-x86_64/vendor.js
(from rev 205082, thunderbird/trunk/vendor.js)
Deleted:
  thunderbird/repos/extra-i686/PKGBUILD
  thunderbird/repos/extra-i686/mozconfig
  thunderbird/repos/extra-i686/thunderbird-install-dir.patch
  thunderbird/repos/extra-i686/thunderbird.desktop
  thunderbird/repos/extra-i686/thunderbird.install
  thunderbird/repos/extra-i686/vendor.js
  thunderbird/repos/extra-x86_64/PKGBUILD
  thunderbird/repos/extra-x86_64/mozconfig
  thunderbird/repos/extra-x86_64/thunderbird-install-dir.patch
  thunderbird/repos/extra-x86_64/thunderbird.desktop
  thunderbird/repos/extra-x86_64/thunderbird.install
  thunderbird/repos/extra-x86_64/vendor.js

+
 /PKGBUILD  |  142 +++
 /mozconfig |   82 +++
 /thunderbird-install-dir.patch |   94 +
 /thunderbird.desktop   |   26 
 /thunderbird.install   |   24 
 /vendor.js |   18 +++
 extra-i686/PKGBUILD|   71 -
 extra-i686/mozconfig   |   41 ---
 extra-i686/thunderbird-install-dir.patch   |   47 
 extra-i686/thunderbird.desktop |   13 --
 extra-i686/thunderbird.install |   12 --
 extra-i686/vendor.js   |9 -
 extra-x86_64/PKGBUILD  |   71 -
 extra-x86_64/mozconfig |   41 ---
 extra-x86_64/thunderbird-install-dir.patch |   47 
 extra-x86_64/thunderbird.desktop   |   13 --
 extra-x86_64/thunderbird.install   |   12 --
 extra-x86_64/vendor.js |9 -
 18 files changed, 386 insertions(+), 386 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-02-04 13:06:39 UTC (rev 205082)
+++ extra-i686/PKGBUILD 2014-02-04 13:06:57 UTC (rev 205083)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru ib...@archlinux.org
-# Contributor: Alexander Baldeck alexan...@archlinux.org
-# Contributor: Dale Blount d...@archlinux.org
-# Contributor: Anders Bostrom anders.bost...@home.se
-
-pkgname=thunderbird
-pkgver=24.2.0
-pkgrel=1
-pkgdesc=Standalone Mail/News reader
-arch=('i686' 'x86_64')
-license=('MPL' 'GPL')
-url=http://www.mozilla.org/thunderbird/;
-depends=('alsa-lib' 'dbus-glib' 'desktop-file-utils' 'gtk2' 
'hicolor-icon-theme' 'hunspell' 'libevent' 'libnotify' 'libvpx' 'libxt' 
'mime-types' 'mozilla-common' 'nss' 'sqlite' 'startup-notification')
-makedepends=('unzip' 'zip' 'pkg-config' 'python2' 'wireless_tools' 'yasm' 
'mesa' 'autoconf2.13')
-optdepends=('libcanberra: for sound support')
-install=thunderbird.install
-source=(ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/source/thunderbird-$pkgver.source.tar.bz2{,.asc}
-mozconfig
-thunderbird.desktop
-thunderbird-install-dir.patch
-vendor.js)
-options=(!emptydirs)
-sha256sums=('66474132bd6ebbb8a913c3f4acd4ecc9bec011e4c7ee49475f29558801a905cf'
-'SKIP'
-'d8844a988b660d40732d4694104d38dd5e8924a987d79247f9651e52fe9e4516'
-'d506b771e765e09e2e039b975e25befade8eec97e8950813a32463604955ab4e'
-'929a7ceca0e90d0635a2099b7df24033e865fb5b5b8c5824468c4561c21c377d'
-'e4ea8e6788163d9f8db8f1f40023db3ea0a1358f9a4510169f2d4c4fe6a887ed')
-
-prepare() {
-  cd comm-esr24
-  patch -Np1 -i $srcdir/thunderbird-install-dir.patch
-
-  cp $srcdir/mozconfig .mozconfig
-
-  # 

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

2014-02-04 Thread Evangelos Foutras
Date: Tuesday, February 4, 2014 @ 14:08:09
  Author: foutrelis
Revision: 205084

upgpkg: thunderbird-i18n 24.3.0-1

New upstream release.

Modified:
  thunderbird-i18n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:06:57 UTC (rev 205083)
+++ PKGBUILD2014-02-04 13:08:09 UTC (rev 205084)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler tho...@archlinux.org
 
 pkgbase=thunderbird-i18n
-pkgver=24.2.0
+pkgver=24.3.0
 pkgrel=1
 pkgdesc=Language pack for Thunderbird
 arch=('any')
@@ -94,58 +94,58 @@
 
$pkgdir/usr/lib/thunderbird/extensions/langpack-$1...@thunderbird.mozilla.org.xpi
 }
 
-md5sums=('2450e9b3a3f7b263dffba2b565caa026'
- 'c8a34d460bbcf6095816787341a83bd3'
- '9718159572dfa8318dd01a9a63a44b24'
- 'b86442f249fe530e3e3e97444c559a7b'
- 'd1d7f1bec25dd183aea62dd46b6b845f'
- '425eb82e0cc734477fcb1f5eaca3a0b8'
- 'd2a1f926448d9205fc2a9a113118c8f7'
- '9e8afc1b6bf49f77e78462844745eabb'
- '05c7362d95f6c1b8d4ab401b93d4dd26'
- 'e3c7a12c3cd115f89472e714de9bbd96'
- '511a967c932cd737f2c163d435c160b2'
- '938095a514e39ca8058b894f7e285cdc'
- '827e21a03cd9c99e9cb70e54b43cd28d'
- '97aed07198d724ed2ff2f776cea9a694'
- '393c678ac00c636096dc9d826fa99094'
- 'a2ea99fb8bea0c81323f71987734fa75'
- '7fa2aefd207d0830ec7d14f82d114b0e'
- '3755689abeca519609029e0feb546861'
- '239e1f4065d0027a09f4918fea2caebb'
- '62d148305f8c146c6aeb7e46a91fb9dc'
- '4cf85b9d988af5cf0dbbe60f33c78f8b'
- 'ff3674d6422b3c6714dbbb604e830949'
- '6b3c1eeb2a08f23e62865dd0890c7de2'
- '4542f05f58a3f3fcc10fe2bee7bce620'
- 'eabd4446b149be7abfb6ebdf2f0f9d17'
- 'e2a4cae3125def4d5d02de6e39694d42'
- '17423b845de2a30f4ce613399032e475'
- '4a3227bc8cedbab2557dfddf193dadee'
- 'e52d3c3a7e85af431aa78b5a172ca204'
- '2ea44ef074d6c0126c11f1cf58119ea1'
- '51f41c4bfc2651d59512401e6aef1a97'
- 'b9ae7913f935a3a75fc4d35f54d229e2'
- '2b65b7ca0445d9fd3030fc92922c9fef'
- '4bd83ca6cc1eba3110be638f0b4ba58e'
- '6f31e8349b4690d4364726fecd151c84'
- 'bb8616d3f3beaf1c1b412d712a8191fd'
- '8353b8ed0349460ff9006d1dc2e907f4'
- 'cbc9d67c7c46a14517925674c7ce9241'
- '10e9f12b915261a091f1e9a7aa3c491a'
- '047ad48b03c91e0c4f59a828e34fe216'
- 'ba6d3760ab01715b38f8c48c2c90c4e5'
- '1acb8648f3efc1255472dd6161167467'
- 'f2473203871f1d3db4c6930fea44d2bc'
- '4e5506496329c9adb12271aa0237e437'
- '81d7d92335e5bbd31265d4dd56017a03'
- '30dd5472ec45558305661ba767450ee6'
- 'ba42b92642b38e40d442f520d022d2cb'
- '92ca20bf2065b5889de8811989600b37'
- '2d64d71fca6e4e14ecea0d3e51ef7898'
- '763a383781ccd499011c975936538222'
- '37476f33e304615105374f11f7af6bcc'
- '0905709db25a5566b0ef7507dcca96a9'
- '832103f16211936217690e734556e95c'
- 'ff4a8836c4086c22174bcdc6839468fa'
- '6dfa0de1e9731226ff0c85386b100ccb')
+md5sums=('305fb4a11d119e1dffc8db00d8415447'
+ '6c970218d71fe3f2b2c080495c627dcf'
+ '5a791b03e66024e4590e90ea21c8072c'
+ '6d2bf5155653fc524e9eeffebb67fd1f'
+ '454d22e0cfffbf890249c344a0bfb3ed'
+ 'a613a5f928a86933c0dc4aa1ee83cabf'
+ '5d45b8aa1707ec42927118a42a64a901'
+ 'a43b77fb6c7d8185bb28986eeb2e'
+ 'abda1c12b400d0735944b2d1254135c5'
+ '0eb3e249f5950feebdfbe3abca393b9f'
+ '710dd329680a9ec523edc0976ee023c0'
+ 'a73a4bc3af9d42c793f453ade7ed7f47'
+ '0f67df0895150db4d117c3f8b2307bd2'
+ 'c37a4c222729ce7c2f37d695f037e7d9'
+ 'd372395a17630f7b0908456e01d3f305'
+ 'fc9c760ae32fcc72e38d518020507f48'
+ '343607eb1e2f051434ea5c9516887577'
+ '30a0a1de457425cee3b07b09d2a20225'
+ 'd6a19837e6704b43839a2608d109ecd5'
+ '9e0ae78d37852e0f6157b41fbef0f7c7'
+ '34d7d58ec4b20a1f07094a0fcf57774d'
+ '3c4503fa49ea87f1e647ea0c6d09436b'
+ '041c1281e98b583750adeaa46096ae4c'
+ '0ca153732c0af2bbd93173c140cd17cb'
+ '0f64947d77b92966e907039e051201d8'
+ '3951156099cee856d5dce13a10da233e'
+ 'a56081b911b707ae56fb8760813e3854'
+ '2ece2346cc35164742d5af8d4e5869ac'
+ '1a1cd84af5d427afcf2d20d7fe1e621c'
+ 'e3ed8fd936efcd3d5579d98701c09f53'
+ '5465a2c427ed645e5edd7ba9fcfea4cf'
+ '5e73d9699c9b1c617e24035e6869dabb'
+ '2f1d0102b66f0eaebf0a2a8054a36e6b'
+ '7bbdcee9350ddcba95cc8f37ef8bc557'
+ '6ca42a1473532da9a1387e7c133764ea'
+ '70ecae7ef62b9c4c4f9f7d45ee3c623f'
+ '02aab1810bce9fc80bd1e8c15c27cabf'
+ 

[arch-commits] Commit in thunderbird-i18n/repos/extra-any (PKGBUILD PKGBUILD)

2014-02-04 Thread Evangelos Foutras
Date: Tuesday, February 4, 2014 @ 14:08:29
  Author: foutrelis
Revision: 205085

archrelease: copy trunk to extra-any

Added:
  thunderbird-i18n/repos/extra-any/PKGBUILD
(from rev 205084, thunderbird-i18n/trunk/PKGBUILD)
Deleted:
  thunderbird-i18n/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  302 ++---
 1 file changed, 151 insertions(+), 151 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-02-04 13:08:09 UTC (rev 205084)
+++ PKGBUILD2014-02-04 13:08:29 UTC (rev 205085)
@@ -1,151 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Thomas Baechler tho...@archlinux.org
-
-pkgbase=thunderbird-i18n
-pkgver=24.2.0
-pkgrel=1
-pkgdesc=Language pack for Thunderbird
-arch=('any')
-url=http://www.mozilla.com/;
-license=('MPL' 'GPL')
-depends=(thunderbird=$pkgver)
-
-_languages=(
-  'ar Arabic'
-  'astAsturian'
-  'be Belarusian'
-  'bg Bulgarian'
-  'bn-BD  Bengali (Bangladesh)'
-  'br Breton'
-  'ca Catalan'
-  'cs Czech'
-  'da Danish'
-  'de German'
-  'el Greek'
-  'en-GB  English (United Kingdom)'
-  'en-US  English (United States)'
-  'es-AR  Spanish (Argentina)'
-  'es-ES  Spanish (Spain)'
-  'et Estonian'
-  'eu Basque'
-  'fi Finnish'
-  'fr French'
-  'fy-NL  Frisian (Netherlands)'
-  'ga-IE  Irish'
-  'gd Gaelic'
-  'gl Galician'
-  'he Hebrew'
-  'hr Croatian'
-  'hu Hungarian'
-  'hy-AM  Armenian'
-  'id Indonesian'
-  'is Icelandic'
-  'it Italian'
-  'ja Japanese'
-  'ko Korean'
-  'lt Lithuanian'
-  'nb-NO  Norwegian (Bokmal)'
-  'nl Dutch'
-  'nn-NO  Norwegian (Nynorsk)'
-  'pa-IN  Punjabi'
-  'pl Polish'
-  'pt-BR  Brazilian Portuguese'
-  'pt-PT  Portuguese'
-  'rm Romansh'
-  'ro Romanian'
-  'ru Russian'
-  'si Sinhalese'
-  'sk Slovak'
-  'sl Slovenian'
-  'sq Albanian'
-  'sr Serbian'
-  'sv-SE  Swedish'
-  'ta-LK  Tamil (Sri Lanka)'
-  'tr Turkish'
-  'uk Ukrainian'
-  'vi Vietnamese'
-  'zh-CN  Chinese (simplified)'
-  'zh-TW  Chinese (traditional)'
-)
-
-pkgname=()
-source=()
-_url=https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/linux-i686/xpi
-
-for _lang in ${_languages[@]}; do
-  _locale=${_lang%% *}
-  _pkgname=thunderbird-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  source+=(thunderbird-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi)
-  eval package_$_pkgname() {
-_package $_lang
-  }
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc=$2 language pack for Thunderbird
-  install -Dm644 thunderbird-i18n-$pkgver-$1.xpi \
-
$pkgdir/usr/lib/thunderbird/extensions/langpack-$1...@thunderbird.mozilla.org.xpi
-}
-
-md5sums=('2450e9b3a3f7b263dffba2b565caa026'
- 'c8a34d460bbcf6095816787341a83bd3'
- '9718159572dfa8318dd01a9a63a44b24'
- 'b86442f249fe530e3e3e97444c559a7b'
- 'd1d7f1bec25dd183aea62dd46b6b845f'
- '425eb82e0cc734477fcb1f5eaca3a0b8'
- 'd2a1f926448d9205fc2a9a113118c8f7'
- '9e8afc1b6bf49f77e78462844745eabb'
- '05c7362d95f6c1b8d4ab401b93d4dd26'
- 'e3c7a12c3cd115f89472e714de9bbd96'
- '511a967c932cd737f2c163d435c160b2'
- '938095a514e39ca8058b894f7e285cdc'
- '827e21a03cd9c99e9cb70e54b43cd28d'
- '97aed07198d724ed2ff2f776cea9a694'
- '393c678ac00c636096dc9d826fa99094'
- 'a2ea99fb8bea0c81323f71987734fa75'
- '7fa2aefd207d0830ec7d14f82d114b0e'
- '3755689abeca519609029e0feb546861'
- '239e1f4065d0027a09f4918fea2caebb'
- '62d148305f8c146c6aeb7e46a91fb9dc'
- '4cf85b9d988af5cf0dbbe60f33c78f8b'
- 'ff3674d6422b3c6714dbbb604e830949'
- '6b3c1eeb2a08f23e62865dd0890c7de2'
- '4542f05f58a3f3fcc10fe2bee7bce620'
- 'eabd4446b149be7abfb6ebdf2f0f9d17'
- 'e2a4cae3125def4d5d02de6e39694d42'
- '17423b845de2a30f4ce613399032e475'
- '4a3227bc8cedbab2557dfddf193dadee'
- 'e52d3c3a7e85af431aa78b5a172ca204'
- '2ea44ef074d6c0126c11f1cf58119ea1'
- '51f41c4bfc2651d59512401e6aef1a97'
- 'b9ae7913f935a3a75fc4d35f54d229e2'
- '2b65b7ca0445d9fd3030fc92922c9fef'
- '4bd83ca6cc1eba3110be638f0b4ba58e'
- '6f31e8349b4690d4364726fecd151c84'
- 'bb8616d3f3beaf1c1b412d712a8191fd'
- '8353b8ed0349460ff9006d1dc2e907f4'
- 'cbc9d67c7c46a14517925674c7ce9241'
- '10e9f12b915261a091f1e9a7aa3c491a'
- '047ad48b03c91e0c4f59a828e34fe216'
- 'ba6d3760ab01715b38f8c48c2c90c4e5'
- '1acb8648f3efc1255472dd6161167467'
- 'f2473203871f1d3db4c6930fea44d2bc'
- '4e5506496329c9adb12271aa0237e437'
- '81d7d92335e5bbd31265d4dd56017a03'
- '30dd5472ec45558305661ba767450ee6'
- 

[arch-commits] Commit in elfutils/trunk (2 files)

2014-02-04 Thread Laurent Carlier
Date: Tuesday, February 4, 2014 @ 14:27:51
  Author: lcarlier
Revision: 205086

upgpkg: elfutils 0.158-1

upstream update 0.158

Added:
  elfutils/trunk/fix-run-backtrace-native-core-test.patch
Modified:
  elfutils/trunk/PKGBUILD

--+
 PKGBUILD |   16 --
 fix-run-backtrace-native-core-test.patch |   43 +
 2 files changed, 56 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:08:29 UTC (rev 205085)
+++ PKGBUILD2014-02-04 13:27:51 UTC (rev 205086)
@@ -3,7 +3,7 @@
 # Contributor: Andrej Gelenberg andrej.gelenb...@udo.edu
 
 pkgname=elfutils
-pkgver=0.157
+pkgver=0.158
 pkgrel=1
 pkgdesc=Libraries and utilities to handle ELF object files and DWARF 
debugging information
 arch=('i686' 'x86_64')
@@ -13,11 +13,18 @@
 provides=('libelf')
 replaces=('libelf')
 conflicts=('libelf')
-source=(https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2{,.sig})
+source=(https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2{,.sig}
+fix-run-backtrace-native-core-test.patch)
 options=('staticlibs')
-sha1sums=('5e3767206c7f1b3bcfe33bce99fe09686ef165d2'
+sha1sums=('09adbbf0f3a35bb1bcb77c2eaa40de8d3443af4d'
   'SKIP')
 
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+  patch -Np1 -i ../fix-run-backtrace-native-core-test.patch
+}
+
 build() {
   cd ${pkgname}-${pkgver}
 
@@ -40,3 +47,6 @@
   
   rm ${pkgdir}/usr/lib/lib{asm,dw,elf}.a
 }
+sha1sums=('09adbbf0f3a35bb1bcb77c2eaa40de8d3443af4d'
+  'SKIP'
+  '8ecef640f3d1229cdf45ffda016a69848c18e61b')

Added: fix-run-backtrace-native-core-test.patch
===
--- fix-run-backtrace-native-core-test.patch(rev 0)
+++ fix-run-backtrace-native-core-test.patch2014-02-04 13:27:51 UTC (rev 
205086)
@@ -0,0 +1,43 @@
+From e922ec4e3bcd7c164a9ce424accac4394e7d5afd Mon Sep 17 00:00:00 2001
+From: Matthias Klose d...@ubuntu.com
+Date: Tue, 07 Jan 2014 09:25:29 +
+Subject: tests: backtrace-subr.sh (check_native_core) should check core file 
name.
+
+Needed when /proc/sys/kernel/core_uses_pid is set to 0. Try to rename
+the core file, and if it does still fail, skip the test.
+
+Signed-off-by: Mark Wielaard m...@redhat.com
+---
+diff --git a/tests/ChangeLog b/tests/ChangeLog
+index 63b7bed..7e9dcf4 100644
+--- a/tests/ChangeLog
 b/tests/ChangeLog
+@@ -1,3 +1,9 @@
++2014-01-07  Matthias Klose d...@ubuntu.com
++
++  * backtrace-subr.sh (check_native_core): Check to see if core file
++  was created without .PID extension, if so mv core to core.PID.
++  Skip test if no core file was created or could be found.
++
+ 2014-01-04  Mark Wielaard  m...@redhat.com
+ 
+   * backtrace-data.c (main): Don't assert if raise returns.
+diff --git a/tests/backtrace-subr.sh b/tests/backtrace-subr.sh
+index e7ece91..62b873c 100644
+--- a/tests/backtrace-subr.sh
 b/tests/backtrace-subr.sh
+@@ -111,6 +111,11 @@ check_native_core()
+ 
+   # Skip the test if we cannot adjust core ulimit.
+   core=core.`ulimit -c unlimited || exit 77; set +ex; testrun 
${abs_builddir}/$child --gencore; true`
++  # see if /proc/sys/kernel/core_uses_pid is set to 0
++  if [ -f core ]; then
++mv core $core
++  fi
++  if [ ! -f $core ]; then exit 77; fi
+ 
+   if [ x$SAVED_VALGRIND_CMD != x ]; then
+ VALGRIND_CMD=$SAVED_VALGRIND_CMD
+--
+cgit v0.9.2
+



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

2014-02-04 Thread Laurent Carlier
Date: Tuesday, February 4, 2014 @ 14:28:01
  Author: lcarlier
Revision: 205087

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

Added:
  elfutils/repos/testing-i686/
  elfutils/repos/testing-i686/PKGBUILD
(from rev 205086, elfutils/trunk/PKGBUILD)
  elfutils/repos/testing-i686/fix-run-backtrace-native-core-test.patch
(from rev 205086, elfutils/trunk/fix-run-backtrace-native-core-test.patch)
  elfutils/repos/testing-x86_64/
  elfutils/repos/testing-x86_64/PKGBUILD
(from rev 205086, elfutils/trunk/PKGBUILD)
  elfutils/repos/testing-x86_64/fix-run-backtrace-native-core-test.patch
(from rev 205086, elfutils/trunk/fix-run-backtrace-native-core-test.patch)

-+
 testing-i686/PKGBUILD   |   52 ++
 testing-i686/fix-run-backtrace-native-core-test.patch   |   43 +++
 testing-x86_64/PKGBUILD |   52 ++
 testing-x86_64/fix-run-backtrace-native-core-test.patch |   43 +++
 4 files changed, 190 insertions(+)

Copied: elfutils/repos/testing-i686/PKGBUILD (from rev 205086, 
elfutils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:28:01 UTC (rev 205087)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Andrej Gelenberg andrej.gelenb...@udo.edu
+
+pkgname=elfutils
+pkgver=0.158
+pkgrel=1
+pkgdesc=Libraries and utilities to handle ELF object files and DWARF 
debugging information
+arch=('i686' 'x86_64')
+url=https://fedorahosted.org/elfutils/;
+license=('LGPL3' 'GPL' 'GPL3')
+depends=('gcc-libs' 'zlib' 'bzip2' 'xz')
+provides=('libelf')
+replaces=('libelf')
+conflicts=('libelf')
+source=(https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2{,.sig}
+fix-run-backtrace-native-core-test.patch)
+options=('staticlibs')
+sha1sums=('09adbbf0f3a35bb1bcb77c2eaa40de8d3443af4d'
+  'SKIP')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+  patch -Np1 -i ../fix-run-backtrace-native-core-test.patch
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  CFLAGS+= -g  # required for test-suite success
+  ./configure --prefix=/usr --program-prefix=eu-
+
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+  
+  rm ${pkgdir}/usr/lib/lib{asm,dw,elf}.a
+}
+sha1sums=('09adbbf0f3a35bb1bcb77c2eaa40de8d3443af4d'
+  'SKIP'
+  '8ecef640f3d1229cdf45ffda016a69848c18e61b')

Copied: elfutils/repos/testing-i686/fix-run-backtrace-native-core-test.patch 
(from rev 205086, elfutils/trunk/fix-run-backtrace-native-core-test.patch)
===
--- testing-i686/fix-run-backtrace-native-core-test.patch   
(rev 0)
+++ testing-i686/fix-run-backtrace-native-core-test.patch   2014-02-04 
13:28:01 UTC (rev 205087)
@@ -0,0 +1,43 @@
+From e922ec4e3bcd7c164a9ce424accac4394e7d5afd Mon Sep 17 00:00:00 2001
+From: Matthias Klose d...@ubuntu.com
+Date: Tue, 07 Jan 2014 09:25:29 +
+Subject: tests: backtrace-subr.sh (check_native_core) should check core file 
name.
+
+Needed when /proc/sys/kernel/core_uses_pid is set to 0. Try to rename
+the core file, and if it does still fail, skip the test.
+
+Signed-off-by: Mark Wielaard m...@redhat.com
+---
+diff --git a/tests/ChangeLog b/tests/ChangeLog
+index 63b7bed..7e9dcf4 100644
+--- a/tests/ChangeLog
 b/tests/ChangeLog
+@@ -1,3 +1,9 @@
++2014-01-07  Matthias Klose d...@ubuntu.com
++
++  * backtrace-subr.sh (check_native_core): Check to see if core file
++  was created without .PID extension, if so mv core to core.PID.
++  Skip test if no core file was created or could be found.
++
+ 2014-01-04  Mark Wielaard  m...@redhat.com
+ 
+   * backtrace-data.c (main): Don't assert if raise returns.
+diff --git a/tests/backtrace-subr.sh b/tests/backtrace-subr.sh
+index e7ece91..62b873c 100644
+--- a/tests/backtrace-subr.sh
 b/tests/backtrace-subr.sh
+@@ -111,6 +111,11 @@ check_native_core()
+ 
+   # Skip the test if we cannot adjust core ulimit.
+   core=core.`ulimit -c unlimited || exit 77; set +ex; testrun 
${abs_builddir}/$child --gencore; true`
++  # see if /proc/sys/kernel/core_uses_pid is set to 0
++  if [ -f core ]; then
++mv core $core
++  fi
++  if [ ! -f $core ]; then exit 77; fi
+ 
+   if [ x$SAVED_VALGRIND_CMD != x ]; then
+ VALGRIND_CMD=$SAVED_VALGRIND_CMD
+--
+cgit v0.9.2
+

Copied: elfutils/repos/testing-x86_64/PKGBUILD (from rev 205086, 
elfutils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:28:01 UTC (rev 205087)
@@ -0,0 +1,52 @@
+# $Id$
+# 

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

2014-02-04 Thread Laurent Carlier
Date: Tuesday, February 4, 2014 @ 14:41:47
  Author: lcarlier
Revision: 105283

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-elfutils/repos/multilib-testing-x86_64/
  lib32-elfutils/repos/multilib-testing-x86_64/PKGBUILD
(from rev 105282, lib32-elfutils/trunk/PKGBUILD)
  
lib32-elfutils/repos/multilib-testing-x86_64/fix-run-backtrace-native-core-test.patch
(from rev 105282, 
lib32-elfutils/trunk/fix-run-backtrace-native-core-test.patch)
  lib32-elfutils/repos/multilib-testing-x86_64/git-fixes.patch
(from rev 105282, lib32-elfutils/trunk/git-fixes.patch)

--+
 PKGBUILD |   41 +++
 fix-run-backtrace-native-core-test.patch |   43 
 git-fixes.patch  |   75 +
 3 files changed, 159 insertions(+)

Copied: lib32-elfutils/repos/multilib-testing-x86_64/PKGBUILD (from rev 105282, 
lib32-elfutils/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2014-02-04 13:41:47 UTC (rev 105283)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Andrej Gelenberg andrej.gelenb...@udo.edu
+
+_pkgbasename=elfutils
+pkgname=lib32-elfutils
+pkgver=0.158
+pkgrel=1
+pkgdesc=Collection of libraries for working with ELF object files and DWARF 
debugging information (32-bit)
+arch=('x86_64')
+url=https://fedorahosted.org/elfutils/;
+license=('LGPL3' 'GPL' 'GPL3')
+depends=('lib32-bzip2' 'lib32-zlib' 'elfutils')
+makedepends=('gcc-multilib')
+source=(https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2)
+sha1sums=('09adbbf0f3a35bb1bcb77c2eaa40de8d3443af4d')
+
+build() {
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+   
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+  CFLAGS+= -g  # required for test-suite success
+  
+  ./configure --prefix=/usr --libdir=/usr/lib32
+  make
+}
+
+#check() {
+#  cd ${srcdir}/${_pkgbasename}-${pkgver}
+#
+#  make check
+#}
+
+package() {
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+  rm -rf ${pkgdir}/usr/{bin,include,share}
+}

Copied: 
lib32-elfutils/repos/multilib-testing-x86_64/fix-run-backtrace-native-core-test.patch
 (from rev 105282, 
lib32-elfutils/trunk/fix-run-backtrace-native-core-test.patch)
===
--- multilib-testing-x86_64/fix-run-backtrace-native-core-test.patch
(rev 0)
+++ multilib-testing-x86_64/fix-run-backtrace-native-core-test.patch
2014-02-04 13:41:47 UTC (rev 105283)
@@ -0,0 +1,43 @@
+From e922ec4e3bcd7c164a9ce424accac4394e7d5afd Mon Sep 17 00:00:00 2001
+From: Matthias Klose d...@ubuntu.com
+Date: Tue, 07 Jan 2014 09:25:29 +
+Subject: tests: backtrace-subr.sh (check_native_core) should check core file 
name.
+
+Needed when /proc/sys/kernel/core_uses_pid is set to 0. Try to rename
+the core file, and if it does still fail, skip the test.
+
+Signed-off-by: Mark Wielaard m...@redhat.com
+---
+diff --git a/tests/ChangeLog b/tests/ChangeLog
+index 63b7bed..7e9dcf4 100644
+--- a/tests/ChangeLog
 b/tests/ChangeLog
+@@ -1,3 +1,9 @@
++2014-01-07  Matthias Klose d...@ubuntu.com
++
++  * backtrace-subr.sh (check_native_core): Check to see if core file
++  was created without .PID extension, if so mv core to core.PID.
++  Skip test if no core file was created or could be found.
++
+ 2014-01-04  Mark Wielaard  m...@redhat.com
+ 
+   * backtrace-data.c (main): Don't assert if raise returns.
+diff --git a/tests/backtrace-subr.sh b/tests/backtrace-subr.sh
+index e7ece91..62b873c 100644
+--- a/tests/backtrace-subr.sh
 b/tests/backtrace-subr.sh
+@@ -111,6 +111,11 @@ check_native_core()
+ 
+   # Skip the test if we cannot adjust core ulimit.
+   core=core.`ulimit -c unlimited || exit 77; set +ex; testrun 
${abs_builddir}/$child --gencore; true`
++  # see if /proc/sys/kernel/core_uses_pid is set to 0
++  if [ -f core ]; then
++mv core $core
++  fi
++  if [ ! -f $core ]; then exit 77; fi
+ 
+   if [ x$SAVED_VALGRIND_CMD != x ]; then
+ VALGRIND_CMD=$SAVED_VALGRIND_CMD
+--
+cgit v0.9.2
+

Copied: lib32-elfutils/repos/multilib-testing-x86_64/git-fixes.patch (from rev 
105282, lib32-elfutils/trunk/git-fixes.patch)
===
--- multilib-testing-x86_64/git-fixes.patch (rev 0)
+++ multilib-testing-x86_64/git-fixes.patch 2014-02-04 13:41:47 UTC (rev 
105283)
@@ -0,0 +1,75 @@
+From 57bd66cabf6e6b9ecf622cdbf350804897a8df58 Mon Sep 17 00:00:00 2001
+From: Roland McGrath rol...@hack.frob.com
+Date: Tue, 11 Dec 2012 17:42:07 +
+Subject: nm: Fix size passed to snprintf for invalid sh_name case.
+
+Signed-off-by: 

[arch-commits] Commit in lib32-elfutils/trunk (2 files)

2014-02-04 Thread Laurent Carlier
Date: Tuesday, February 4, 2014 @ 14:41:40
  Author: lcarlier
Revision: 105282

upgpkg: lib32-elfutils 0.158-1

upstream update 0.158

Added:
  lib32-elfutils/trunk/fix-run-backtrace-native-core-test.patch
Modified:
  lib32-elfutils/trunk/PKGBUILD

--+
 PKGBUILD |   14 -
 fix-run-backtrace-native-core-test.patch |   43 +
 2 files changed, 50 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:02:58 UTC (rev 105281)
+++ PKGBUILD2014-02-04 13:41:40 UTC (rev 105282)
@@ -4,7 +4,7 @@
 
 _pkgbasename=elfutils
 pkgname=lib32-elfutils
-pkgver=0.157
+pkgver=0.158
 pkgrel=1
 pkgdesc=Collection of libraries for working with ELF object files and DWARF 
debugging information (32-bit)
 arch=('x86_64')
@@ -13,7 +13,7 @@
 depends=('lib32-bzip2' 'lib32-zlib' 'elfutils')
 makedepends=('gcc-multilib')
 
source=(https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2)
-sha1sums=('5e3767206c7f1b3bcfe33bce99fe09686ef165d2')
+sha1sums=('09adbbf0f3a35bb1bcb77c2eaa40de8d3443af4d')
 
 build() {
   cd ${srcdir}/${_pkgbasename}-${pkgver}
@@ -27,12 +27,12 @@
   make
 }
 
-check() {
-  cd ${srcdir}/${_pkgbasename}-${pkgver}
+#check() {
+#  cd ${srcdir}/${_pkgbasename}-${pkgver}
+#
+#  make check
+#}
 
-  make check
-}
-
 package() {
   cd ${srcdir}/${_pkgbasename}-${pkgver}
 

Added: fix-run-backtrace-native-core-test.patch
===
--- fix-run-backtrace-native-core-test.patch(rev 0)
+++ fix-run-backtrace-native-core-test.patch2014-02-04 13:41:40 UTC (rev 
105282)
@@ -0,0 +1,43 @@
+From e922ec4e3bcd7c164a9ce424accac4394e7d5afd Mon Sep 17 00:00:00 2001
+From: Matthias Klose d...@ubuntu.com
+Date: Tue, 07 Jan 2014 09:25:29 +
+Subject: tests: backtrace-subr.sh (check_native_core) should check core file 
name.
+
+Needed when /proc/sys/kernel/core_uses_pid is set to 0. Try to rename
+the core file, and if it does still fail, skip the test.
+
+Signed-off-by: Mark Wielaard m...@redhat.com
+---
+diff --git a/tests/ChangeLog b/tests/ChangeLog
+index 63b7bed..7e9dcf4 100644
+--- a/tests/ChangeLog
 b/tests/ChangeLog
+@@ -1,3 +1,9 @@
++2014-01-07  Matthias Klose d...@ubuntu.com
++
++  * backtrace-subr.sh (check_native_core): Check to see if core file
++  was created without .PID extension, if so mv core to core.PID.
++  Skip test if no core file was created or could be found.
++
+ 2014-01-04  Mark Wielaard  m...@redhat.com
+ 
+   * backtrace-data.c (main): Don't assert if raise returns.
+diff --git a/tests/backtrace-subr.sh b/tests/backtrace-subr.sh
+index e7ece91..62b873c 100644
+--- a/tests/backtrace-subr.sh
 b/tests/backtrace-subr.sh
+@@ -111,6 +111,11 @@ check_native_core()
+ 
+   # Skip the test if we cannot adjust core ulimit.
+   core=core.`ulimit -c unlimited || exit 77; set +ex; testrun 
${abs_builddir}/$child --gencore; true`
++  # see if /proc/sys/kernel/core_uses_pid is set to 0
++  if [ -f core ]; then
++mv core $core
++  fi
++  if [ ! -f $core ]; then exit 77; fi
+ 
+   if [ x$SAVED_VALGRIND_CMD != x ]; then
+ VALGRIND_CMD=$SAVED_VALGRIND_CMD
+--
+cgit v0.9.2
+



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:47:33
  Author: svenstaro
Revision: 205090

upgpkg: kdegraphics-mobipocket 4.12.2-1

upstream release 4.12.2

Modified:
  kdegraphics-mobipocket/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:47:29 UTC (rev 205089)
+++ PKGBUILD2014-02-04 13:47:33 UTC (rev 205090)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdegraphics-mobipocket
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 pkgdesc=A collection of plugins to handle mobipocket files
 url=https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-mobipocket;
@@ -15,7 +15,7 @@
 conflicts=('kdegraphics-libs')
 install=${pkgname}.install
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('fd6d4836af12a5d7a70fd7dd42f9ae13e96c1a1f')
+sha1sums=('3cdcc15fa949cb33cdf5da292d5dad66f5d002bd')
 
 prepare() {
   mkdir build



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:47:29
  Author: svenstaro
Revision: 205089

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

Added:
  kdelibs/repos/testing-i686/
  kdelibs/repos/testing-i686/PKGBUILD
(from rev 205088, kdelibs/trunk/PKGBUILD)
  kdelibs/repos/testing-i686/archlinux-menu.patch
(from rev 205088, kdelibs/trunk/archlinux-menu.patch)
  kdelibs/repos/testing-i686/kde-applications-menu.patch
(from rev 205088, kdelibs/trunk/kde-applications-menu.patch)
  kdelibs/repos/testing-i686/kdelibs.install
(from rev 205088, kdelibs/trunk/kdelibs.install)
  kdelibs/repos/testing-i686/qt4.patch
(from rev 205088, kdelibs/trunk/qt4.patch)
  kdelibs/repos/testing-x86_64/
  kdelibs/repos/testing-x86_64/PKGBUILD
(from rev 205088, kdelibs/trunk/PKGBUILD)
  kdelibs/repos/testing-x86_64/archlinux-menu.patch
(from rev 205088, kdelibs/trunk/archlinux-menu.patch)
  kdelibs/repos/testing-x86_64/kde-applications-menu.patch
(from rev 205088, kdelibs/trunk/kde-applications-menu.patch)
  kdelibs/repos/testing-x86_64/kdelibs.install
(from rev 205088, kdelibs/trunk/kdelibs.install)
  kdelibs/repos/testing-x86_64/qt4.patch
(from rev 205088, kdelibs/trunk/qt4.patch)

+
 testing-i686/PKGBUILD  |   61 +++
 testing-i686/archlinux-menu.patch  |   22 +
 testing-i686/kde-applications-menu.patch   |   22 +
 testing-i686/kdelibs.install   |   13 +
 testing-i686/qt4.patch |   11 
 testing-x86_64/PKGBUILD|   61 +++
 testing-x86_64/archlinux-menu.patch|   22 +
 testing-x86_64/kde-applications-menu.patch |   22 +
 testing-x86_64/kdelibs.install |   13 +
 testing-x86_64/qt4.patch   |   11 
 10 files changed, 258 insertions(+)

Copied: kdelibs/repos/testing-i686/PKGBUILD (from rev 205088, 
kdelibs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:47:29 UTC (rev 205089)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdelibs
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=KDE Core Libraries
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kdelibs'
+license=('GPL' 'LGPL' 'FDL')
+depends=('strigi' 'attica' 'libxss' 'soprano' 'krb5' 'grantlee'
+'shared-desktop-ontologies' 'qca' 'libdbusmenu-qt' 'polkit-qt'
+'shared-mime-info' 'enchant' 'giflib' 'jasper' 'openexr'
+'docbook-xsl' 'upower' 'udisks2' 'libxcursor' 'phonon-qt4'
+'media-player-info' 'libxtst' 'libutempter' 'qtwebkit')
+makedepends=('cmake' 'automoc4' 'avahi' 'libgl' 'hspell' 'mesa')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
+'kde-applications-menu.patch' 'archlinux-menu.patch' 'qt4.patch')
+sha1sums=('05e324af3752953ca637c2a51d989155f9f6bb8a'
+  '86ee8c8660f19de8141ac99cd6943964d97a1ed7'
+  '63a850ab4196b9d06934f2b4a13acd9f7739bc67'
+  'ed1f57ee661e5c7440efcaba7e51d2554709701c')
+
+prepare() {
+   cd ${pkgname}-${pkgver}
+   # avoid file conflict with gnome-menus
+   patch -p1 -i ${srcdir}/kde-applications-menu.patch
+   # add Archlinux menu entry
+   patch -p1 -i ${srcdir}/archlinux-menu.patch
+   # qmake refers to Qt5
+   patch -p1 -i ${srcdir}/qt4.patch
+}
+
+build() {
+   mkdir build
+   cd build
+   cmake ../${pkgname}-${pkgver} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DKDE4_BUILD_TESTS=OFF \
+   -DCMAKE_SKIP_RPATH=ON \
+   -DKDE_DISTRIBUTION_TEXT='Arch Linux' \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DSYSCONF_INSTALL_DIR=/etc \
+   -DHTML_INSTALL_DIR=/usr/share/doc/kde/html \
+   -DKDE_DEFAULT_HOME='.kde4' \
+   -DWITH_FAM=OFF \
+   -DWITH_SOLID_UDISKS2=ON
+   make
+}
+
+package() {
+   cd ${srcdir}/build
+   make DESTDIR=${pkgdir} install
+
+   # cert bundle seems to be hardcoded
+   # link it to the one from ca-certificates
+   rm -f ${pkgdir}/usr/share/apps/kssl/ca-bundle.crt
+   ln -sf /etc/ssl/certs/ca-certificates.crt 
${pkgdir}/usr/share/apps/kssl/ca-bundle.crt
+}

Copied: kdelibs/repos/testing-i686/archlinux-menu.patch (from rev 205088, 
kdelibs/trunk/archlinux-menu.patch)
===
--- testing-i686/archlinux-menu.patch   (rev 0)
+++ testing-i686/archlinux-menu.patch   2014-02-04 13:47:29 UTC (rev 205089)
@@ -0,0 +1,22 @@
+--- kdelibs-4.3.98/kded/applications.menu  2010-01-31 19:28:11.0 
+
 

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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:47:46
  Author: svenstaro
Revision: 205094

upgpkg: kdepimlibs 4.12.2-1

upstream release 4.12.2

Modified:
  kdepimlibs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:47:43 UTC (rev 205093)
+++ PKGBUILD2014-02-04 13:47:46 UTC (rev 205094)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz pie...@archlinux.de
 
 pkgname=kdepimlibs
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 pkgdesc=KDE PIM Libraries
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4' 'boost' 'cyrus-sasl')
 install='kdepimlibs.install'
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('9ebd1a46bf86f08668b49d83fd58d23b168f742a')
+sha1sums=('43eba35906e51ec5d75874c184c57cfa994c2eaf')
 
 build() {
   mkdir build



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:47:43
  Author: svenstaro
Revision: 205093

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

Added:
  nepomuk-core/repos/testing-i686/
  nepomuk-core/repos/testing-i686/PKGBUILD
(from rev 205092, nepomuk-core/trunk/PKGBUILD)
  nepomuk-core/repos/testing-x86_64/
  nepomuk-core/repos/testing-x86_64/PKGBUILD
(from rev 205092, nepomuk-core/trunk/PKGBUILD)

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

Copied: nepomuk-core/repos/testing-i686/PKGBUILD (from rev 205092, 
nepomuk-core/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:47:43 UTC (rev 205093)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=nepomuk-core
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=Contains the central Nepomuk services like file indexing, file system 
monitoring, query, storage, client libraries
+url=https://projects.kde.org/projects/kde/kdelibs/nepomuk-core;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs' 'poppler-qt' 'taglib' 'ffmpeg' 'ebook-tools' 
'kdegraphics-mobipocket')
+makedepends=('cmake' 'automoc4' 'doxygen')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('1970ac31b0a73afbebc682cb8310d2b49affc65f')
+
+prepare() {
+  mkdir 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
+
+  # Fix the python shebang
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+${pkgdir}/usr/bin/nepomuk-simpleresource-rcgen
+}

Copied: nepomuk-core/repos/testing-x86_64/PKGBUILD (from rev 205092, 
nepomuk-core/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:47:43 UTC (rev 205093)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=nepomuk-core
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=Contains the central Nepomuk services like file indexing, file system 
monitoring, query, storage, client libraries
+url=https://projects.kde.org/projects/kde/kdelibs/nepomuk-core;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs' 'poppler-qt' 'taglib' 'ffmpeg' 'ebook-tools' 
'kdegraphics-mobipocket')
+makedepends=('cmake' 'automoc4' 'doxygen')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('1970ac31b0a73afbebc682cb8310d2b49affc65f')
+
+prepare() {
+  mkdir 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
+
+  # Fix the python shebang
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+${pkgdir}/usr/bin/nepomuk-simpleresource-rcgen
+}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:47:39
  Author: svenstaro
Revision: 205092

upgpkg: nepomuk-core 4.12.2-1

upstream release 4.12.2

Modified:
  nepomuk-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:47:37 UTC (rev 205091)
+++ PKGBUILD2014-02-04 13:47:39 UTC (rev 205092)
@@ -2,8 +2,8 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=nepomuk-core
-pkgver=4.12.1
-pkgrel=2
+pkgver=4.12.2
+pkgrel=1
 pkgdesc=Contains the central Nepomuk services like file indexing, file system 
monitoring, query, storage, client libraries
 url=https://projects.kde.org/projects/kde/kdelibs/nepomuk-core;
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 depends=('kdelibs' 'poppler-qt' 'taglib' 'ffmpeg' 'ebook-tools' 
'kdegraphics-mobipocket')
 makedepends=('cmake' 'automoc4' 'doxygen')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('61f06d7044fb5bd3adf2b09820f95cb898604540')
+sha1sums=('1970ac31b0a73afbebc682cb8310d2b49affc65f')
 
 prepare() {
   mkdir build



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:47:50
  Author: svenstaro
Revision: 205095

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

Added:
  kdepimlibs/repos/testing-i686/
  kdepimlibs/repos/testing-i686/PKGBUILD
(from rev 205094, kdepimlibs/trunk/PKGBUILD)
  kdepimlibs/repos/testing-i686/kdepimlibs.install
(from rev 205094, kdepimlibs/trunk/kdepimlibs.install)
  kdepimlibs/repos/testing-x86_64/
  kdepimlibs/repos/testing-x86_64/PKGBUILD
(from rev 205094, kdepimlibs/trunk/PKGBUILD)
  kdepimlibs/repos/testing-x86_64/kdepimlibs.install
(from rev 205094, kdepimlibs/trunk/kdepimlibs.install)

---+
 testing-i686/PKGBUILD |   32 
 testing-i686/kdepimlibs.install   |   11 +++
 testing-x86_64/PKGBUILD   |   32 
 testing-x86_64/kdepimlibs.install |   11 +++
 4 files changed, 86 insertions(+)

Copied: kdepimlibs/repos/testing-i686/PKGBUILD (from rev 205094, 
kdepimlibs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:47:50 UTC (rev 205095)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdepimlibs
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=KDE PIM Libraries
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kdepimlibs'
+license=('GPL' 'LGPL')
+depends=('nepomuk-core' 'gpgme' 'akonadi' 'libical' 'prison' 'qjson')
+makedepends=('cmake' 'automoc4' 'boost' 'cyrus-sasl')
+install='kdepimlibs.install'
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('43eba35906e51ec5d75874c184c57cfa994c2eaf')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kdepimlibs/repos/testing-i686/kdepimlibs.install (from rev 205094, 
kdepimlibs/trunk/kdepimlibs.install)
===
--- testing-i686/kdepimlibs.install (rev 0)
+++ testing-i686/kdepimlibs.install 2014-02-04 13:47:50 UTC (rev 205095)
@@ -0,0 +1,11 @@
+post_install() {
+   update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}
\ No newline at end of file

Copied: kdepimlibs/repos/testing-x86_64/PKGBUILD (from rev 205094, 
kdepimlibs/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:47:50 UTC (rev 205095)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdepimlibs
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=KDE PIM Libraries
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kdepimlibs'
+license=('GPL' 'LGPL')
+depends=('nepomuk-core' 'gpgme' 'akonadi' 'libical' 'prison' 'qjson')
+makedepends=('cmake' 'automoc4' 'boost' 'cyrus-sasl')
+install='kdepimlibs.install'
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('43eba35906e51ec5d75874c184c57cfa994c2eaf')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kdepimlibs/repos/testing-x86_64/kdepimlibs.install (from rev 205094, 
kdepimlibs/trunk/kdepimlibs.install)
===
--- testing-x86_64/kdepimlibs.install   (rev 0)
+++ testing-x86_64/kdepimlibs.install   2014-02-04 13:47:50 UTC (rev 205095)
@@ -0,0 +1,11 @@
+post_install() {
+   update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}
\ No newline at end of file



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:47:37
  Author: svenstaro
Revision: 205091

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

Added:
  kdegraphics-mobipocket/repos/testing-i686/
  kdegraphics-mobipocket/repos/testing-i686/PKGBUILD
(from rev 205090, kdegraphics-mobipocket/trunk/PKGBUILD)
  kdegraphics-mobipocket/repos/testing-i686/kdegraphics-mobipocket.install
(from rev 205090, 
kdegraphics-mobipocket/trunk/kdegraphics-mobipocket.install)
  kdegraphics-mobipocket/repos/testing-x86_64/
  kdegraphics-mobipocket/repos/testing-x86_64/PKGBUILD
(from rev 205090, kdegraphics-mobipocket/trunk/PKGBUILD)
  kdegraphics-mobipocket/repos/testing-x86_64/kdegraphics-mobipocket.install
(from rev 205090, 
kdegraphics-mobipocket/trunk/kdegraphics-mobipocket.install)

---+
 testing-i686/PKGBUILD |   36 
 testing-i686/kdegraphics-mobipocket.install   |   11 +++
 testing-x86_64/PKGBUILD   |   36 
 testing-x86_64/kdegraphics-mobipocket.install |   11 +++
 4 files changed, 94 insertions(+)

Copied: kdegraphics-mobipocket/repos/testing-i686/PKGBUILD (from rev 205090, 
kdegraphics-mobipocket/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:47:37 UTC (rev 205091)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdegraphics-mobipocket
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=A collection of plugins to handle mobipocket files
+url=https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-mobipocket;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdegraphics')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('3cdcc15fa949cb33cdf5da292d5dad66f5d002bd')
+
+prepare() {
+  mkdir 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: 
kdegraphics-mobipocket/repos/testing-i686/kdegraphics-mobipocket.install (from 
rev 205090, kdegraphics-mobipocket/trunk/kdegraphics-mobipocket.install)
===
--- testing-i686/kdegraphics-mobipocket.install (rev 0)
+++ testing-i686/kdegraphics-mobipocket.install 2014-02-04 13:47:37 UTC (rev 
205091)
@@ -0,0 +1,11 @@
+post_install() {
+update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: kdegraphics-mobipocket/repos/testing-x86_64/PKGBUILD (from rev 205090, 
kdegraphics-mobipocket/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:47:37 UTC (rev 205091)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdegraphics-mobipocket
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=A collection of plugins to handle mobipocket files
+url=https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-mobipocket;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdegraphics')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('3cdcc15fa949cb33cdf5da292d5dad66f5d002bd')
+
+prepare() {
+  mkdir 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: 
kdegraphics-mobipocket/repos/testing-x86_64/kdegraphics-mobipocket.install 
(from rev 205090, kdegraphics-mobipocket/trunk/kdegraphics-mobipocket.install)
===
--- testing-x86_64/kdegraphics-mobipocket.install   
(rev 0)
+++ testing-x86_64/kdegraphics-mobipocket.install   2014-02-04 13:47:37 UTC 
(rev 205091)
@@ -0,0 +1,11 @@
+post_install() {
+update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:47:52
  Author: svenstaro
Revision: 205096

upgpkg: oxygen-icons 4.12.2-1

upstream release 4.12.2

Modified:
  oxygen-icons/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:47:50 UTC (rev 205095)
+++ PKGBUILD2014-02-04 13:47:52 UTC (rev 205096)
@@ -5,7 +5,7 @@
 pkgbase=oxygen-icons
 pkgname=('oxygen-icons'
  'oxygen-icons-svg')
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 pkgdesc=The Oxygen Icon Theme
 arch=('any')
@@ -13,7 +13,7 @@
 license=('LGPL')
 makedepends=('cmake' 'automoc4')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('ee5d1658c9880e556b7e9304844fee026fab8c12')
+sha1sums=('5675835df6bacad7231ad21f1839a4fc753289ff')
 
 build() {
cd $srcdir



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:47:15
  Author: svenstaro
Revision: 205088

upgpkg: kdelibs 4.12.2-1

upstream release 4.12.2

Modified:
  kdelibs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:28:01 UTC (rev 205087)
+++ PKGBUILD2014-02-04 13:47:15 UTC (rev 205088)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz pie...@archlinux.de
 
 pkgname=kdelibs
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 pkgdesc=KDE Core Libraries
 arch=('i686' 'x86_64')
@@ -18,7 +18,7 @@
 install=${pkgname}.install
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
 'kde-applications-menu.patch' 'archlinux-menu.patch' 'qt4.patch')
-sha1sums=('b6c1b22a0fc3c9789d29ffef4d24b41afdf357bb'
+sha1sums=('05e324af3752953ca637c2a51d989155f9f6bb8a'
   '86ee8c8660f19de8141ac99cd6943964d97a1ed7'
   '63a850ab4196b9d06934f2b4a13acd9f7739bc67'
   'ed1f57ee661e5c7440efcaba7e51d2554709701c')



[arch-commits] Commit in oxygen-icons/repos (testing-any testing-any/PKGBUILD)

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:47:59
  Author: svenstaro
Revision: 205097

archrelease: copy trunk to testing-any

Added:
  oxygen-icons/repos/testing-any/
  oxygen-icons/repos/testing-any/PKGBUILD
(from rev 205096, oxygen-icons/trunk/PKGBUILD)

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

Copied: oxygen-icons/repos/testing-any/PKGBUILD (from rev 205096, 
oxygen-icons/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2014-02-04 13:47:59 UTC (rev 205097)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=oxygen-icons
+pkgname=('oxygen-icons'
+ 'oxygen-icons-svg')
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=The Oxygen Icon Theme
+arch=('any')
+url='http://www.oxygen-icons.org/'
+license=('LGPL')
+makedepends=('cmake' 'automoc4')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('5675835df6bacad7231ad21f1839a4fc753289ff')
+
+build() {
+   cd $srcdir
+   mkdir build
+   cd build
+   cmake ../${pkgname}-${pkgver} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DKDE4_BUILD_TESTS=OFF \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package_oxygen-icons() {
+   cd $srcdir/build
+   make DESTDIR=$pkgdir install
+}
+
+package_oxygen-icons-svg() {
+   pkgdesc=The Oxygen Icon Theme (Scalable Vector Graphics)
+   cd $srcdir/${pkgbase}-${pkgver}
+   find scalable -type f ! -name '*.sh' -exec \
+   install -D -m644 {} ${pkgdir}/usr/share/icons/oxygen/{} \;
+}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:48:31
  Author: svenstaro
Revision: 205099

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

Added:
  kactivities/repos/testing-i686/
  kactivities/repos/testing-i686/PKGBUILD
(from rev 205098, kactivities/trunk/PKGBUILD)
  kactivities/repos/testing-x86_64/
  kactivities/repos/testing-x86_64/PKGBUILD
(from rev 205098, kactivities/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   30 ++
 testing-x86_64/PKGBUILD |   30 ++
 2 files changed, 60 insertions(+)

Copied: kactivities/repos/testing-i686/PKGBUILD (from rev 205098, 
kactivities/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:48:31 UTC (rev 205099)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kactivities
+pkgver=4.12.2
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='API for using and interacting with the Activity Manager'
+url='https://projects.kde.org/projects/kde/kdelibs/kactivities'
+license=('GPL' 'FDL')
+depends=('nepomuk-core')
+makedepends=('cmake' 'automoc4' 'mesa')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('e5a247270947f0a7a7be45b0c231200cff3f8bc6')
+
+build() {
+  cd ${srcdir}
+  mkdir 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: kactivities/repos/testing-x86_64/PKGBUILD (from rev 205098, 
kactivities/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:48:31 UTC (rev 205099)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kactivities
+pkgver=4.12.2
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='API for using and interacting with the Activity Manager'
+url='https://projects.kde.org/projects/kde/kdelibs/kactivities'
+license=('GPL' 'FDL')
+depends=('nepomuk-core')
+makedepends=('cmake' 'automoc4' 'mesa')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('e5a247270947f0a7a7be45b0c231200cff3f8bc6')
+
+build() {
+  cd ${srcdir}
+  mkdir 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
+}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:48:27
  Author: svenstaro
Revision: 205098

upgpkg: kactivities 4.12.2-1

upstream release 4.12.2

Modified:
  kactivities/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:47:59 UTC (rev 205097)
+++ PKGBUILD2014-02-04 13:48:27 UTC (rev 205098)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kactivities
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 arch=('i686' 'x86_64')
 pkgdesc='API for using and interacting with the Activity Manager'
@@ -11,7 +11,7 @@
 depends=('nepomuk-core')
 makedepends=('cmake' 'automoc4' 'mesa')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('ac1feed30a4f15f6b8cbe003f768f236741527c0')
+sha1sums=('e5a247270947f0a7a7be45b0c231200cff3f8bc6')
 
 build() {
   cd ${srcdir}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:50:59
  Author: svenstaro
Revision: 205103

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

Added:
  kdepimlibs/repos/testing-i686/PKGBUILD
(from rev 205102, kdepimlibs/trunk/PKGBUILD)
  kdepimlibs/repos/testing-i686/kdepimlibs.install
(from rev 205102, kdepimlibs/trunk/kdepimlibs.install)
  kdepimlibs/repos/testing-x86_64/PKGBUILD
(from rev 205102, kdepimlibs/trunk/PKGBUILD)
  kdepimlibs/repos/testing-x86_64/kdepimlibs.install
(from rev 205102, kdepimlibs/trunk/kdepimlibs.install)
Deleted:
  kdepimlibs/repos/testing-i686/PKGBUILD
  kdepimlibs/repos/testing-i686/kdepimlibs.install
  kdepimlibs/repos/testing-x86_64/PKGBUILD
  kdepimlibs/repos/testing-x86_64/kdepimlibs.install

---+
 /PKGBUILD |   64 
 /kdepimlibs.install   |   22 
 testing-i686/PKGBUILD |   32 --
 testing-i686/kdepimlibs.install   |   11 --
 testing-x86_64/PKGBUILD   |   32 --
 testing-x86_64/kdepimlibs.install |   11 --
 6 files changed, 86 insertions(+), 86 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2014-02-04 13:50:54 UTC (rev 205102)
+++ testing-i686/PKGBUILD   2014-02-04 13:50:59 UTC (rev 205103)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdepimlibs
-pkgver=4.12.2
-pkgrel=1
-pkgdesc=KDE PIM Libraries
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kdepimlibs'
-license=('GPL' 'LGPL')
-depends=('nepomuk-core' 'gpgme' 'akonadi' 'libical' 'prison' 'qjson')
-makedepends=('cmake' 'automoc4' 'boost' 'cyrus-sasl')
-install='kdepimlibs.install'
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('43eba35906e51ec5d75874c184c57cfa994c2eaf')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdepimlibs/repos/testing-i686/PKGBUILD (from rev 205102, 
kdepimlibs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:50:59 UTC (rev 205103)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdepimlibs
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=KDE PIM Libraries
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kdepimlibs'
+license=('GPL' 'LGPL')
+depends=('nepomuk-core' 'gpgme' 'akonadi' 'libical' 'prison' 'qjson')
+makedepends=('cmake' 'automoc4' 'boost' 'cyrus-sasl')
+install='kdepimlibs.install'
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('43eba35906e51ec5d75874c184c57cfa994c2eaf')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: testing-i686/kdepimlibs.install
===
--- testing-i686/kdepimlibs.install 2014-02-04 13:50:54 UTC (rev 205102)
+++ testing-i686/kdepimlibs.install 2014-02-04 13:50:59 UTC (rev 205103)
@@ -1,11 +0,0 @@
-post_install() {
-   update-mime-database usr/share/mime  /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}
\ No newline at end of file

Copied: kdepimlibs/repos/testing-i686/kdepimlibs.install (from rev 205102, 
kdepimlibs/trunk/kdepimlibs.install)
===
--- testing-i686/kdepimlibs.install (rev 0)
+++ testing-i686/kdepimlibs.install 2014-02-04 13:50:59 UTC (rev 205103)
@@ -0,0 +1,11 @@
+post_install() {
+   update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}
\ No newline at end of file

Deleted: testing-x86_64/PKGBUILD
===
--- testing-x86_64/PKGBUILD 2014-02-04 13:50:54 UTC (rev 205102)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:50:59 UTC (rev 205103)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdepimlibs
-pkgver=4.12.2
-pkgrel=1
-pkgdesc=KDE PIM Libraries
-arch=('i686' 'x86_64')

[arch-commits] Commit in oxygen-icons/repos/testing-any (PKGBUILD PKGBUILD)

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:51:04
  Author: svenstaro
Revision: 205104

archrelease: copy trunk to testing-any

Added:
  oxygen-icons/repos/testing-any/PKGBUILD
(from rev 205103, oxygen-icons/trunk/PKGBUILD)
Deleted:
  oxygen-icons/repos/testing-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-02-04 13:50:59 UTC (rev 205103)
+++ PKGBUILD2014-02-04 13:51:04 UTC (rev 205104)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgbase=oxygen-icons
-pkgname=('oxygen-icons'
- 'oxygen-icons-svg')
-pkgver=4.12.2
-pkgrel=1
-pkgdesc=The Oxygen Icon Theme
-arch=('any')
-url='http://www.oxygen-icons.org/'
-license=('LGPL')
-makedepends=('cmake' 'automoc4')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('5675835df6bacad7231ad21f1839a4fc753289ff')
-
-build() {
-   cd $srcdir
-   mkdir build
-   cd build
-   cmake ../${pkgname}-${pkgver} \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DKDE4_BUILD_TESTS=OFF \
-   -DCMAKE_INSTALL_PREFIX=/usr
-   make
-}
-
-package_oxygen-icons() {
-   cd $srcdir/build
-   make DESTDIR=$pkgdir install
-}
-
-package_oxygen-icons-svg() {
-   pkgdesc=The Oxygen Icon Theme (Scalable Vector Graphics)
-   cd $srcdir/${pkgbase}-${pkgver}
-   find scalable -type f ! -name '*.sh' -exec \
-   install -D -m644 {} ${pkgdir}/usr/share/icons/oxygen/{} \;
-}

Copied: oxygen-icons/repos/testing-any/PKGBUILD (from rev 205103, 
oxygen-icons/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-02-04 13:51:04 UTC (rev 205104)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=oxygen-icons
+pkgname=('oxygen-icons'
+ 'oxygen-icons-svg')
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=The Oxygen Icon Theme
+arch=('any')
+url='http://www.oxygen-icons.org/'
+license=('LGPL')
+makedepends=('cmake' 'automoc4')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('5675835df6bacad7231ad21f1839a4fc753289ff')
+
+build() {
+   cd $srcdir
+   mkdir build
+   cd build
+   cmake ../${pkgname}-${pkgver} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DKDE4_BUILD_TESTS=OFF \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package_oxygen-icons() {
+   cd $srcdir/build
+   make DESTDIR=$pkgdir install
+}
+
+package_oxygen-icons-svg() {
+   pkgdesc=The Oxygen Icon Theme (Scalable Vector Graphics)
+   cd $srcdir/${pkgbase}-${pkgver}
+   find scalable -type f ! -name '*.sh' -exec \
+   install -D -m644 {} ${pkgdir}/usr/share/icons/oxygen/{} \;
+}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:51:12
  Author: svenstaro
Revision: 205106

upgpkg: kdebase-runtime 4.12.2-1

upstream release 4.12.2

Modified:
  kdebase-runtime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:51:11 UTC (rev 205105)
+++ PKGBUILD2014-02-04 13:51:12 UTC (rev 205106)
@@ -3,8 +3,8 @@
 # Contributor: Pierre Schmitz pie...@archlinux.de
 
 pkgname=kdebase-runtime
-pkgver=4.12.1
-pkgrel=3
+pkgver=4.12.2
+pkgrel=1
 pkgdesc=Plugins and applications necessary for the running of KDE 
applications
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/kde-runtime'
@@ -19,7 +19,7 @@
 'rarian: needed by KHelpCenter')
 install=${pkgname}.install
 
source=(http://download.kde.org/stable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;)
-sha1sums=('e62d0b6a8fea172ac4b36a16004f10161406872a')
+sha1sums=('935dd93d1a705de6b11dc489a56dfb40827b2046')
 
 prepare() {
   mkdir build



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:50:54
  Author: svenstaro
Revision: 205102

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

Added:
  nepomuk-core/repos/testing-i686/PKGBUILD
(from rev 205101, nepomuk-core/trunk/PKGBUILD)
  nepomuk-core/repos/testing-x86_64/PKGBUILD
(from rev 205101, nepomuk-core/trunk/PKGBUILD)
Deleted:
  nepomuk-core/repos/testing-i686/PKGBUILD
  nepomuk-core/repos/testing-x86_64/PKGBUILD

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

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2014-02-04 13:50:48 UTC (rev 205101)
+++ testing-i686/PKGBUILD   2014-02-04 13:50:54 UTC (rev 205102)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=nepomuk-core
-pkgver=4.12.2
-pkgrel=1
-pkgdesc=Contains the central Nepomuk services like file indexing, file system 
monitoring, query, storage, client libraries
-url=https://projects.kde.org/projects/kde/kdelibs/nepomuk-core;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs' 'poppler-qt' 'taglib' 'ffmpeg' 'ebook-tools' 
'kdegraphics-mobipocket')
-makedepends=('cmake' 'automoc4' 'doxygen')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('1970ac31b0a73afbebc682cb8310d2b49affc65f')
-
-prepare() {
-  mkdir 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
-
-  # Fix the python shebang
-  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
-${pkgdir}/usr/bin/nepomuk-simpleresource-rcgen
-}

Copied: nepomuk-core/repos/testing-i686/PKGBUILD (from rev 205101, 
nepomuk-core/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:50:54 UTC (rev 205102)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=nepomuk-core
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=Contains the central Nepomuk services like file indexing, file system 
monitoring, query, storage, client libraries
+url=https://projects.kde.org/projects/kde/kdelibs/nepomuk-core;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs' 'poppler-qt' 'taglib' 'ffmpeg' 'ebook-tools' 
'kdegraphics-mobipocket')
+makedepends=('cmake' 'automoc4' 'doxygen')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('1970ac31b0a73afbebc682cb8310d2b49affc65f')
+
+prepare() {
+  mkdir 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
+
+  # Fix the python shebang
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+${pkgdir}/usr/bin/nepomuk-simpleresource-rcgen
+}

Deleted: testing-x86_64/PKGBUILD
===
--- testing-x86_64/PKGBUILD 2014-02-04 13:50:48 UTC (rev 205101)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:50:54 UTC (rev 205102)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=nepomuk-core
-pkgver=4.12.2
-pkgrel=1
-pkgdesc=Contains the central Nepomuk services like file indexing, file system 
monitoring, query, storage, client libraries
-url=https://projects.kde.org/projects/kde/kdelibs/nepomuk-core;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs' 'poppler-qt' 'taglib' 'ffmpeg' 'ebook-tools' 
'kdegraphics-mobipocket')
-makedepends=('cmake' 'automoc4' 'doxygen')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('1970ac31b0a73afbebc682cb8310d2b49affc65f')
-
-prepare() {
-  mkdir 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
-
-  # Fix the python shebang
-  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
-${pkgdir}/usr/bin/nepomuk-simpleresource-rcgen
-}

Copied: nepomuk-core/repos/testing-x86_64/PKGBUILD (from rev 205101, 
nepomuk-core/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:50:54 UTC (rev 205102)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea 

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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:51:38
  Author: svenstaro
Revision: 205113

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

Added:
  kdebindings-smokeqt/repos/testing-i686/
  kdebindings-smokeqt/repos/testing-i686/PKGBUILD
(from rev 205112, kdebindings-smokeqt/trunk/PKGBUILD)
  kdebindings-smokeqt/repos/testing-x86_64/
  kdebindings-smokeqt/repos/testing-x86_64/PKGBUILD
(from rev 205112, kdebindings-smokeqt/trunk/PKGBUILD)

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

Copied: kdebindings-smokeqt/repos/testing-i686/PKGBUILD (from rev 205112, 
kdebindings-smokeqt/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:51:38 UTC (rev 205113)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-smokeqt
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=Language independent library for Qt bindings
+url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-smokegen' 'qimageblitz' 'qscintilla')
+makedepends=('cmake' 'automoc4' 'mesa')
+conflicts=('kdebindings-smoke')
+source=(http://download.kde.org/stable/${pkgver}/src/smokeqt-${pkgver}.tar.xz;)
+sha1sums=('8c367e022d04bc8ccdf9fcb1309620556826c742')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../smokeqt-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_Qwt5=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kdebindings-smokeqt/repos/testing-x86_64/PKGBUILD (from rev 205112, 
kdebindings-smokeqt/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:51:38 UTC (rev 205113)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-smokeqt
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=Language independent library for Qt bindings
+url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-smokegen' 'qimageblitz' 'qscintilla')
+makedepends=('cmake' 'automoc4' 'mesa')
+conflicts=('kdebindings-smoke')
+source=(http://download.kde.org/stable/${pkgver}/src/smokeqt-${pkgver}.tar.xz;)
+sha1sums=('8c367e022d04bc8ccdf9fcb1309620556826c742')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../smokeqt-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_Qwt5=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:51:27
  Author: svenstaro
Revision: 205110

upgpkg: kdebindings-smokegen 4.12.2-1

upstream release 4.12.2

Modified:
  kdebindings-smokegen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:51:25 UTC (rev 205109)
+++ PKGBUILD2014-02-04 13:51:27 UTC (rev 205110)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdebindings-smokegen
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 pkgdesc=A general purpose C++ parser with a plugin infrastructure
 url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokegen;
@@ -12,7 +12,7 @@
 makedepends=('cmake' 'automoc4')
 conflicts=('kdebindings-smoke')
 
source=(http://download.kde.org/stable/${pkgver}/src/smokegen-${pkgver}.tar.xz;)
-sha1sums=('a49111553d529e9606e2f3b4f589b551f25e87fd')
+sha1sums=('94ce0927bab5904a0d66dcace8920deca085b0de')
 
 build() {
   cd ${srcdir}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:51:11
  Author: svenstaro
Revision: 205105

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

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

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

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2014-02-04 13:51:04 UTC (rev 205104)
+++ testing-i686/PKGBUILD   2014-02-04 13:51:11 UTC (rev 205105)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kactivities
-pkgver=4.12.2
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='API for using and interacting with the Activity Manager'
-url='https://projects.kde.org/projects/kde/kdelibs/kactivities'
-license=('GPL' 'FDL')
-depends=('nepomuk-core')
-makedepends=('cmake' 'automoc4' 'mesa')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('e5a247270947f0a7a7be45b0c231200cff3f8bc6')
-
-build() {
-  cd ${srcdir}
-  mkdir 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: kactivities/repos/testing-i686/PKGBUILD (from rev 205104, 
kactivities/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:51:11 UTC (rev 205105)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kactivities
+pkgver=4.12.2
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='API for using and interacting with the Activity Manager'
+url='https://projects.kde.org/projects/kde/kdelibs/kactivities'
+license=('GPL' 'FDL')
+depends=('nepomuk-core')
+makedepends=('cmake' 'automoc4' 'mesa')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('e5a247270947f0a7a7be45b0c231200cff3f8bc6')
+
+build() {
+  cd ${srcdir}
+  mkdir 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: testing-x86_64/PKGBUILD
===
--- testing-x86_64/PKGBUILD 2014-02-04 13:51:04 UTC (rev 205104)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:51:11 UTC (rev 205105)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kactivities
-pkgver=4.12.2
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='API for using and interacting with the Activity Manager'
-url='https://projects.kde.org/projects/kde/kdelibs/kactivities'
-license=('GPL' 'FDL')
-depends=('nepomuk-core')
-makedepends=('cmake' 'automoc4' 'mesa')
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('e5a247270947f0a7a7be45b0c231200cff3f8bc6')
-
-build() {
-  cd ${srcdir}
-  mkdir 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: kactivities/repos/testing-x86_64/PKGBUILD (from rev 205104, 
kactivities/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:51:11 UTC (rev 205105)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kactivities
+pkgver=4.12.2
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='API for using and interacting with the Activity Manager'
+url='https://projects.kde.org/projects/kde/kdelibs/kactivities'
+license=('GPL' 'FDL')
+depends=('nepomuk-core')
+makedepends=('cmake' 'automoc4' 'mesa')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('e5a247270947f0a7a7be45b0c231200cff3f8bc6')
+
+build() {
+  cd ${srcdir}
+  mkdir 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
+}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:51:44
  Author: svenstaro
Revision: 205115

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

Added:
  libkexiv2/repos/testing-i686/
  libkexiv2/repos/testing-i686/PKGBUILD
(from rev 205114, libkexiv2/trunk/PKGBUILD)
  libkexiv2/repos/testing-x86_64/
  libkexiv2/repos/testing-x86_64/PKGBUILD
(from rev 205114, libkexiv2/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   32 
 testing-x86_64/PKGBUILD |   32 
 2 files changed, 64 insertions(+)

Copied: libkexiv2/repos/testing-i686/PKGBUILD (from rev 205114, 
libkexiv2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:51:44 UTC (rev 205115)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkexiv2
+pkgver=4.12.2
+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=('kdelibs')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('6c9221eab4be7b0b16beb7eff78d6187d68ed333')
+
+build() {
+  cd ${srcdir}
+  mkdir 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: libkexiv2/repos/testing-x86_64/PKGBUILD (from rev 205114, 
libkexiv2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:51:44 UTC (rev 205115)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkexiv2
+pkgver=4.12.2
+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=('kdelibs')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('6c9221eab4be7b0b16beb7eff78d6187d68ed333')
+
+build() {
+  cd ${srcdir}
+  mkdir 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
+}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:52:57
  Author: svenstaro
Revision: 205137

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

Added:
  libkdeedu/repos/testing-i686/
  libkdeedu/repos/testing-i686/PKGBUILD
(from rev 205136, libkdeedu/trunk/PKGBUILD)
  libkdeedu/repos/testing-i686/libkdeedu.install
(from rev 205136, libkdeedu/trunk/libkdeedu.install)
  libkdeedu/repos/testing-x86_64/
  libkdeedu/repos/testing-x86_64/PKGBUILD
(from rev 205136, libkdeedu/trunk/PKGBUILD)
  libkdeedu/repos/testing-x86_64/libkdeedu.install
(from rev 205136, libkdeedu/trunk/libkdeedu.install)

--+
 testing-i686/PKGBUILD|   33 +
 testing-i686/libkdeedu.install   |   11 +++
 testing-x86_64/PKGBUILD  |   33 +
 testing-x86_64/libkdeedu.install |   11 +++
 4 files changed, 88 insertions(+)

Copied: libkdeedu/repos/testing-i686/PKGBUILD (from rev 205136, 
libkdeedu/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:52:57 UTC (rev 205137)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkdeedu
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=Libraries used by KDE Education applications
+url=https://projects.kde.org/projects/kde/kdeedu/libkdeedu;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+replaces=('kdeedu-libkdeedu' 'kdeedu-data')
+options=('staticlibs') # libqtmmlwidget.a needed by KAlgebra
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('c6234a5e6e38ace2e2e34c381e5a3fd296660389')
+
+build() {
+  cd ${srcdir}
+  mkdir 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: libkdeedu/repos/testing-i686/libkdeedu.install (from rev 205136, 
libkdeedu/trunk/libkdeedu.install)
===
--- testing-i686/libkdeedu.install  (rev 0)
+++ testing-i686/libkdeedu.install  2014-02-04 13:52:57 UTC (rev 205137)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: libkdeedu/repos/testing-x86_64/PKGBUILD (from rev 205136, 
libkdeedu/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:52:57 UTC (rev 205137)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkdeedu
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=Libraries used by KDE Education applications
+url=https://projects.kde.org/projects/kde/kdeedu/libkdeedu;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+replaces=('kdeedu-libkdeedu' 'kdeedu-data')
+options=('staticlibs') # libqtmmlwidget.a needed by KAlgebra
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('c6234a5e6e38ace2e2e34c381e5a3fd296660389')
+
+build() {
+  cd ${srcdir}
+  mkdir 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: libkdeedu/repos/testing-x86_64/libkdeedu.install (from rev 205136, 
libkdeedu/trunk/libkdeedu.install)
===
--- testing-x86_64/libkdeedu.install(rev 0)
+++ testing-x86_64/libkdeedu.install2014-02-04 13:52:57 UTC (rev 205137)
@@ -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 nepomuk-widgets/repos (4 files)

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:52:43
  Author: svenstaro
Revision: 205133

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

Added:
  nepomuk-widgets/repos/testing-i686/
  nepomuk-widgets/repos/testing-i686/PKGBUILD
(from rev 205132, nepomuk-widgets/trunk/PKGBUILD)
  nepomuk-widgets/repos/testing-x86_64/
  nepomuk-widgets/repos/testing-x86_64/PKGBUILD
(from rev 205132, nepomuk-widgets/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   29 +
 testing-x86_64/PKGBUILD |   29 +
 2 files changed, 58 insertions(+)

Copied: nepomuk-widgets/repos/testing-i686/PKGBUILD (from rev 205132, 
nepomuk-widgets/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:52:43 UTC (rev 205133)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=nepomuk-widgets
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=The Library containing the Nepomuk Widgets
+url=https://projects.kde.org/projects/kde/kdelibs/nepomuk-widgets;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('nepomuk-core')
+makedepends=('cmake' 'automoc4')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('2933ad1b0557b82922510e1cf8fade6aa692a125')
+
+build() {
+  mkdir 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: nepomuk-widgets/repos/testing-x86_64/PKGBUILD (from rev 205132, 
nepomuk-widgets/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:52:43 UTC (rev 205133)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=nepomuk-widgets
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=The Library containing the Nepomuk Widgets
+url=https://projects.kde.org/projects/kde/kdelibs/nepomuk-widgets;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('nepomuk-core')
+makedepends=('cmake' 'automoc4')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('2933ad1b0557b82922510e1cf8fade6aa692a125')
+
+build() {
+  mkdir 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
+}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:52:15
  Author: svenstaro
Revision: 205124

upgpkg: kdebindings-perlqt 4.12.2-1

upstream release 4.12.2

Modified:
  kdebindings-perlqt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:52:13 UTC (rev 205123)
+++ PKGBUILD2014-02-04 13:52:15 UTC (rev 205124)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdebindings-perlqt
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 pkgdesc=Perl bindings for the Qt libraries
 url=https://projects.kde.org/projects/kde/kdebindings/perl/perlqt;
@@ -12,7 +12,7 @@
 depends=('kdebindings-smokeqt' 'perl-list-moreutils')
 makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
 source=(http://download.kde.org/stable/${pkgver}/src/perlqt-${pkgver}.tar.xz;)
-sha1sums=('1f0d2442405239983add85172e0a9ba031af71c7')
+sha1sums=('74b574e384a7ad6d9a8ec35a7e5e4e1b74b4652c')
 
 build() {
   mkdir build



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:52:27
  Author: svenstaro
Revision: 205128

upgpkg: kdebindings-qtruby 4.12.2-1

upstream release 4.12.2

Modified:
  kdebindings-qtruby/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:52:26 UTC (rev 205127)
+++ PKGBUILD2014-02-04 13:52:27 UTC (rev 205128)
@@ -2,8 +2,8 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdebindings-qtruby
-pkgver=4.12.1
-pkgrel=2
+pkgver=4.12.2
+pkgrel=1
 pkgdesc=Ruby bindings for the Qt libraries
 url=https://projects.kde.org/projects/kde/kdebindings/ruby/qtruby;
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
 conflicts=('kdebindings-ruby')
 source=(http://download.kde.org/stable/${pkgver}/src/qtruby-${pkgver}.tar.xz;)
-sha1sums=('c6a778cc4d5cdfc375f4121b03b5b44be9de158a')
+sha1sums=('540dd007ad44875438a7c2ca7c8b17903bab7b79')
 
 prepare() {
   mkdir build



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:52:20
  Author: svenstaro
Revision: 205125

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

Added:
  kdebindings-perlqt/repos/testing-i686/
  kdebindings-perlqt/repos/testing-i686/PKGBUILD
(from rev 205124, kdebindings-perlqt/trunk/PKGBUILD)
  kdebindings-perlqt/repos/testing-x86_64/
  kdebindings-perlqt/repos/testing-x86_64/PKGBUILD
(from rev 205124, kdebindings-perlqt/trunk/PKGBUILD)

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

Copied: kdebindings-perlqt/repos/testing-i686/PKGBUILD (from rev 205124, 
kdebindings-perlqt/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:52:20 UTC (rev 205125)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-perlqt
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=Perl bindings for the Qt libraries
+url=https://projects.kde.org/projects/kde/kdebindings/perl/perlqt;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-smokeqt' 'perl-list-moreutils')
+makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
+source=(http://download.kde.org/stable/${pkgver}/src/perlqt-${pkgver}.tar.xz;)
+sha1sums=('74b574e384a7ad6d9a8ec35a7e5e4e1b74b4652c')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../perlqt-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kdebindings-perlqt/repos/testing-x86_64/PKGBUILD (from rev 205124, 
kdebindings-perlqt/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:52:20 UTC (rev 205125)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-perlqt
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=Perl bindings for the Qt libraries
+url=https://projects.kde.org/projects/kde/kdebindings/perl/perlqt;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-smokeqt' 'perl-list-moreutils')
+makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
+source=(http://download.kde.org/stable/${pkgver}/src/perlqt-${pkgver}.tar.xz;)
+sha1sums=('74b574e384a7ad6d9a8ec35a7e5e4e1b74b4652c')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../perlqt-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:52:32
  Author: svenstaro
Revision: 205129

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

Added:
  kdebindings-qtruby/repos/testing-i686/
  kdebindings-qtruby/repos/testing-i686/PKGBUILD
(from rev 205128, kdebindings-qtruby/trunk/PKGBUILD)
  kdebindings-qtruby/repos/testing-x86_64/
  kdebindings-qtruby/repos/testing-x86_64/PKGBUILD
(from rev 205128, kdebindings-qtruby/trunk/PKGBUILD)

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

Copied: kdebindings-qtruby/repos/testing-i686/PKGBUILD (from rev 205128, 
kdebindings-qtruby/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:52:32 UTC (rev 205129)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-qtruby
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=Ruby bindings for the Qt libraries
+url=https://projects.kde.org/projects/kde/kdebindings/ruby/qtruby;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-smokeqt' 'ruby')
+makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
+conflicts=('kdebindings-ruby')
+source=(http://download.kde.org/stable/${pkgver}/src/qtruby-${pkgver}.tar.xz;)
+sha1sums=('540dd007ad44875438a7c2ca7c8b17903bab7b79')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../qtruby-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCUSTOM_RUBY_SITE_LIB_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorlibdir]') \
+-DCUSTOM_RUBY_SITE_ARCH_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorarchdir]')
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kdebindings-qtruby/repos/testing-x86_64/PKGBUILD (from rev 205128, 
kdebindings-qtruby/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:52:32 UTC (rev 205129)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-qtruby
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=Ruby bindings for the Qt libraries
+url=https://projects.kde.org/projects/kde/kdebindings/ruby/qtruby;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-smokeqt' 'ruby')
+makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
+conflicts=('kdebindings-ruby')
+source=(http://download.kde.org/stable/${pkgver}/src/qtruby-${pkgver}.tar.xz;)
+sha1sums=('540dd007ad44875438a7c2ca7c8b17903bab7b79')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../qtruby-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCUSTOM_RUBY_SITE_LIB_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorlibdir]') \
+-DCUSTOM_RUBY_SITE_ARCH_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorarchdir]')
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:52:26
  Author: svenstaro
Revision: 205127

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

Added:
  kdebindings-qyoto/repos/testing-i686/
  kdebindings-qyoto/repos/testing-i686/PKGBUILD
(from rev 205126, kdebindings-qyoto/trunk/PKGBUILD)
  kdebindings-qyoto/repos/testing-x86_64/
  kdebindings-qyoto/repos/testing-x86_64/PKGBUILD
(from rev 205126, kdebindings-qyoto/trunk/PKGBUILD)

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

Copied: kdebindings-qyoto/repos/testing-i686/PKGBUILD (from rev 205126, 
kdebindings-qyoto/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:52:26 UTC (rev 205127)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-qyoto
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=.NET/Mono bindings for the Qt libraries
+url=https://projects.kde.org/projects/kde/kdebindings/csharp/qyoto;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-smokeqt' 'mono')
+makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
+conflicts=('kdebindings-csharp')
+source=(http://download.kde.org/stable/${pkgver}/src/qyoto-${pkgver}.tar.xz;)
+sha1sums=('211cbf27ed51b6cf5ae10798d138bc4001de3c1f')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../qyoto-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kdebindings-qyoto/repos/testing-x86_64/PKGBUILD (from rev 205126, 
kdebindings-qyoto/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:52:26 UTC (rev 205127)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-qyoto
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=.NET/Mono bindings for the Qt libraries
+url=https://projects.kde.org/projects/kde/kdebindings/csharp/qyoto;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-smokeqt' 'mono')
+makedepends=('cmake' 'automoc4' 'kdebindings-smokegen')
+conflicts=('kdebindings-csharp')
+source=(http://download.kde.org/stable/${pkgver}/src/qyoto-${pkgver}.tar.xz;)
+sha1sums=('211cbf27ed51b6cf5ae10798d138bc4001de3c1f')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../qyoto-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:53:08
  Author: svenstaro
Revision: 205140

upgpkg: libkdcraw 4.12.2-1

upstream release 4.12.2

Modified:
  libkdcraw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:53:04 UTC (rev 205139)
+++ PKGBUILD2014-02-04 13:53:08 UTC (rev 205140)
@@ -2,8 +2,8 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=libkdcraw
-pkgver=4.12.1
-pkgrel=2
+pkgver=4.12.2
+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')
@@ -14,7 +14,7 @@
 conflicts=('kdegraphics-libs')
 install=${pkgname}.install
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('6c13e5b2fc0fccb057639d1e563e8d36fec96929')
+sha1sums=('112643a26a976560d00689a1c1b869b3468c15e5')
 
 prepare() {
   mkdir build



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:52:53
  Author: svenstaro
Revision: 205136

upgpkg: libkdeedu 4.12.2-1

upstream release 4.12.2

Modified:
  libkdeedu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:52:51 UTC (rev 205135)
+++ PKGBUILD2014-02-04 13:52:53 UTC (rev 205136)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=libkdeedu
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 pkgdesc=Libraries used by KDE Education applications
 url=https://projects.kde.org/projects/kde/kdeedu/libkdeedu;
@@ -14,7 +14,7 @@
 replaces=('kdeedu-libkdeedu' 'kdeedu-data')
 options=('staticlibs') # libqtmmlwidget.a needed by KAlgebra
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('cf3a05a3aac37fabca43d3554097ab63bf24ddca')
+sha1sums=('c6234a5e6e38ace2e2e34c381e5a3fd296660389')
 
 build() {
   cd ${srcdir}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:50:48
  Author: svenstaro
Revision: 205101

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

Added:
  kdegraphics-mobipocket/repos/testing-i686/PKGBUILD
(from rev 205100, kdegraphics-mobipocket/trunk/PKGBUILD)
  kdegraphics-mobipocket/repos/testing-i686/kdegraphics-mobipocket.install
(from rev 205100, 
kdegraphics-mobipocket/trunk/kdegraphics-mobipocket.install)
  kdegraphics-mobipocket/repos/testing-x86_64/PKGBUILD
(from rev 205100, kdegraphics-mobipocket/trunk/PKGBUILD)
  kdegraphics-mobipocket/repos/testing-x86_64/kdegraphics-mobipocket.install
(from rev 205100, 
kdegraphics-mobipocket/trunk/kdegraphics-mobipocket.install)
Deleted:
  kdegraphics-mobipocket/repos/testing-i686/PKGBUILD
  kdegraphics-mobipocket/repos/testing-i686/kdegraphics-mobipocket.install
  kdegraphics-mobipocket/repos/testing-x86_64/PKGBUILD
  kdegraphics-mobipocket/repos/testing-x86_64/kdegraphics-mobipocket.install

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

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2014-02-04 13:50:43 UTC (rev 205100)
+++ testing-i686/PKGBUILD   2014-02-04 13:50:48 UTC (rev 205101)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdegraphics-mobipocket
-pkgver=4.12.2
-pkgrel=1
-pkgdesc=A collection of plugins to handle mobipocket files
-url=https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-mobipocket;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs')
-makedepends=('cmake' 'automoc4')
-groups=('kde' 'kdegraphics')
-replaces=('kdegraphics-libs')
-conflicts=('kdegraphics-libs')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('3cdcc15fa949cb33cdf5da292d5dad66f5d002bd')
-
-prepare() {
-  mkdir 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: kdegraphics-mobipocket/repos/testing-i686/PKGBUILD (from rev 205100, 
kdegraphics-mobipocket/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:50:48 UTC (rev 205101)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdegraphics-mobipocket
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=A collection of plugins to handle mobipocket files
+url=https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-mobipocket;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+groups=('kde' 'kdegraphics')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('3cdcc15fa949cb33cdf5da292d5dad66f5d002bd')
+
+prepare() {
+  mkdir 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: testing-i686/kdegraphics-mobipocket.install
===
--- testing-i686/kdegraphics-mobipocket.install 2014-02-04 13:50:43 UTC (rev 
205100)
+++ testing-i686/kdegraphics-mobipocket.install 2014-02-04 13:50:48 UTC (rev 
205101)
@@ -1,11 +0,0 @@
-post_install() {
-update-desktop-database -q
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: 
kdegraphics-mobipocket/repos/testing-i686/kdegraphics-mobipocket.install (from 
rev 205100, kdegraphics-mobipocket/trunk/kdegraphics-mobipocket.install)
===
--- testing-i686/kdegraphics-mobipocket.install (rev 0)
+++ testing-i686/kdegraphics-mobipocket.install 2014-02-04 13:50:48 UTC (rev 
205101)
@@ -0,0 +1,11 @@
+post_install() {
+update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: testing-x86_64/PKGBUILD
===
--- testing-x86_64/PKGBUILD 2014-02-04 13:50:43 UTC (rev 

[arch-commits] Commit in kdelibs/repos (20 files)

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:50:43
  Author: svenstaro
Revision: 205100

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

Added:
  kdelibs/repos/testing-i686/PKGBUILD
(from rev 205099, kdelibs/trunk/PKGBUILD)
  kdelibs/repos/testing-i686/archlinux-menu.patch
(from rev 205099, kdelibs/trunk/archlinux-menu.patch)
  kdelibs/repos/testing-i686/kde-applications-menu.patch
(from rev 205099, kdelibs/trunk/kde-applications-menu.patch)
  kdelibs/repos/testing-i686/kdelibs.install
(from rev 205099, kdelibs/trunk/kdelibs.install)
  kdelibs/repos/testing-i686/qt4.patch
(from rev 205099, kdelibs/trunk/qt4.patch)
  kdelibs/repos/testing-x86_64/PKGBUILD
(from rev 205099, kdelibs/trunk/PKGBUILD)
  kdelibs/repos/testing-x86_64/archlinux-menu.patch
(from rev 205099, kdelibs/trunk/archlinux-menu.patch)
  kdelibs/repos/testing-x86_64/kde-applications-menu.patch
(from rev 205099, kdelibs/trunk/kde-applications-menu.patch)
  kdelibs/repos/testing-x86_64/kdelibs.install
(from rev 205099, kdelibs/trunk/kdelibs.install)
  kdelibs/repos/testing-x86_64/qt4.patch
(from rev 205099, kdelibs/trunk/qt4.patch)
Deleted:
  kdelibs/repos/testing-i686/PKGBUILD
  kdelibs/repos/testing-i686/archlinux-menu.patch
  kdelibs/repos/testing-i686/kde-applications-menu.patch
  kdelibs/repos/testing-i686/kdelibs.install
  kdelibs/repos/testing-i686/qt4.patch
  kdelibs/repos/testing-x86_64/PKGBUILD
  kdelibs/repos/testing-x86_64/archlinux-menu.patch
  kdelibs/repos/testing-x86_64/kde-applications-menu.patch
  kdelibs/repos/testing-x86_64/kdelibs.install
  kdelibs/repos/testing-x86_64/qt4.patch

+
 /PKGBUILD  |  122 +++
 /archlinux-menu.patch  |   44 +
 /kde-applications-menu.patch   |   44 +
 /kdelibs.install   |   26 +
 /qt4.patch |   22 
 testing-i686/PKGBUILD  |   61 -
 testing-i686/archlinux-menu.patch  |   22 
 testing-i686/kde-applications-menu.patch   |   22 
 testing-i686/kdelibs.install   |   13 --
 testing-i686/qt4.patch |   11 --
 testing-x86_64/PKGBUILD|   61 -
 testing-x86_64/archlinux-menu.patch|   22 
 testing-x86_64/kde-applications-menu.patch |   22 
 testing-x86_64/kdelibs.install |   13 --
 testing-x86_64/qt4.patch   |   11 --
 15 files changed, 258 insertions(+), 258 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2014-02-04 13:48:31 UTC (rev 205099)
+++ testing-i686/PKGBUILD   2014-02-04 13:50:43 UTC (rev 205100)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdelibs
-pkgver=4.12.2
-pkgrel=1
-pkgdesc=KDE Core Libraries
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kdelibs'
-license=('GPL' 'LGPL' 'FDL')
-depends=('strigi' 'attica' 'libxss' 'soprano' 'krb5' 'grantlee'
-'shared-desktop-ontologies' 'qca' 'libdbusmenu-qt' 'polkit-qt'
-'shared-mime-info' 'enchant' 'giflib' 'jasper' 'openexr'
-'docbook-xsl' 'upower' 'udisks2' 'libxcursor' 'phonon-qt4'
-'media-player-info' 'libxtst' 'libutempter' 'qtwebkit')
-makedepends=('cmake' 'automoc4' 'avahi' 'libgl' 'hspell' 'mesa')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
-'kde-applications-menu.patch' 'archlinux-menu.patch' 'qt4.patch')
-sha1sums=('05e324af3752953ca637c2a51d989155f9f6bb8a'
-  '86ee8c8660f19de8141ac99cd6943964d97a1ed7'
-  '63a850ab4196b9d06934f2b4a13acd9f7739bc67'
-  'ed1f57ee661e5c7440efcaba7e51d2554709701c')
-
-prepare() {
-   cd ${pkgname}-${pkgver}
-   # avoid file conflict with gnome-menus
-   patch -p1 -i ${srcdir}/kde-applications-menu.patch
-   # add Archlinux menu entry
-   patch -p1 -i ${srcdir}/archlinux-menu.patch
-   # qmake refers to Qt5
-   patch -p1 -i ${srcdir}/qt4.patch
-}
-
-build() {
-   mkdir build
-   cd build
-   cmake ../${pkgname}-${pkgver} \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DKDE4_BUILD_TESTS=OFF \
-   -DCMAKE_SKIP_RPATH=ON \
-   -DKDE_DISTRIBUTION_TEXT='Arch Linux' \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DSYSCONF_INSTALL_DIR=/etc \
-   -DHTML_INSTALL_DIR=/usr/share/doc/kde/html \
-   -DKDE_DEFAULT_HOME='.kde4' \
-   -DWITH_FAM=OFF \
-   -DWITH_SOLID_UDISKS2=ON
-   make
-}
-
-package() {
-   cd ${srcdir}/build
-   make DESTDIR=${pkgdir} install
-
-   # cert bundle seems to be hardcoded
-   # link it to the one 

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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:53:39
  Author: svenstaro
Revision: 205150

upgpkg: libkcompactdisc 4.12.2-1

upstream release 4.12.2

Modified:
  libkcompactdisc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:53:37 UTC (rev 205149)
+++ PKGBUILD2014-02-04 13:53:39 UTC (rev 205150)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=libkcompactdisc
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 pkgdesc=A library for interfacing with CDs
 url='https://projects.kde.org/projects/kde/kdemultimedia/libkcompactdisc'
@@ -13,7 +13,7 @@
 replaces=('kdemultimedia-kioslave')
 conflicts=('kdemultimedia-kioslave')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('9a73b47ef6d832a99dfe0e89e6b58d4b4aa3f930')
+sha1sums=('7ad552cbd6637ff4bb23ed02c8c4536da5b7185c')
 
 build() {
   cd ${srcdir}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:53:56
  Author: svenstaro
Revision: 205155

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

Added:
  libkmahjongg/repos/testing-i686/
  libkmahjongg/repos/testing-i686/PKGBUILD
(from rev 205154, libkmahjongg/trunk/PKGBUILD)
  libkmahjongg/repos/testing-x86_64/
  libkmahjongg/repos/testing-x86_64/PKGBUILD
(from rev 205154, libkmahjongg/trunk/PKGBUILD)

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

Copied: libkmahjongg/repos/testing-i686/PKGBUILD (from rev 205154, 
libkmahjongg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:53:56 UTC (rev 205155)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkmahjongg
+pkgver=4.12.2
+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=('libkdegames')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegames-libkmahjongg')
+conflicts=('kdegames-libkmahjongg')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('af2edbf816042678676044cccf66cbe8177a24e4')
+
+build() {
+  mkdir 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: libkmahjongg/repos/testing-x86_64/PKGBUILD (from rev 205154, 
libkmahjongg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:53:56 UTC (rev 205155)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkmahjongg
+pkgver=4.12.2
+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=('libkdegames')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegames-libkmahjongg')
+conflicts=('kdegames-libkmahjongg')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('af2edbf816042678676044cccf66cbe8177a24e4')
+
+build() {
+  mkdir 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
+}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:53:37
  Author: svenstaro
Revision: 205149

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

Added:
  libkcddb/repos/testing-i686/
  libkcddb/repos/testing-i686/PKGBUILD
(from rev 205148, libkcddb/trunk/PKGBUILD)
  libkcddb/repos/testing-x86_64/
  libkcddb/repos/testing-x86_64/PKGBUILD
(from rev 205148, libkcddb/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   32 
 testing-x86_64/PKGBUILD |   32 
 2 files changed, 64 insertions(+)

Copied: libkcddb/repos/testing-i686/PKGBUILD (from rev 205148, 
libkcddb/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:53:37 UTC (rev 205149)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkcddb
+pkgver=4.12.2
+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/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('1d17e64a1ec9250da4ea3ffce01b243ce4266999')
+
+build() {
+  cd ${srcdir}
+  mkdir 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/testing-x86_64/PKGBUILD (from rev 205148, 
libkcddb/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:53:37 UTC (rev 205149)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkcddb
+pkgver=4.12.2
+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/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('1d17e64a1ec9250da4ea3ffce01b243ce4266999')
+
+build() {
+  cd ${srcdir}
+  mkdir 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
+}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:53:20
  Author: svenstaro
Revision: 205144

upgpkg: libksane 4.12.2-1

upstream release 4.12.2

Modified:
  libksane/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:53:18 UTC (rev 205143)
+++ PKGBUILD2014-02-04 13:53:20 UTC (rev 205144)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=libksane
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 pkgdesc=An image scanning library
 url=https://projects.kde.org/projects/kde/kdegraphics/libs/libksane;
@@ -14,7 +14,7 @@
 conflicts=('kdegraphics-libs')
 install=${pkgname}.install
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('21229e29126df27b457ffaf140e9fabd4d9f5765')
+sha1sums=('c516f1fc6ec38eb31ab257dd50495977c86ccd15')
 
 build() {
   cd ${srcdir}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:53:18
  Author: svenstaro
Revision: 205143

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

Added:
  libkipi/repos/testing-i686/
  libkipi/repos/testing-i686/PKGBUILD
(from rev 205142, libkipi/trunk/PKGBUILD)
  libkipi/repos/testing-i686/libkipi.install
(from rev 205142, libkipi/trunk/libkipi.install)
  libkipi/repos/testing-x86_64/
  libkipi/repos/testing-x86_64/PKGBUILD
(from rev 205142, libkipi/trunk/PKGBUILD)
  libkipi/repos/testing-x86_64/libkipi.install
(from rev 205142, libkipi/trunk/libkipi.install)

+
 testing-i686/PKGBUILD  |   35 +++
 testing-i686/libkipi.install   |   11 +++
 testing-x86_64/PKGBUILD|   35 +++
 testing-x86_64/libkipi.install |   11 +++
 4 files changed, 92 insertions(+)

Copied: libkipi/repos/testing-i686/PKGBUILD (from rev 205142, 
libkipi/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:53:18 UTC (rev 205143)
@@ -0,0 +1,35 @@
+# $Id
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkipi
+pkgver=4.12.2
+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=('kdelibs')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('f8034b55b0ab85b45451373a3e2e758f5feb884a')
+
+prepare() {
+  mkdir 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: libkipi/repos/testing-i686/libkipi.install (from rev 205142, 
libkipi/trunk/libkipi.install)
===
--- testing-i686/libkipi.install(rev 0)
+++ testing-i686/libkipi.install2014-02-04 13:53:18 UTC (rev 205143)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: libkipi/repos/testing-x86_64/PKGBUILD (from rev 205142, 
libkipi/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:53:18 UTC (rev 205143)
@@ -0,0 +1,35 @@
+# $Id
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkipi
+pkgver=4.12.2
+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=('kdelibs')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('f8034b55b0ab85b45451373a3e2e758f5feb884a')
+
+prepare() {
+  mkdir 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: libkipi/repos/testing-x86_64/libkipi.install (from rev 205142, 
libkipi/trunk/libkipi.install)
===
--- testing-x86_64/libkipi.install  (rev 0)
+++ testing-x86_64/libkipi.install  2014-02-04 13:53:18 UTC (rev 205143)
@@ -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 kdeedu-analitza/trunk (PKGBUILD)

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:53:26
  Author: svenstaro
Revision: 205146

upgpkg: kdeedu-analitza 4.12.2-1

upstream release 4.12.2

Modified:
  kdeedu-analitza/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:53:24 UTC (rev 205145)
+++ PKGBUILD2014-02-04 13:53:26 UTC (rev 205146)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-analitza
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 pkgdesc=A library to add mathematical features to your program
 url=https://projects.kde.org/projects/kde/kdeedu/analitza;
@@ -12,7 +12,7 @@
 depends=('kdebase-runtime' 'glu')
 makedepends=('cmake' 'automoc4')
 
source=(http://download.kde.org/stable/${pkgver}/src/analitza-${pkgver}.tar.xz;)
-sha1sums=('784438e4d485696ee19222b968dca10cef13a562')
+sha1sums=('7d06a5bb421ef5a2b5083a9f71bdc985746eee9b')
 
 prepare() {
   mkdir build



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:53:49
  Author: svenstaro
Revision: 205153

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

Added:
  libkdegames/repos/testing-i686/
  libkdegames/repos/testing-i686/PKGBUILD
(from rev 205152, libkdegames/trunk/PKGBUILD)
  libkdegames/repos/testing-x86_64/
  libkdegames/repos/testing-x86_64/PKGBUILD
(from rev 205152, libkdegames/trunk/PKGBUILD)

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

Copied: libkdegames/repos/testing-i686/PKGBUILD (from rev 205152, 
libkdegames/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:53:49 UTC (rev 205153)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkdegames
+pkgver=4.12.2
+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=('kdelibs' 'openal')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegames-libkdegames')
+conflicts=('kdegames-libkdegames')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('c5704c8bcd711dba58fe894d5fa12d5ca6f9a306')
+
+build() {
+  mkdir 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: libkdegames/repos/testing-x86_64/PKGBUILD (from rev 205152, 
libkdegames/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:53:49 UTC (rev 205153)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkdegames
+pkgver=4.12.2
+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=('kdelibs' 'openal')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegames-libkdegames')
+conflicts=('kdegames-libkdegames')
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('c5704c8bcd711dba58fe894d5fa12d5ca6f9a306')
+
+build() {
+  mkdir 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
+}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:53:15
  Author: svenstaro
Revision: 205142

upgpkg: libkipi 4.12.2-1

upstream release 4.12.2

Modified:
  libkipi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:53:13 UTC (rev 205141)
+++ PKGBUILD2014-02-04 13:53:15 UTC (rev 205142)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=libkipi
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 pkgdesc=An interface to use kipi-plugins from a KDE application
 url=https://projects.kde.org/projects/kde/kdegraphics/libs/libkipi;
@@ -14,7 +14,7 @@
 conflicts=('kdegraphics-libs')
 install=${pkgname}.install
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('b79ecdfc3d5c9527c8de15b123b53ff397fcf237')
+sha1sums=('f8034b55b0ab85b45451373a3e2e758f5feb884a')
 
 prepare() {
   mkdir build



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:51:25
  Author: svenstaro
Revision: 205109

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

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

---+
 testing-i686/PKGBUILD |   34 
 testing-i686/kdepim-runtime.install   |   13 
 testing-x86_64/PKGBUILD   |   34 
 testing-x86_64/kdepim-runtime.install |   13 
 4 files changed, 94 insertions(+)

Copied: kdepim-runtime/repos/testing-i686/PKGBUILD (from rev 205108, 
kdepim-runtime/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:51:25 UTC (rev 205109)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdepim-runtime
+pkgver=4.12.2
+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=('kdebase-runtime' 'libkgapi' 'libkolab' 'libkfbapi')
+makedepends=('cmake' 'automoc4' 'boost')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('9ec15431754f8ea49f764cafa5bb87eda5fef5b6')
+
+prepare() {
+  mkdir 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: kdepim-runtime/repos/testing-i686/kdepim-runtime.install (from rev 
205108, kdepim-runtime/trunk/kdepim-runtime.install)
===
--- testing-i686/kdepim-runtime.install (rev 0)
+++ testing-i686/kdepim-runtime.install 2014-02-04 13:51:25 UTC (rev 205109)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-mime-database usr/share/mime  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdepim-runtime/repos/testing-x86_64/PKGBUILD (from rev 205108, 
kdepim-runtime/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:51:25 UTC (rev 205109)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdepim-runtime
+pkgver=4.12.2
+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=('kdebase-runtime' 'libkgapi' 'libkolab' 'libkfbapi')
+makedepends=('cmake' 'automoc4' 'boost')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('9ec15431754f8ea49f764cafa5bb87eda5fef5b6')
+
+prepare() {
+  mkdir 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: kdepim-runtime/repos/testing-x86_64/kdepim-runtime.install (from rev 
205108, kdepim-runtime/trunk/kdepim-runtime.install)
===
--- testing-x86_64/kdepim-runtime.install   (rev 0)
+++ testing-x86_64/kdepim-runtime.install   2014-02-04 13:51:25 UTC (rev 
205109)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-mime-database usr/share/mime  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:54:17
  Author: svenstaro
Revision: 205162

upgpkg: kdeaccessibility-kmousetool 4.12.2-1

upstream release 4.12.2

Modified:
  kdeaccessibility-kmousetool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:54:15 UTC (rev 205161)
+++ PKGBUILD2014-02-04 13:54:17 UTC (rev 205162)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeaccessibility-kmousetool
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 arch=('i686' 'x86_64')
 pkgdesc='Clicks the mouse for you, reducing the effects of RSI'
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 
source=(http://download.kde.org/stable/${pkgver}/src/kmousetool-${pkgver}.tar.xz;)
-sha1sums=('0bc87c97727a335818ee3af18d7a602d32683aef')
+sha1sums=('fce6e1b05120e2d0c1bc2d37abc78c387744a9ca')
 
 build() {
   cd ${srcdir}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:54:15
  Author: svenstaro
Revision: 205161

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

Added:
  kdeaccessibility-kmag/repos/testing-i686/
  kdeaccessibility-kmag/repos/testing-i686/PKGBUILD
(from rev 205160, kdeaccessibility-kmag/trunk/PKGBUILD)
  kdeaccessibility-kmag/repos/testing-i686/kdeaccessibility-kmag.install
(from rev 205160, kdeaccessibility-kmag/trunk/kdeaccessibility-kmag.install)
  kdeaccessibility-kmag/repos/testing-x86_64/
  kdeaccessibility-kmag/repos/testing-x86_64/PKGBUILD
(from rev 205160, kdeaccessibility-kmag/trunk/PKGBUILD)
  kdeaccessibility-kmag/repos/testing-x86_64/kdeaccessibility-kmag.install
(from rev 205160, kdeaccessibility-kmag/trunk/kdeaccessibility-kmag.install)

--+
 testing-i686/PKGBUILD|   32 +
 testing-i686/kdeaccessibility-kmag.install   |   11 
 testing-x86_64/PKGBUILD  |   32 +
 testing-x86_64/kdeaccessibility-kmag.install |   11 
 4 files changed, 86 insertions(+)

Copied: kdeaccessibility-kmag/repos/testing-i686/PKGBUILD (from rev 205160, 
kdeaccessibility-kmag/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:54:15 UTC (rev 205161)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdeaccessibility-kmag
+pkgver=4.12.2
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='Screen Magnifier'
+url='http://kde.org/applications/utilities/kmag/'
+license=('GPL' 'FDL')
+groups=('kde' 'kdeaccessibility')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/kmag-${pkgver}.tar.xz;)
+sha1sums=('db891d41100a2044f47728354885a3143b20293d')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../kmag-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeaccessibility-kmag/repos/testing-i686/kdeaccessibility-kmag.install 
(from rev 205160, kdeaccessibility-kmag/trunk/kdeaccessibility-kmag.install)
===
--- testing-i686/kdeaccessibility-kmag.install  (rev 0)
+++ testing-i686/kdeaccessibility-kmag.install  2014-02-04 13:54:15 UTC (rev 
205161)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdeaccessibility-kmag/repos/testing-x86_64/PKGBUILD (from rev 205160, 
kdeaccessibility-kmag/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:54:15 UTC (rev 205161)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdeaccessibility-kmag
+pkgver=4.12.2
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='Screen Magnifier'
+url='http://kde.org/applications/utilities/kmag/'
+license=('GPL' 'FDL')
+groups=('kde' 'kdeaccessibility')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/kmag-${pkgver}.tar.xz;)
+sha1sums=('db891d41100a2044f47728354885a3143b20293d')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../kmag-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+}

Copied: 
kdeaccessibility-kmag/repos/testing-x86_64/kdeaccessibility-kmag.install (from 
rev 205160, kdeaccessibility-kmag/trunk/kdeaccessibility-kmag.install)
===
--- testing-x86_64/kdeaccessibility-kmag.install
(rev 0)
+++ testing-x86_64/kdeaccessibility-kmag.install2014-02-04 13:54:15 UTC 
(rev 205161)
@@ -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 kdepim-runtime/trunk (PKGBUILD)

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:51:21
  Author: svenstaro
Revision: 205108

upgpkg: kdepim-runtime 4.12.2-1

upstream release 4.12.2

Modified:
  kdepim-runtime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:51:17 UTC (rev 205107)
+++ PKGBUILD2014-02-04 13:51:21 UTC (rev 205108)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz pie...@archlinux.de
 
 pkgname=kdepim-runtime
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 pkgdesc='Extends the functionality of kdepim'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4' 'boost')
 install=${pkgname}.install
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('0df4bc061f5c6aca896361358befb58a0425347f')
+sha1sums=('9ec15431754f8ea49f764cafa5bb87eda5fef5b6')
 
 prepare() {
   mkdir build



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:51:33
  Author: svenstaro
Revision: 205112

upgpkg: kdebindings-smokeqt 4.12.2-1

upstream release 4.12.2

Modified:
  kdebindings-smokeqt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:51:32 UTC (rev 205111)
+++ PKGBUILD2014-02-04 13:51:33 UTC (rev 205112)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdebindings-smokeqt
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 pkgdesc=Language independent library for Qt bindings
 url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt;
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4' 'mesa')
 conflicts=('kdebindings-smoke')
 
source=(http://download.kde.org/stable/${pkgver}/src/smokeqt-${pkgver}.tar.xz;)
-sha1sums=('34c6ff147cafe9ca252e8e223b6272a62d9b6b4c')
+sha1sums=('8c367e022d04bc8ccdf9fcb1309620556826c742')
 
 prepare() {
   mkdir build



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:51:32
  Author: svenstaro
Revision: 205111

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

Added:
  kdebindings-smokegen/repos/testing-i686/
  kdebindings-smokegen/repos/testing-i686/PKGBUILD
(from rev 205110, kdebindings-smokegen/trunk/PKGBUILD)
  kdebindings-smokegen/repos/testing-x86_64/
  kdebindings-smokegen/repos/testing-x86_64/PKGBUILD
(from rev 205110, kdebindings-smokegen/trunk/PKGBUILD)

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

Copied: kdebindings-smokegen/repos/testing-i686/PKGBUILD (from rev 205110, 
kdebindings-smokegen/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:51:32 UTC (rev 205111)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-smokegen
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=A general purpose C++ parser with a plugin infrastructure
+url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokegen;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+conflicts=('kdebindings-smoke')
+source=(http://download.kde.org/stable/${pkgver}/src/smokegen-${pkgver}.tar.xz;)
+sha1sums=('94ce0927bab5904a0d66dcace8920deca085b0de')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../smokegen-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Copied: kdebindings-smokegen/repos/testing-x86_64/PKGBUILD (from rev 205110, 
kdebindings-smokegen/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:51:32 UTC (rev 205111)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-smokegen
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=A general purpose C++ parser with a plugin infrastructure
+url=https://projects.kde.org/projects/kde/kdebindings/smoke/smokegen;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+conflicts=('kdebindings-smoke')
+source=(http://download.kde.org/stable/${pkgver}/src/smokegen-${pkgver}.tar.xz;)
+sha1sums=('94ce0927bab5904a0d66dcace8920deca085b0de')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../smokegen-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:54:11
  Author: svenstaro
Revision: 205160

upgpkg: kdeaccessibility-kmag 4.12.2-1

upstream release 4.12.2

Modified:
  kdeaccessibility-kmag/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:54:09 UTC (rev 205159)
+++ PKGBUILD2014-02-04 13:54:11 UTC (rev 205160)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeaccessibility-kmag
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 arch=('i686' 'x86_64')
 pkgdesc='Screen Magnifier'
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 source=(http://download.kde.org/stable/${pkgver}/src/kmag-${pkgver}.tar.xz;)
-sha1sums=('041327e9a241660b1b64defe4585d78f1e2fc0f5')
+sha1sums=('db891d41100a2044f47728354885a3143b20293d')
 
 build() {
   cd ${srcdir}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:54:42
  Author: svenstaro
Revision: 205171

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

Added:
  kdeadmin-kuser/repos/testing-i686/
  kdeadmin-kuser/repos/testing-i686/PKGBUILD
(from rev 205170, kdeadmin-kuser/trunk/PKGBUILD)
  kdeadmin-kuser/repos/testing-i686/kdeadmin-kuser.install
(from rev 205170, kdeadmin-kuser/trunk/kdeadmin-kuser.install)
  kdeadmin-kuser/repos/testing-x86_64/
  kdeadmin-kuser/repos/testing-x86_64/PKGBUILD
(from rev 205170, kdeadmin-kuser/trunk/PKGBUILD)
  kdeadmin-kuser/repos/testing-x86_64/kdeadmin-kuser.install
(from rev 205170, kdeadmin-kuser/trunk/kdeadmin-kuser.install)

---+
 testing-i686/PKGBUILD |   31 +++
 testing-i686/kdeadmin-kuser.install   |   11 +++
 testing-x86_64/PKGBUILD   |   31 +++
 testing-x86_64/kdeadmin-kuser.install |   11 +++
 4 files changed, 84 insertions(+)

Copied: kdeadmin-kuser/repos/testing-i686/PKGBUILD (from rev 205170, 
kdeadmin-kuser/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:54:42 UTC (rev 205171)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdeadmin-kuser
+pkgver=4.12.2
+pkgrel=1
+pkgdesc='User Manager'
+url='http://kde.org/applications/system/kuser/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeadmin')
+depends=('kdebase-runtime' 'kdepimlibs')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/kuser-${pkgver}.tar.xz;)
+sha1sums=('4cc2e13b81f5b62295947c92a7879f12d0a2f160')
+
+build() {
+  mkdir 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/testing-i686/kdeadmin-kuser.install (from rev 
205170, kdeadmin-kuser/trunk/kdeadmin-kuser.install)
===
--- testing-i686/kdeadmin-kuser.install (rev 0)
+++ testing-i686/kdeadmin-kuser.install 2014-02-04 13:54:42 UTC (rev 205171)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdeadmin-kuser/repos/testing-x86_64/PKGBUILD (from rev 205170, 
kdeadmin-kuser/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:54:42 UTC (rev 205171)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdeadmin-kuser
+pkgver=4.12.2
+pkgrel=1
+pkgdesc='User Manager'
+url='http://kde.org/applications/system/kuser/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeadmin')
+depends=('kdebase-runtime' 'kdepimlibs')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/kuser-${pkgver}.tar.xz;)
+sha1sums=('4cc2e13b81f5b62295947c92a7879f12d0a2f160')
+
+build() {
+  mkdir 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/testing-x86_64/kdeadmin-kuser.install (from rev 
205170, kdeadmin-kuser/trunk/kdeadmin-kuser.install)
===
--- testing-x86_64/kdeadmin-kuser.install   (rev 0)
+++ testing-x86_64/kdeadmin-kuser.install   2014-02-04 13:54:42 UTC (rev 
205171)
@@ -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 kdeadmin-kcron/trunk (PKGBUILD)

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:54:28
  Author: svenstaro
Revision: 205166

upgpkg: kdeadmin-kcron 4.12.2-1

upstream release 4.12.2

Modified:
  kdeadmin-kcron/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:54:26 UTC (rev 205165)
+++ PKGBUILD2014-02-04 13:54:28 UTC (rev 205166)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeadmin-kcron
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 pkgdesc='Configure and schedule tasks'
 url='http://userbase.kde.org/KCron'
@@ -12,7 +12,7 @@
 depends=('kdebase-runtime')
 makedepends=('cmake' 'automoc4')
 source=(http://download.kde.org/stable/${pkgver}/src/kcron-${pkgver}.tar.xz;)
-sha1sums=('caa299a77659a120cc52a03c70fa0e1634419c9a')
+sha1sums=('d1c6679484ba6bd46e24dbbf97d91c5c577f')
 
 build() {
   mkdir build



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:54:45
  Author: svenstaro
Revision: 205172

upgpkg: kdeartwork 4.12.2-1

upstream release 4.12.2

Modified:
  kdeartwork/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:54:42 UTC (rev 205171)
+++ PKGBUILD2014-02-04 13:54:45 UTC (rev 205172)
@@ -11,7 +11,7 @@
  'kdeartwork-styles'
  'kdeartwork-wallpapers'
  'kdeartwork-weatherwallpapers')
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -19,7 +19,7 @@
 groups=('kde' 'kdeartwork')
 makedepends=('cmake' 'automoc4' 'xscreensaver' 'eigen' 'kdebase-workspace' 
'libkexiv2')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz;)
-sha1sums=('7b1de59e6fbe58e2e8244058e14521531b85c6da')
+sha1sums=('c18fbaa746b177c9f71d3115e108a60cf3acd0ae')
 
 build() {
cd $srcdir



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:54:32
  Author: svenstaro
Revision: 205167

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

Added:
  kdeadmin-kcron/repos/testing-i686/
  kdeadmin-kcron/repos/testing-i686/PKGBUILD
(from rev 205166, kdeadmin-kcron/trunk/PKGBUILD)
  kdeadmin-kcron/repos/testing-x86_64/
  kdeadmin-kcron/repos/testing-x86_64/PKGBUILD
(from rev 205166, kdeadmin-kcron/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   30 ++
 testing-x86_64/PKGBUILD |   30 ++
 2 files changed, 60 insertions(+)

Copied: kdeadmin-kcron/repos/testing-i686/PKGBUILD (from rev 205166, 
kdeadmin-kcron/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:54:32 UTC (rev 205167)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdeadmin-kcron
+pkgver=4.12.2
+pkgrel=1
+pkgdesc='Configure and schedule tasks'
+url='http://userbase.kde.org/KCron'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeadmin')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+source=(http://download.kde.org/stable/${pkgver}/src/kcron-${pkgver}.tar.xz;)
+sha1sums=('d1c6679484ba6bd46e24dbbf97d91c5c577f')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kcron-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kdeadmin-kcron/repos/testing-x86_64/PKGBUILD (from rev 205166, 
kdeadmin-kcron/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:54:32 UTC (rev 205167)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdeadmin-kcron
+pkgver=4.12.2
+pkgrel=1
+pkgdesc='Configure and schedule tasks'
+url='http://userbase.kde.org/KCron'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeadmin')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+source=(http://download.kde.org/stable/${pkgver}/src/kcron-${pkgver}.tar.xz;)
+sha1sums=('d1c6679484ba6bd46e24dbbf97d91c5c577f')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kcron-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:54:39
  Author: svenstaro
Revision: 205170

upgpkg: kdeadmin-kuser 4.12.2-1

upstream release 4.12.2

Modified:
  kdeadmin-kuser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:54:37 UTC (rev 205169)
+++ PKGBUILD2014-02-04 13:54:39 UTC (rev 205170)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeadmin-kuser
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 pkgdesc='User Manager'
 url='http://kde.org/applications/system/kuser/'
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 source=(http://download.kde.org/stable/${pkgver}/src/kuser-${pkgver}.tar.xz;)
-sha1sums=('539fdc9b26094d6ce36b2786d2db7fb6bd84afc2')
+sha1sums=('4cc2e13b81f5b62295947c92a7879f12d0a2f160')
 
 build() {
   mkdir build



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:51:17
  Author: svenstaro
Revision: 205107

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

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

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

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

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

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

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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:55:23
  Author: svenstaro
Revision: 205174

upgpkg: kdebase-konsole 4.12.2-1

upstream release 4.12.2

Modified:
  kdebase-konsole/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:54:55 UTC (rev 205173)
+++ PKGBUILD2014-02-04 13:55:23 UTC (rev 205174)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdebase-konsole
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://kde.org/applications/system/konsole/'
@@ -12,7 +12,7 @@
 depends=('kdebase-runtime' 'kdebase-lib')
 makedepends=('cmake' 'automoc4')
 
source=(http://download.kde.org/stable/${pkgver}/src/konsole-${pkgver}.tar.xz;)
-sha1sums=('d54eab1494b4e36db1f9385273e6fa09260a4e28')
+sha1sums=('85548a5982e62f1482d4512921dca293b3ef0b82')
 
 build() {
   cd ${srcdir}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:55:31
  Author: svenstaro
Revision: 205176

upgpkg: kdebindings-kimono 4.12.2-1

upstream release 4.12.2

Modified:
  kdebindings-kimono/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:55:30 UTC (rev 205175)
+++ PKGBUILD2014-02-04 13:55:31 UTC (rev 205176)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdebindings-kimono
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 pkgdesc=.NET/Mono bindings for the KDE libraries
 url=https://projects.kde.org/projects/kde/kdebindings/csharp/kimono;
@@ -14,7 +14,7 @@
 optdepends=('kdepimlibs: akonadi bindings')
 conflicts=('kdebindings-csharp')
 source=(http://download.kde.org/stable/${pkgver}/src/kimono-${pkgver}.tar.xz;)
-sha1sums=('e689bad826eac85b582162245281434a2cec4c47')
+sha1sums=('f9fc6912fe7e69b4c9f40377275ce2e2a5369a14')
 
 build() {
   cd ${srcdir}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:55:39
  Author: svenstaro
Revision: 205178

upgpkg: kdebindings-korundum 4.12.2-1

upstream release 4.12.2

Modified:
  kdebindings-korundum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:55:36 UTC (rev 205177)
+++ PKGBUILD2014-02-04 13:55:39 UTC (rev 205178)
@@ -2,8 +2,8 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdebindings-korundum
-pkgver=4.12.1
-pkgrel=2
+pkgver=4.12.2
+pkgrel=1
 pkgdesc=Ruby bindings for libraries created by the KDE community
 url=https://projects.kde.org/projects/kde/kdebindings/ruby/korundum;
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 'kdepimlibs: akonadi bindings')
 conflicts=('kdebindings-ruby')
 
source=(http://download.kde.org/stable/${pkgver}/src/korundum-${pkgver}.tar.xz;)
-sha1sums=('69e3c248c867be083c29e1603a795cc69b82c670')
+sha1sums=('19b17e5791a0097469afc1af580f1f4dced9acde')
 
 prepare() {
   mkdir build



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:55:53
  Author: svenstaro
Revision: 205182

upgpkg: kdebindings-perlkde 4.12.2-1

upstream release 4.12.2

Modified:
  kdebindings-perlkde/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:55:50 UTC (rev 205181)
+++ PKGBUILD2014-02-04 13:55:53 UTC (rev 205182)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdebindings-perlkde
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 pkgdesc=Perl bindings for the KDE libraries
 url=https://projects.kde.org/projects/kde/kdebindings/perl/perlkde;
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'kdepimlibs'
  'kdegraphics-okular' 'kdesdk-kate')
 
source=(http://download.kde.org/stable/${pkgver}/src/perlkde-${pkgver}.tar.xz;)
-sha1sums=('2fb317b1fedd6c3fa8f3fb7cc8dd8ef5c1c3b4cb')
+sha1sums=('4e2bb44cd0c422d2b0efa2cc55722ca34e26267a')
 
 build() {
   mkdir build



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:51:46
  Author: svenstaro
Revision: 205116

upgpkg: kdegraphics-okular 4.12.2-1

upstream release 4.12.2

Modified:
  kdegraphics-okular/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:51:44 UTC (rev 205115)
+++ PKGBUILD2014-02-04 13:51:46 UTC (rev 205116)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdegraphics-okular
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 pkgdesc='Document Viewer'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 source=(http://download.kde.org/stable/${pkgver}/src/okular-${pkgver}.tar.xz;)
-sha1sums=('79bb43dab9292b6fd1dfd4201b3cffbf8be0be5d')
+sha1sums=('02f8276f0f7d5d3425d1204fded7ee3cec8637e6')
 
 prepare() {
   mkdir build



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:51:40
  Author: svenstaro
Revision: 205114

upgpkg: libkexiv2 4.12.2-1

upstream release 4.12.2

Modified:
  libkexiv2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:51:38 UTC (rev 205113)
+++ PKGBUILD2014-02-04 13:51:40 UTC (rev 205114)
@@ -2,8 +2,8 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=libkexiv2
-pkgver=4.12.1
-pkgrel=2
+pkgver=4.12.2
+pkgrel=1
 pkgdesc=A library to manipulate pictures metadata
 url=https://projects.kde.org/projects/kde/kdegraphics/libs/libkexiv2;
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 replaces=('kdegraphics-libs')
 conflicts=('kdegraphics-libs')
 
source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('9cb3fdaa777a7030a9d15dec38dbb90c32c0e7d7')
+sha1sums=('6c9221eab4be7b0b16beb7eff78d6187d68ed333')
 
 build() {
   cd ${srcdir}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:52:51
  Author: svenstaro
Revision: 205135

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

Added:
  kdebase/repos/testing-i686/
  kdebase/repos/testing-i686/PKGBUILD
(from rev 205134, kdebase/trunk/PKGBUILD)
  kdebase/repos/testing-i686/kdebase-dolphin.install
(from rev 205134, kdebase/trunk/kdebase-dolphin.install)
  kdebase/repos/testing-i686/kdebase-konqueror.install
(from rev 205134, kdebase/trunk/kdebase-konqueror.install)
  kdebase/repos/testing-i686/kdebase.install
(from rev 205134, kdebase/trunk/kdebase.install)
  kdebase/repos/testing-x86_64/
  kdebase/repos/testing-x86_64/PKGBUILD
(from rev 205134, kdebase/trunk/PKGBUILD)
  kdebase/repos/testing-x86_64/kdebase-dolphin.install
(from rev 205134, kdebase/trunk/kdebase-dolphin.install)
  kdebase/repos/testing-x86_64/kdebase-konqueror.install
(from rev 205134, kdebase/trunk/kdebase-konqueror.install)
  kdebase/repos/testing-x86_64/kdebase.install
(from rev 205134, kdebase/trunk/kdebase.install)

--+
 testing-i686/PKGBUILD|  127 +
 testing-i686/kdebase-dolphin.install |   11 ++
 testing-i686/kdebase-konqueror.install   |   12 ++
 testing-i686/kdebase.install |   11 ++
 testing-x86_64/PKGBUILD  |  127 +
 testing-x86_64/kdebase-dolphin.install   |   11 ++
 testing-x86_64/kdebase-konqueror.install |   12 ++
 testing-x86_64/kdebase.install   |   11 ++
 8 files changed, 322 insertions(+)

Copied: kdebase/repos/testing-i686/PKGBUILD (from rev 205134, 
kdebase/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:52:51 UTC (rev 205135)
@@ -0,0 +1,127 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=kdebase
+pkgname=('kdebase-dolphin'
+ 'kdebase-kdepasswd'
+ 'kdebase-kdialog'
+ 'kdebase-keditbookmarks'
+ 'kdebase-kfind'
+ 'kdebase-konq-plugins'
+ 'kdebase-konqueror'
+ 'kdebase-lib'
+ 'kdebase-plasma')
+pkgver=4.12.2
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.kde.org'
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdebase')
+makedepends=('kdelibs' 'cmake' 'automoc4' 'tidyhtml' 'nepomuk-widgets')
+source=(http://download.kde.org/stable/${pkgver}/src/kde-baseapps-${pkgver}.tar.xz;)
+sha1sums=('7002c8d1a8f4fb1735ad70b8cb1a106876323f94')
+
+prepare() {
+  mkdir 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-dolphin() {
+   pkgdesc='File Manager'
+   depends=('kdebase-runtime' 'kdebase-lib' 'nepomuk-widgets')
+   optdepends=('kdegraphics-svgpart: thumbailers for SVG files'
+   'kdegraphics-thumbnailers: thumbnailers for various 
graphics files'
+'kdemultimedia-ffmpegthumbs: thumbnailers for video files'
+'kdemultimedia-mplayerthumbs: thumbnailers for video files'
+'kdesdk-thumbnailers: thumbnailers for development files'
+'icoutils: thumbnailers for MS files'
+   'ruby: servicemenu installation')
+   url=http://kde.org/applications/system/dolphin/;
+   install=kdebase-dolphin.install
+   cd $srcdir/build/dolphin
+   make DESTDIR=$pkgdir install
+   cd $srcdir/build/doc/dolphin
+   make DESTDIR=$pkgdir install
+}
+
+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')
+   

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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:55:50
  Author: svenstaro
Revision: 205181

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

Added:
  kdebindings-kross/repos/testing-i686/
  kdebindings-kross/repos/testing-i686/PKGBUILD
(from rev 205180, kdebindings-kross/trunk/PKGBUILD)
  kdebindings-kross/repos/testing-x86_64/
  kdebindings-kross/repos/testing-x86_64/PKGBUILD
(from rev 205180, kdebindings-kross/trunk/PKGBUILD)

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

Copied: kdebindings-kross/repos/testing-i686/PKGBUILD (from rev 205180, 
kdebindings-kross/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:55:50 UTC (rev 205181)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-kross
+pkgname=('kdebindings-kross-python'
+# 'kdebindings-kross-ruby'
+ 'kdebindings-kross-java')
+pkgver=4.12.2
+pkgrel=1
+url=https://projects.kde.org/projects/kde/kdebindings/kross-interpreters;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('kdelibs' 'cmake' 'automoc4' 'python2' 'java-environment')
+source=(http://download.kde.org/stable/${pkgver}/src/kross-interpreters-${pkgver}.tar.xz;)
+sha1sums=('af4af5d3706d91235b2e9614b4c98717a7996e11')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../kross-interpreters-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_ruby=OFF \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-kross-python() {
+  pkgdesc=Python2 language interpreters to enable in-process scripting with 
Kross
+  depends=('kdelibs' 'python2')
+
+  cd ${srcdir}/build/python
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-kross-java() {
+  pkgdesc=Java language interpreters to enable in-process scripting with 
Kross
+  depends=('kdelibs' 'java-environment')
+
+  cd ${srcdir}/build/java
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-kross-ruby() {
+  pkgdesc=Ruby language interpreters to enable in-process scripting with 
Kross
+  depends=('kdelibs' 'ruby')
+
+  cd ${srcdir}/build/ruby
+  make DESTDIR=${pkgdir} install
+}

Copied: kdebindings-kross/repos/testing-x86_64/PKGBUILD (from rev 205180, 
kdebindings-kross/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:55:50 UTC (rev 205181)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-kross
+pkgname=('kdebindings-kross-python'
+# 'kdebindings-kross-ruby'
+ 'kdebindings-kross-java')
+pkgver=4.12.2
+pkgrel=1
+url=https://projects.kde.org/projects/kde/kdebindings/kross-interpreters;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('kdelibs' 'cmake' 'automoc4' 'python2' 'java-environment')
+source=(http://download.kde.org/stable/${pkgver}/src/kross-interpreters-${pkgver}.tar.xz;)
+sha1sums=('af4af5d3706d91235b2e9614b4c98717a7996e11')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../kross-interpreters-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_ruby=OFF \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-kross-python() {
+  pkgdesc=Python2 language interpreters to enable in-process scripting with 
Kross
+  depends=('kdelibs' 'python2')
+
+  cd ${srcdir}/build/python
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-kross-java() {
+  pkgdesc=Java language interpreters to enable in-process scripting with 
Kross
+  depends=('kdelibs' 'java-environment')
+
+  cd ${srcdir}/build/java
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-kross-ruby() {
+  pkgdesc=Ruby language interpreters to enable in-process scripting with 
Kross
+  depends=('kdelibs' 'ruby')
+
+  cd ${srcdir}/build/ruby
+  make DESTDIR=${pkgdir} install
+}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:56:00
  Author: svenstaro
Revision: 205183

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

Added:
  kdebindings-perlkde/repos/testing-i686/
  kdebindings-perlkde/repos/testing-i686/PKGBUILD
(from rev 205182, kdebindings-perlkde/trunk/PKGBUILD)
  kdebindings-perlkde/repos/testing-x86_64/
  kdebindings-perlkde/repos/testing-x86_64/PKGBUILD
(from rev 205182, kdebindings-perlkde/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   32 
 testing-x86_64/PKGBUILD |   32 
 2 files changed, 64 insertions(+)

Copied: kdebindings-perlkde/repos/testing-i686/PKGBUILD (from rev 205182, 
kdebindings-perlkde/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:56:00 UTC (rev 205183)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-perlkde
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=Perl bindings for the KDE libraries
+url=https://projects.kde.org/projects/kde/kdebindings/perl/perlkde;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-perlqt' 'kdebindings-smokekde')
+makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'kdepimlibs'
+ 'kdegraphics-okular' 'kdesdk-kate')
+source=(http://download.kde.org/stable/${pkgver}/src/perlkde-${pkgver}.tar.xz;)
+sha1sums=('4e2bb44cd0c422d2b0efa2cc55722ca34e26267a')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../perlkde-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kdebindings-perlkde/repos/testing-x86_64/PKGBUILD (from rev 205182, 
kdebindings-perlkde/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:56:00 UTC (rev 205183)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-perlkde
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=Perl bindings for the KDE libraries
+url=https://projects.kde.org/projects/kde/kdebindings/perl/perlkde;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-perlqt' 'kdebindings-smokekde')
+makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'kdepimlibs'
+ 'kdegraphics-okular' 'kdesdk-kate')
+source=(http://download.kde.org/stable/${pkgver}/src/perlkde-${pkgver}.tar.xz;)
+sha1sums=('4e2bb44cd0c422d2b0efa2cc55722ca34e26267a')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../perlkde-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:52:59
  Author: svenstaro
Revision: 205138

upgpkg: kdeedu-marble 4.12.2-1

upstream release 4.12.2

Modified:
  kdeedu-marble/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:52:57 UTC (rev 205137)
+++ PKGBUILD2014-02-04 13:52:59 UTC (rev 205138)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-marble
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 pkgdesc=Desktop Globe
 url=http://kde.org/applications/education/marble/;
@@ -15,7 +15,7 @@
 'quazip: reading and displaying KMZ files')
 install=${pkgname}.install
 source=(http://download.kde.org/stable/${pkgver}/src/marble-${pkgver}.tar.xz;)
-sha1sums=('fa418ec92b6cd0f70d19e085725120f75c43e910')
+sha1sums=('3b9a02ea73a40801476ef67874df60b21512bcd3')
 
 prepare() {
   mkdir build



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:55:45
  Author: svenstaro
Revision: 205180

upgpkg: kdebindings-kross 4.12.2-1

upstream release 4.12.2

Modified:
  kdebindings-kross/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:55:43 UTC (rev 205179)
+++ PKGBUILD2014-02-04 13:55:45 UTC (rev 205180)
@@ -5,7 +5,7 @@
 pkgname=('kdebindings-kross-python'
 # 'kdebindings-kross-ruby'
  'kdebindings-kross-java')
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 url=https://projects.kde.org/projects/kde/kdebindings/kross-interpreters;
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 groups=('kdebindings')
 makedepends=('kdelibs' 'cmake' 'automoc4' 'python2' 'java-environment')
 
source=(http://download.kde.org/stable/${pkgver}/src/kross-interpreters-${pkgver}.tar.xz;)
-sha1sums=('d119972529acb916fddccd38fbd79f6a7e32a2e6')
+sha1sums=('af4af5d3706d91235b2e9614b4c98717a7996e11')
 
 build() {
   cd ${srcdir}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:56:07
  Author: svenstaro
Revision: 205185

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

Added:
  kdeedu-blinken/repos/testing-i686/
  kdeedu-blinken/repos/testing-i686/PKGBUILD
(from rev 205184, kdeedu-blinken/trunk/PKGBUILD)
  kdeedu-blinken/repos/testing-i686/kdeedu-blinken.install
(from rev 205184, kdeedu-blinken/trunk/kdeedu-blinken.install)
  kdeedu-blinken/repos/testing-x86_64/
  kdeedu-blinken/repos/testing-x86_64/PKGBUILD
(from rev 205184, kdeedu-blinken/trunk/PKGBUILD)
  kdeedu-blinken/repos/testing-x86_64/kdeedu-blinken.install
(from rev 205184, kdeedu-blinken/trunk/kdeedu-blinken.install)

---+
 testing-i686/PKGBUILD |   32 
 testing-i686/kdeedu-blinken.install   |   11 +++
 testing-x86_64/PKGBUILD   |   32 
 testing-x86_64/kdeedu-blinken.install |   11 +++
 4 files changed, 86 insertions(+)

Copied: kdeedu-blinken/repos/testing-i686/PKGBUILD (from rev 205184, 
kdeedu-blinken/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:56:07 UTC (rev 205185)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdeedu-blinken
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=Memory Enhancement Game
+url=http://kde.org/applications/education/blinken/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/blinken-${pkgver}.tar.xz;)
+sha1sums=('45b1b958192b7b2c5518fcb64266b6998abe1969')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../blinken-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Copied: kdeedu-blinken/repos/testing-i686/kdeedu-blinken.install (from rev 
205184, kdeedu-blinken/trunk/kdeedu-blinken.install)
===
--- testing-i686/kdeedu-blinken.install (rev 0)
+++ testing-i686/kdeedu-blinken.install 2014-02-04 13:56:07 UTC (rev 205185)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdeedu-blinken/repos/testing-x86_64/PKGBUILD (from rev 205184, 
kdeedu-blinken/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:56:07 UTC (rev 205185)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdeedu-blinken
+pkgver=4.12.2
+pkgrel=1
+pkgdesc=Memory Enhancement Game
+url=http://kde.org/applications/education/blinken/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/blinken-${pkgver}.tar.xz;)
+sha1sums=('45b1b958192b7b2c5518fcb64266b6998abe1969')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../blinken-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Copied: kdeedu-blinken/repos/testing-x86_64/kdeedu-blinken.install (from rev 
205184, kdeedu-blinken/trunk/kdeedu-blinken.install)
===
--- testing-x86_64/kdeedu-blinken.install   (rev 0)
+++ testing-x86_64/kdeedu-blinken.install   2014-02-04 13:56:07 UTC (rev 
205185)
@@ -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 kdeaccessibility-jovie/trunk (PKGBUILD)

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:53:58
  Author: svenstaro
Revision: 205156

upgpkg: kdeaccessibility-jovie 4.12.2-1

upstream release 4.12.2

Modified:
  kdeaccessibility-jovie/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-04 13:53:56 UTC (rev 205155)
+++ PKGBUILD2014-02-04 13:53:58 UTC (rev 205156)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeaccessibility-jovie
-pkgver=4.12.1
+pkgver=4.12.2
 pkgrel=1
 arch=('i686' 'x86_64')
 pkgdesc='A text to speech application'
@@ -14,7 +14,7 @@
 replaces=('kdeaccessibility-kttsd')
 install=${pkgname}.install
 source=(http://download.kde.org/stable/${pkgver}/src/jovie-${pkgver}.tar.xz;)
-sha1sums=('6c8dd0554500154d06d49c0838b7b237fdbca9d9')
+sha1sums=('b5f78f20298bd728a56a20e94d774b94fdcd5358')
 
 build() {
   mkdir build



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:51:50
  Author: svenstaro
Revision: 205117

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

Added:
  kdegraphics-okular/repos/testing-i686/
  kdegraphics-okular/repos/testing-i686/PKGBUILD
(from rev 205116, kdegraphics-okular/trunk/PKGBUILD)
  kdegraphics-okular/repos/testing-i686/kdegraphics-okular.install
(from rev 205116, kdegraphics-okular/trunk/kdegraphics-okular.install)
  kdegraphics-okular/repos/testing-x86_64/
  kdegraphics-okular/repos/testing-x86_64/PKGBUILD
(from rev 205116, kdegraphics-okular/trunk/PKGBUILD)
  kdegraphics-okular/repos/testing-x86_64/kdegraphics-okular.install
(from rev 205116, kdegraphics-okular/trunk/kdegraphics-okular.install)

---+
 testing-i686/PKGBUILD |   36 
 testing-i686/kdegraphics-okular.install   |   12 +
 testing-x86_64/PKGBUILD   |   36 
 testing-x86_64/kdegraphics-okular.install |   12 +
 4 files changed, 96 insertions(+)

Copied: kdegraphics-okular/repos/testing-i686/PKGBUILD (from rev 205116, 
kdegraphics-okular/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:51:50 UTC (rev 205117)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdegraphics-okular
+pkgver=4.12.2
+pkgrel=1
+pkgdesc='Document Viewer'
+arch=('i686' 'x86_64')
+url=http://kde.org/applications/graphics/okular/;
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegraphics')
+depends=('kdebase-runtime' 'qimageblitz' 'chmlib' 'djvulibre' 'libspectre'
+ 'libkexiv2')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/okular-${pkgver}.tar.xz;)
+sha1sums=('02f8276f0f7d5d3425d1204fded7ee3cec8637e6')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../okular-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_ActiveApp=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kdegraphics-okular/repos/testing-i686/kdegraphics-okular.install (from 
rev 205116, kdegraphics-okular/trunk/kdegraphics-okular.install)
===
--- testing-i686/kdegraphics-okular.install (rev 0)
+++ testing-i686/kdegraphics-okular.install 2014-02-04 13:51:50 UTC (rev 
205117)
@@ -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
+}

Copied: kdegraphics-okular/repos/testing-x86_64/PKGBUILD (from rev 205116, 
kdegraphics-okular/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:51:50 UTC (rev 205117)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdegraphics-okular
+pkgver=4.12.2
+pkgrel=1
+pkgdesc='Document Viewer'
+arch=('i686' 'x86_64')
+url=http://kde.org/applications/graphics/okular/;
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegraphics')
+depends=('kdebase-runtime' 'qimageblitz' 'chmlib' 'djvulibre' 'libspectre'
+ 'libkexiv2')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/okular-${pkgver}.tar.xz;)
+sha1sums=('02f8276f0f7d5d3425d1204fded7ee3cec8637e6')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../okular-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_ActiveApp=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kdegraphics-okular/repos/testing-x86_64/kdegraphics-okular.install 
(from rev 205116, kdegraphics-okular/trunk/kdegraphics-okular.install)
===
--- testing-x86_64/kdegraphics-okular.install   (rev 0)
+++ testing-x86_64/kdegraphics-okular.install   2014-02-04 13:51:50 UTC (rev 
205117)
@@ -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 libksane/repos (6 files)

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:53:24
  Author: svenstaro
Revision: 205145

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

Added:
  libksane/repos/testing-i686/
  libksane/repos/testing-i686/PKGBUILD
(from rev 205144, libksane/trunk/PKGBUILD)
  libksane/repos/testing-i686/libksane.install
(from rev 205144, libksane/trunk/libksane.install)
  libksane/repos/testing-x86_64/
  libksane/repos/testing-x86_64/PKGBUILD
(from rev 205144, libksane/trunk/PKGBUILD)
  libksane/repos/testing-x86_64/libksane.install
(from rev 205144, libksane/trunk/libksane.install)

-+
 testing-i686/PKGBUILD   |   33 +
 testing-i686/libksane.install   |   11 +++
 testing-x86_64/PKGBUILD |   33 +
 testing-x86_64/libksane.install |   11 +++
 4 files changed, 88 insertions(+)

Copied: libksane/repos/testing-i686/PKGBUILD (from rev 205144, 
libksane/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:53:24 UTC (rev 205145)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libksane
+pkgver=4.12.2
+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=('kdelibs' 'sane')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('c516f1fc6ec38eb31ab257dd50495977c86ccd15')
+
+build() {
+  cd ${srcdir}
+  mkdir 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: libksane/repos/testing-i686/libksane.install (from rev 205144, 
libksane/trunk/libksane.install)
===
--- testing-i686/libksane.install   (rev 0)
+++ testing-i686/libksane.install   2014-02-04 13:53:24 UTC (rev 205145)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: libksane/repos/testing-x86_64/PKGBUILD (from rev 205144, 
libksane/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:53:24 UTC (rev 205145)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libksane
+pkgver=4.12.2
+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=('kdelibs' 'sane')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('c516f1fc6ec38eb31ab257dd50495977c86ccd15')
+
+build() {
+  cd ${srcdir}
+  mkdir 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: libksane/repos/testing-x86_64/libksane.install (from rev 205144, 
libksane/trunk/libksane.install)
===
--- testing-x86_64/libksane.install (rev 0)
+++ testing-x86_64/libksane.install 2014-02-04 13:53:24 UTC (rev 205145)
@@ -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 libkcompactdisc/repos (4 files)

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:53:43
  Author: svenstaro
Revision: 205151

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

Added:
  libkcompactdisc/repos/testing-i686/
  libkcompactdisc/repos/testing-i686/PKGBUILD
(from rev 205150, libkcompactdisc/trunk/PKGBUILD)
  libkcompactdisc/repos/testing-x86_64/
  libkcompactdisc/repos/testing-x86_64/PKGBUILD
(from rev 205150, libkcompactdisc/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   32 
 testing-x86_64/PKGBUILD |   32 
 2 files changed, 64 insertions(+)

Copied: libkcompactdisc/repos/testing-i686/PKGBUILD (from rev 205150, 
libkcompactdisc/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:53:43 UTC (rev 205151)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkcompactdisc
+pkgver=4.12.2
+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/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('7ad552cbd6637ff4bb23ed02c8c4536da5b7185c')
+
+build() {
+  cd ${srcdir}
+  mkdir 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/testing-x86_64/PKGBUILD (from rev 205150, 
libkcompactdisc/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:53:43 UTC (rev 205151)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkcompactdisc
+pkgver=4.12.2
+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/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('7ad552cbd6637ff4bb23ed02c8c4536da5b7185c')
+
+build() {
+  cd ${srcdir}
+  mkdir 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
+}



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

2014-02-04 Thread Sven-Hendrik Haase
Date: Tuesday, February 4, 2014 @ 14:54:02
  Author: svenstaro
Revision: 205157

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

Added:
  kdeaccessibility-jovie/repos/testing-i686/
  kdeaccessibility-jovie/repos/testing-i686/PKGBUILD
(from rev 205156, kdeaccessibility-jovie/trunk/PKGBUILD)
  kdeaccessibility-jovie/repos/testing-i686/kdeaccessibility-jovie.install
(from rev 205156, 
kdeaccessibility-jovie/trunk/kdeaccessibility-jovie.install)
  kdeaccessibility-jovie/repos/testing-x86_64/
  kdeaccessibility-jovie/repos/testing-x86_64/PKGBUILD
(from rev 205156, kdeaccessibility-jovie/trunk/PKGBUILD)
  kdeaccessibility-jovie/repos/testing-x86_64/kdeaccessibility-jovie.install
(from rev 205156, 
kdeaccessibility-jovie/trunk/kdeaccessibility-jovie.install)

---+
 testing-i686/PKGBUILD |   32 
 testing-i686/kdeaccessibility-jovie.install   |   11 
 testing-x86_64/PKGBUILD   |   32 
 testing-x86_64/kdeaccessibility-jovie.install |   11 
 4 files changed, 86 insertions(+)

Copied: kdeaccessibility-jovie/repos/testing-i686/PKGBUILD (from rev 205156, 
kdeaccessibility-jovie/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-04 13:54:02 UTC (rev 205157)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdeaccessibility-jovie
+pkgver=4.12.2
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='A text to speech application'
+url='http://kde.org/applications/utilities/jovie/'
+license=('GPL' 'FDL')
+groups=('kde' 'kdeaccessibility')
+depends=('kdebase-runtime' 'speech-dispatcher')
+makedepends=('cmake' 'automoc4')
+replaces=('kdeaccessibility-kttsd')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/jovie-${pkgver}.tar.xz;)
+sha1sums=('b5f78f20298bd728a56a20e94d774b94fdcd5358')
+
+build() {
+  mkdir 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/testing-i686/kdeaccessibility-jovie.install (from 
rev 205156, kdeaccessibility-jovie/trunk/kdeaccessibility-jovie.install)
===
--- testing-i686/kdeaccessibility-jovie.install (rev 0)
+++ testing-i686/kdeaccessibility-jovie.install 2014-02-04 13:54:02 UTC (rev 
205157)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdeaccessibility-jovie/repos/testing-x86_64/PKGBUILD (from rev 205156, 
kdeaccessibility-jovie/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-04 13:54:02 UTC (rev 205157)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdeaccessibility-jovie
+pkgver=4.12.2
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='A text to speech application'
+url='http://kde.org/applications/utilities/jovie/'
+license=('GPL' 'FDL')
+groups=('kde' 'kdeaccessibility')
+depends=('kdebase-runtime' 'speech-dispatcher')
+makedepends=('cmake' 'automoc4')
+replaces=('kdeaccessibility-kttsd')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/jovie-${pkgver}.tar.xz;)
+sha1sums=('b5f78f20298bd728a56a20e94d774b94fdcd5358')
+
+build() {
+  mkdir 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/testing-x86_64/kdeaccessibility-jovie.install 
(from rev 205156, kdeaccessibility-jovie/trunk/kdeaccessibility-jovie.install)
===
--- testing-x86_64/kdeaccessibility-jovie.install   
(rev 0)
+++ testing-x86_64/kdeaccessibility-jovie.install   2014-02-04 13:54:02 UTC 
(rev 205157)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



  1   2   3   4   5   >