[arch-commits] Commit in sagemath-doc (6 files)

2015-04-14 Thread Antonio Rojas
Date: Wednesday, April 15, 2015 @ 08:36:20
  Author: arojas
Revision: 131390

archrelease: copy trunk to community-staging-any

Added:
  sagemath-doc/repos/
  sagemath-doc/repos/community-staging-any/
  sagemath-doc/repos/community-staging-any/PKGBUILD
(from rev 131389, sagemath-doc/trunk/PKGBUILD)
  sagemath-doc/repos/community-staging-any/fes02.patch
(from rev 131389, sagemath-doc/trunk/fes02.patch)
  sagemath-doc/repos/community-staging-any/package.patch
(from rev 131389, sagemath-doc/trunk/package.patch)
  sagemath-doc/repos/community-staging-any/paths.patch
(from rev 131389, sagemath-doc/trunk/paths.patch)

---+
 PKGBUILD  |   79 
 fes02.patch   |   45 +++
 package.patch |   11 +++
 paths.patch   |   32 ++
 4 files changed, 167 insertions(+)

Copied: sagemath-doc/repos/community-staging-any/PKGBUILD (from rev 131389, 
sagemath-doc/trunk/PKGBUILD)
===
--- repos/community-staging-any/PKGBUILD(rev 0)
+++ repos/community-staging-any/PKGBUILD2015-04-15 06:36:20 UTC (rev 
131390)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgbase=sagemath-doc
+pkgname=(sagemath-doc sagemath-src)
+pkgver=6.6
+pkgrel=1
+arch=(any)
+url="http://www.sagemath.org";
+license=(GPL)
+makedepends=(sagemath sage-notebook python2-sphinx)
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/sagemath/sage/archive/$pkgver.tar.gz";
 'package.patch' 'paths.patch' 'fes02.patch')
+md5sums=('91eefd257f535ed2af337eeffab4c9bd'
+ '0eb5ac1537aac93bd67a2925c0cfd84d'
+ 'acc25f13728517badafa70d220ab7b8e'
+ '506944613082ba7f5b34360939ca90eb')
+
+prepare() {
+  cd sage-$pkgver
+
+# Arch-specific patches
+# assume all optional packages are installed
+  patch -p0 -i "$srcdir"/package.patch
+# fix paths in python imports
+  patch -p0 -i "$srcdir"/paths.patch
+# fix cython linking
+  sed -e "s| atlas(),||" -i src/sage/misc/cython.py
+# supress warning about GAP install dir
+  sed -e "s|gapdir = os.path.join(SAGE_LOCAL, 'gap', 'latest')|gapdir = 
'/usr/lib/gap'|" -i src/sage/libs/gap/util.pyx 
+# use small Cremona database
+  sed -e "s|is_package_installed('database_cremona_ellcurve')|False|" -i 
src/sage/databases/cremona.py
+# fix IPython kernel path
+  sed -e "s|os.path.join(SAGE_ROOT, 'sage')|'/usr/bin/sage'|" -i 
src/sage/repl/ipython_kernel/install.py
+
+# Upstream patches
+# fix build against libfes 0.2 http://trac.sagemath.org/ticket/15209
+  patch -p0 -i "$srcdir"/fes02.patch
+
+# use python2
+  sed -e 's|cython %s %s|cython2 %s %s|' -e 's|python setup.py|python2 
setup.py|' -i src/sage/misc/cython.py
+}
+
+build() {
+  cd sage-$pkgver/src
+
+  export SAGE_LOCAL="/usr"
+  export SAGE_SRC="$PWD"
+  export SAGE_DOC="$SAGE_SRC"/doc
+  export SAGE_DOC_MATHJAX=yes
+  export PYTHONPATH="/usr/lib/sage/site-packages"
+  python2 doc/common/builder.py -k all html
+}
+
+package_sagemath-doc() {
+  pkgdesc="HTML documentation and inline help for SageMath"
+  depends=(sage-notebook python2-sphinx)
+  conflicts=(sage-mathematics-doc)
+  replaces=(sage-mathematics-doc)
+
+  cd sage-$pkgver/src/doc
+ 
+  mkdir -p "$pkgdir"/usr/share/doc/sage
+  cp -r * "$pkgdir"/usr/share/doc/sage
+  rm "$pkgdir"/usr/share/doc/sage/Makefile
+  rm -r "$pkgdir"/usr/share/doc/sage/output/doctrees
+}
+
+package_sagemath-src() {
+  pkgdesc="Source files for SageMath"
+  conflicts=(sage-mathematics-src)
+  replaces=(sage-mathematics-src)
+  
+  mkdir -p "$pkgdir"/usr/share/sage/src
+  cp -r sage-$pkgver/src/{sage,sage_setup} "$pkgdir"/usr/share/sage/src
+  ln -s /usr/share/doc/sage "$pkgdir"/usr/share/sage/src/doc
+
+  mkdir -p "$pkgdir"/usr/include/csage
+  cp -r sage-$pkgver/src/c_lib/include/* "$pkgdir"/usr/include/csage
+}

Copied: sagemath-doc/repos/community-staging-any/fes02.patch (from rev 131389, 
sagemath-doc/trunk/fes02.patch)
===
--- repos/community-staging-any/fes02.patch (rev 0)
+++ repos/community-staging-any/fes02.patch 2015-04-15 06:36:20 UTC (rev 
131390)
@@ -0,0 +1,45 @@
+diff --git a/src/sage/libs/fes.pyx b/src/sage/libs/fes.pyx
+index 40b9c23..d188cf0 100644
+--- src/sage/libs/fes.pyx
 src/sage/libs/fes.pyx
+@@ -1,17 +1,19 @@
+ """
+-Binding for the FES library.
++Binding for the libFES library.
+ 
+ Finding solutions of systems of boolean equations by exhaustive
+ search, via the fes library. This is usually (much) faster than
+ computing a Groebner basis, except in special cases where the latter
+ is particularly easy.
+ 
+-The FES library is presently only able to deal with polynomials in 64
++More information is available at [http://www.lifl.fr/~bouillag/fes].
++
++The libFES library is presently only able to deal with polynomials in 64
+ variables. Performing a full exhaustive se

[arch-commits] Commit in sagemath-doc/trunk (PKGBUILD ipython3.patch)

2015-04-14 Thread Antonio Rojas
Date: Wednesday, April 15, 2015 @ 08:34:05
  Author: arojas
Revision: 131389

SageMath 6.6

Modified:
  sagemath-doc/trunk/PKGBUILD
Deleted:
  sagemath-doc/trunk/ipython3.patch

+
 PKGBUILD   |   40 
 ipython3.patch |11325 ---
 2 files changed, 21 insertions(+), 11344 deletions(-)

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


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

2015-04-14 Thread Bartłomiej Piotrowski
Date: Wednesday, April 15, 2015 @ 08:34:21
  Author: bpiotrowski
Revision: 236630

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-04-15 06:34:04 UTC (rev 236629)
+++ extra-i686/PKGBUILD 2015-04-15 06:34:21 UTC (rev 236630)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Tobias Kieslich 
-# Contributor: dorphell 
-# Contributor: John Proctor 
-
-pkgname=libvorbis
-pkgver=1.3.4
-pkgrel=1
-pkgdesc="Vorbis codec library"
-arch=('i686' 'x86_64')
-url="http://www.xiph.org/vorbis/";
-license=('BSD')
-depends=('libogg')
-source=(http://downloads.xiph.org/releases/vorbis/${pkgname}-${pkgver}.tar.gz)
-md5sums=('8851c593a52d1ef9c526d95174873852')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  #-march=i686 optimizes too much, strip it out
-  CFLAGS=${CFLAGS/-march=$CARCH} LIBS+="-lm" ./configure --prefix=/usr 
--disable-static
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make -j1 check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: libvorbis/repos/extra-i686/PKGBUILD (from rev 236629, 
libvorbis/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-04-15 06:34:21 UTC (rev 236630)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Tobias Kieslich 
+# Contributor: dorphell 
+# Contributor: John Proctor 
+
+pkgname=libvorbis
+pkgver=1.3.5
+pkgrel=1
+pkgdesc='Vorbis codec library'
+arch=('i686' 'x86_64')
+url='http://www.xiph.org/vorbis/'
+license=('BSD')
+depends=('libogg')
+provides=('libvorbisfile.so' 'libvorbis.so' 'libvorbisenc.so')
+source=(http://downloads.xiph.org/releases/vorbis/$pkgname-$pkgver.tar.gz)
+md5sums=('7220e089f3be3412a2317d6fde9e3944')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make -j1 check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-04-15 06:34:04 UTC (rev 236629)
+++ extra-x86_64/PKGBUILD   2015-04-15 06:34:21 UTC (rev 236630)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Tobias Kieslich 
-# Contributor: dorphell 
-# Contributor: John Proctor 
-
-pkgname=libvorbis
-pkgver=1.3.4
-pkgrel=1
-pkgdesc="Vorbis codec library"
-arch=('i686' 'x86_64')
-url="http://www.xiph.org/vorbis/";
-license=('BSD')
-depends=('libogg')
-source=(http://downloads.xiph.org/releases/vorbis/${pkgname}-${pkgver}.tar.gz)
-md5sums=('8851c593a52d1ef9c526d95174873852')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  #-march=i686 optimizes too much, strip it out
-  CFLAGS=${CFLAGS/-march=$CARCH} LIBS+="-lm" ./configure --prefix=/usr 
--disable-static
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make -j1 check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: libvorbis/repos/extra-x86_64/PKGBUILD (from rev 236629, 
libvorbis/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-04-15 06:34:21 UTC (rev 236630)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Tobias Kieslich 
+# Contributor: dorphell 
+# Contributor: John Proctor 
+
+pkgname=libvorbis
+pkgver=1.3.5
+pkgrel=1
+pkgdesc='Vorbis codec library'
+arch=('i686' 'x86_64')
+url='http://www.xiph.org/vorbis/'
+license=('BSD')
+depends=('libogg')
+provides=('libvorbisfile.so' 'libvorbis.so' 'libvorbisenc.so')
+source=(http://downloads.xiph.org/releases/vorbis/$pkgname-$pkgver.tar.gz)
+md5sums=('7220e089f3be3412a2317d6fde9e3944')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make -j1 check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/li

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

2015-04-14 Thread Bartłomiej Piotrowski
Date: Wednesday, April 15, 2015 @ 08:34:04
  Author: bpiotrowski
Revision: 236629

upgpkg: libvorbis 1.3.5-1

new upstream release

Modified:
  libvorbis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-15 03:55:52 UTC (rev 236628)
+++ PKGBUILD2015-04-15 06:34:04 UTC (rev 236629)
@@ -1,33 +1,34 @@
 # $Id$
-# Maintainer: Tobias Kieslich 
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Tobias Kieslich 
 # Contributor: dorphell 
 # Contributor: John Proctor 
 
 pkgname=libvorbis
-pkgver=1.3.4
+pkgver=1.3.5
 pkgrel=1
-pkgdesc="Vorbis codec library"
+pkgdesc='Vorbis codec library'
 arch=('i686' 'x86_64')
-url="http://www.xiph.org/vorbis/";
+url='http://www.xiph.org/vorbis/'
 license=('BSD')
 depends=('libogg')
-source=(http://downloads.xiph.org/releases/vorbis/${pkgname}-${pkgver}.tar.gz)
-md5sums=('8851c593a52d1ef9c526d95174873852')
+provides=('libvorbisfile.so' 'libvorbis.so' 'libvorbisenc.so')
+source=(http://downloads.xiph.org/releases/vorbis/$pkgname-$pkgver.tar.gz)
+md5sums=('7220e089f3be3412a2317d6fde9e3944')
 
 build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  #-march=i686 optimizes too much, strip it out
-  CFLAGS=${CFLAGS/-march=$CARCH} LIBS+="-lm" ./configure --prefix=/usr 
--disable-static
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
   make
 }
 
 check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd $pkgname-$pkgver
   make -j1 check
 }
 
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }


[arch-commits] Commit in python-sure/repos (3 files)

2015-04-14 Thread Felix Yan
Date: Wednesday, April 15, 2015 @ 08:09:27
  Author: fyan
Revision: 131388

archrelease: copy trunk to community-testing-any

Added:
  python-sure/repos/community-testing-any/
  python-sure/repos/community-testing-any/PKGBUILD
(from rev 131387, python-sure/trunk/PKGBUILD)
  python-sure/repos/community-testing-any/py3k-fix.patch
(from rev 131387, python-sure/trunk/py3k-fix.patch)

+
 PKGBUILD   |   47 ++
 py3k-fix.patch |   74 +++
 2 files changed, 121 insertions(+)

Copied: python-sure/repos/community-testing-any/PKGBUILD (from rev 131387, 
python-sure/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2015-04-15 06:09:27 UTC (rev 131388)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-sure
+pkgname=("python-sure" "python2-sure")
+pkgver=1.2.10
+pkgrel=1
+pkgdesc="HTTP client mock for Python"
+arch=('any')
+url="http://github.com/gabrielfalcao/sure";
+license=('GPL')
+makedepends=('python-six' 'python2-six' 'python-mock' 'python2-mock')
+checkdepends=('python-nose' 'python2-nose')
+source=("https://pypi.python.org/packages/source/s/sure/sure-$pkgver.tar.gz";
+py3k-fix.patch)
+sha512sums=('9053cd493a26a9314db7e5967dd8ce8caebd110ba9b26ea077f5dc8d9d34ff7d7feb7bde9886420cd64d11e88574b44396fddbaaeaafc380244f2d48d59185d4'
+
'90118b3c3148b6dd6904f94199fc7ae98fc805980132000e270e1b80a563620a1216f916e82c894cfe8cd0c68041ca091ebd7c0a8e64b1cf6dd3c84db3b0d558')
+
+prepare() {
+  cp -a "sure-$pkgver"{,-py2}
+
+  cd sure-$pkgver
+  patch -p1 -i ../py3k-fix.patch
+}
+
+check() {
+  cd sure-$pkgver
+  nosetests3
+
+  cd ../sure-$pkgver-py2
+  nosetests2
+}
+
+package_python-sure() {
+  depends=('python-six' 'python-mock')
+
+  cd sure-$pkgver
+  LC_CTYPE=en_US.UTF-8 python3 setup.py install --root="${pkgdir}" --optimize=1
+}
+
+package_python2-sure() {
+  depends=('python2-six' 'python2-mock')
+
+  cd sure-$pkgver-py2
+  LC_CTYPE=en_US.UTF-8 python2 setup.py install --root="${pkgdir}" --optimize=1
+}
+

Copied: python-sure/repos/community-testing-any/py3k-fix.patch (from rev 
131387, python-sure/trunk/py3k-fix.patch)
===
--- community-testing-any/py3k-fix.patch(rev 0)
+++ community-testing-any/py3k-fix.patch2015-04-15 06:09:27 UTC (rev 
131388)
@@ -0,0 +1,74 @@
+From dfa565626a53c8902a7f108417281c95f8e1f241 Mon Sep 17 00:00:00 2001
+From: Timo Furrer 
+Date: Thu, 11 Dec 2014 10:45:50 +0100
+Subject: [PATCH] make python 3 compatible again The function objects in python
+ 3 have no `func_code` member anymore. Use `__code__` instead. The byte
+ objects in python 3 have no `format` method. Use `encode` instead. The
+ representation of the strings and encoded strings are different in python 2
+ and python 3 thus use PY3 from six. Remove unlucky example from README since
+ python 3 returns a float and python 2 an int in this situation Python 2 and 3
+ build is working again
+
+---
+ README.md   |  1 -
+ sure/old.py |  8 
+ tests/test_assertion_builder.py | 10 --
+ 3 files changed, 12 insertions(+), 7 deletions(-)
+
+diff --git a/README.md b/README.md
+index 03d7e2f..5e09d57 100644
+--- a/README.md
 b/README.md
+@@ -32,7 +32,6 @@ import sure
+ 
+ (4).should.be.equal(2 + 2)
+ (7.5).should.eql(3.5 + 4)
+-(2).should.equal(8 / 4)
+ 
+ (3).shouldnt.be.equal(5)
+ ```
+diff --git a/sure/old.py b/sure/old.py
+index 70822e1..13a3f74 100644
+--- a/sure/old.py
 b/sure/old.py
+@@ -42,10 +42,10 @@
+ 
+ 
+ def identify_callable_location(callable_object):
+-filename = os.path.relpath(callable_object.func_code.co_filename)
+-lineno = callable_object.func_code.co_firstlineno
+-callable_name = callable_object.func_code.co_name
+-return b'{0} [{1} line {2}]'.format(callable_name, filename, lineno)
++filename = os.path.relpath(callable_object.__code__.co_filename)
++lineno = callable_object.__code__.co_firstlineno
++callable_name = callable_object.__code__.co_name
++return '{0} [{1} line {2}]'.format(callable_name, filename, 
lineno).encode()
+ 
+ 
+ def is_iterable(obj):
+diff --git a/tests/test_assertion_builder.py b/tests/test_assertion_builder.py
+index 6a58c1a..5b3d2de 100644
+--- a/tests/test_assertion_builder.py
 b/tests/test_assertion_builder.py
+@@ -648,13 +648,19 @@ def blah(num):
+ raise RuntimeError('should not have reached here')
+ 
+ except AssertionError as e:
+-expect(str(e)).to.equal("When calling 'blah 
[tests/test_assertion_builder.py line 633]' the exception message does not 
match. Expected to match regex: u'invalid regex'\n against:\n u'this message'")
++if PY3:
++expect(str(e)).to.equal("When

[arch-commits] Commit in python-sure/trunk (PKGBUILD py3k-fix.patch)

2015-04-14 Thread Felix Yan
Date: Wednesday, April 15, 2015 @ 08:08:45
  Author: fyan
Revision: 131387

upgpkg: python-sure 1.2.10-1

Added:
  python-sure/trunk/py3k-fix.patch
Modified:
  python-sure/trunk/PKGBUILD

+
 PKGBUILD   |   15 +++
 py3k-fix.patch |   74 +++
 2 files changed, 84 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-15 06:01:34 UTC (rev 131386)
+++ PKGBUILD2015-04-15 06:08:45 UTC (rev 131387)
@@ -1,9 +1,9 @@
 # $Id$
-# Maintainer: Felix Yan 
+# Maintainer: Felix Yan 
 
 pkgbase=python-sure
 pkgname=("python-sure" "python2-sure")
-pkgver=1.2.7
+pkgver=1.2.10
 pkgrel=1
 pkgdesc="HTTP client mock for Python"
 arch=('any')
@@ -11,11 +11,16 @@
 license=('GPL')
 makedepends=('python-six' 'python2-six' 'python-mock' 'python2-mock')
 checkdepends=('python-nose' 'python2-nose')
-source=("https://pypi.python.org/packages/source/s/sure/sure-$pkgver.tar.gz";)
-sha512sums=('408d7334c3b989e29f757a31e137cfda6ccc3b4e03ed0a38bc7d72a23ff3ced11e1112b5d2597e20653c034330ec69ec9e713787516283e71ca404b1b1e770e1')
+source=("https://pypi.python.org/packages/source/s/sure/sure-$pkgver.tar.gz";
+py3k-fix.patch)
+sha512sums=('9053cd493a26a9314db7e5967dd8ce8caebd110ba9b26ea077f5dc8d9d34ff7d7feb7bde9886420cd64d11e88574b44396fddbaaeaafc380244f2d48d59185d4'
+
'90118b3c3148b6dd6904f94199fc7ae98fc805980132000e270e1b80a563620a1216f916e82c894cfe8cd0c68041ca091ebd7c0a8e64b1cf6dd3c84db3b0d558')
 
 prepare() {
-  cp -r "sure-$pkgver"{,-py2}
+  cp -a "sure-$pkgver"{,-py2}
+
+  cd sure-$pkgver
+  patch -p1 -i ../py3k-fix.patch
 }
 
 check() {

Added: py3k-fix.patch
===
--- py3k-fix.patch  (rev 0)
+++ py3k-fix.patch  2015-04-15 06:08:45 UTC (rev 131387)
@@ -0,0 +1,74 @@
+From dfa565626a53c8902a7f108417281c95f8e1f241 Mon Sep 17 00:00:00 2001
+From: Timo Furrer 
+Date: Thu, 11 Dec 2014 10:45:50 +0100
+Subject: [PATCH] make python 3 compatible again The function objects in python
+ 3 have no `func_code` member anymore. Use `__code__` instead. The byte
+ objects in python 3 have no `format` method. Use `encode` instead. The
+ representation of the strings and encoded strings are different in python 2
+ and python 3 thus use PY3 from six. Remove unlucky example from README since
+ python 3 returns a float and python 2 an int in this situation Python 2 and 3
+ build is working again
+
+---
+ README.md   |  1 -
+ sure/old.py |  8 
+ tests/test_assertion_builder.py | 10 --
+ 3 files changed, 12 insertions(+), 7 deletions(-)
+
+diff --git a/README.md b/README.md
+index 03d7e2f..5e09d57 100644
+--- a/README.md
 b/README.md
+@@ -32,7 +32,6 @@ import sure
+ 
+ (4).should.be.equal(2 + 2)
+ (7.5).should.eql(3.5 + 4)
+-(2).should.equal(8 / 4)
+ 
+ (3).shouldnt.be.equal(5)
+ ```
+diff --git a/sure/old.py b/sure/old.py
+index 70822e1..13a3f74 100644
+--- a/sure/old.py
 b/sure/old.py
+@@ -42,10 +42,10 @@
+ 
+ 
+ def identify_callable_location(callable_object):
+-filename = os.path.relpath(callable_object.func_code.co_filename)
+-lineno = callable_object.func_code.co_firstlineno
+-callable_name = callable_object.func_code.co_name
+-return b'{0} [{1} line {2}]'.format(callable_name, filename, lineno)
++filename = os.path.relpath(callable_object.__code__.co_filename)
++lineno = callable_object.__code__.co_firstlineno
++callable_name = callable_object.__code__.co_name
++return '{0} [{1} line {2}]'.format(callable_name, filename, 
lineno).encode()
+ 
+ 
+ def is_iterable(obj):
+diff --git a/tests/test_assertion_builder.py b/tests/test_assertion_builder.py
+index 6a58c1a..5b3d2de 100644
+--- a/tests/test_assertion_builder.py
 b/tests/test_assertion_builder.py
+@@ -648,13 +648,19 @@ def blah(num):
+ raise RuntimeError('should not have reached here')
+ 
+ except AssertionError as e:
+-expect(str(e)).to.equal("When calling 'blah 
[tests/test_assertion_builder.py line 633]' the exception message does not 
match. Expected to match regex: u'invalid regex'\n against:\n u'this message'")
++if PY3:
++expect(str(e)).to.equal("When calling b'blah 
[tests/test_assertion_builder.py line 633]' the exception message does not 
match. Expected to match regex: 'invalid regex'\n against:\n 'this message'")
++else:
++expect(str(e)).to.equal("When calling 'blah 
[tests/test_assertion_builder.py line 633]' the exception message does not 
match. Expected to match regex: u'invalid regex'\n against:\n u'this message'")
+ 
+ try:
+ expect(blah).when.called_with(1).should.throw(ValueError, 
re.compile(r'invalid regex'))
+ raise RuntimeError('should not have reached here')
+ except AssertionError as e:
+-expect(str(e)).to.equal

[arch-commits] Commit in (7 files)

2015-04-14 Thread Antonio Rojas
Date: Wednesday, April 15, 2015 @ 08:01:34
  Author: arojas
Revision: 131386

Sage is now called SageMath

Added:
  sagemath-doc/
  sagemath-doc/trunk/
  sagemath-doc/trunk/PKGBUILD
  sagemath-doc/trunk/fes02.patch
  sagemath-doc/trunk/ipython3.patch
  sagemath-doc/trunk/package.patch
  sagemath-doc/trunk/paths.patch

+
 PKGBUILD   |   77 
 fes02.patch|   45 
 ipython3.patch |11325 +++
 package.patch  |   11 
 paths.patch|   32 
 5 files changed, 11490 insertions(+)

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


[arch-commits] Commit in sagemath (25 files)

2015-04-14 Thread Antonio Rojas
Date: Wednesday, April 15, 2015 @ 07:57:36
  Author: arojas
Revision: 131385

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

Added:
  sagemath/repos/
  sagemath/repos/community-staging-i686/
  sagemath/repos/community-staging-i686/PKGBUILD
(from rev 131384, sagemath/trunk/PKGBUILD)
  sagemath/repos/community-staging-i686/anal.h
(from rev 131384, sagemath/trunk/anal.h)
  sagemath/repos/community-staging-i686/c_lib.patch
(from rev 131384, sagemath/trunk/c_lib.patch)
  sagemath/repos/community-staging-i686/clean.patch
(from rev 131384, sagemath/trunk/clean.patch)
  sagemath/repos/community-staging-i686/env.patch
(from rev 131384, sagemath/trunk/env.patch)
  sagemath/repos/community-staging-i686/fes02.patch
(from rev 131384, sagemath/trunk/fes02.patch)
  sagemath/repos/community-staging-i686/package.patch
(from rev 131384, sagemath/trunk/package.patch)
  sagemath/repos/community-staging-i686/paths.patch
(from rev 131384, sagemath/trunk/paths.patch)
  sagemath/repos/community-staging-i686/pexpect-del.patch
(from rev 131384, sagemath/trunk/pexpect-del.patch)
  sagemath/repos/community-staging-i686/pexpect-env.patch
(from rev 131384, sagemath/trunk/pexpect-env.patch)
  sagemath/repos/community-staging-i686/skip-check.patch
(from rev 131384, sagemath/trunk/skip-check.patch)
  sagemath/repos/community-staging-x86_64/
  sagemath/repos/community-staging-x86_64/PKGBUILD
(from rev 131384, sagemath/trunk/PKGBUILD)
  sagemath/repos/community-staging-x86_64/anal.h
(from rev 131384, sagemath/trunk/anal.h)
  sagemath/repos/community-staging-x86_64/c_lib.patch
(from rev 131384, sagemath/trunk/c_lib.patch)
  sagemath/repos/community-staging-x86_64/clean.patch
(from rev 131384, sagemath/trunk/clean.patch)
  sagemath/repos/community-staging-x86_64/env.patch
(from rev 131384, sagemath/trunk/env.patch)
  sagemath/repos/community-staging-x86_64/fes02.patch
(from rev 131384, sagemath/trunk/fes02.patch)
  sagemath/repos/community-staging-x86_64/package.patch
(from rev 131384, sagemath/trunk/package.patch)
  sagemath/repos/community-staging-x86_64/paths.patch
(from rev 131384, sagemath/trunk/paths.patch)
  sagemath/repos/community-staging-x86_64/pexpect-del.patch
(from rev 131384, sagemath/trunk/pexpect-del.patch)
  sagemath/repos/community-staging-x86_64/pexpect-env.patch
(from rev 131384, sagemath/trunk/pexpect-env.patch)
  sagemath/repos/community-staging-x86_64/skip-check.patch
(from rev 131384, sagemath/trunk/skip-check.patch)

+
 community-staging-i686/PKGBUILD|  153 +++
 community-staging-i686/anal.h  |   65 +++
 community-staging-i686/c_lib.patch |   17 +++
 community-staging-i686/clean.patch |   23 
 community-staging-i686/env.patch   |  132 +++
 community-staging-i686/fes02.patch |   45 +++
 community-staging-i686/package.patch   |   11 +
 community-staging-i686/paths.patch |   32 +
 community-staging-i686/pexpect-del.patch   |   15 ++
 community-staging-i686/pexpect-env.patch   |   32 +
 community-staging-i686/skip-check.patch|   21 +++
 community-staging-x86_64/PKGBUILD  |  153 +++
 community-staging-x86_64/anal.h|   65 +++
 community-staging-x86_64/c_lib.patch   |   17 +++
 community-staging-x86_64/clean.patch   |   23 
 community-staging-x86_64/env.patch |  132 +++
 community-staging-x86_64/fes02.patch   |   45 +++
 community-staging-x86_64/package.patch |   11 +
 community-staging-x86_64/paths.patch   |   32 +
 community-staging-x86_64/pexpect-del.patch |   15 ++
 community-staging-x86_64/pexpect-env.patch |   32 +
 community-staging-x86_64/skip-check.patch  |   21 +++
 22 files changed, 1092 insertions(+)

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


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

2015-04-14 Thread Antonio Rojas
Date: Wednesday, April 15, 2015 @ 07:56:49
  Author: arojas
Revision: 131384

SageMath 6.6

Modified:
  sagemath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-15 03:52:38 UTC (rev 131383)
+++ PKGBUILD2015-04-15 05:56:49 UTC (rev 131384)
@@ -34,20 +34,18 @@
 source=("https://github.com/sagemath/sage/archive/$pkgver.tar.gz"; 
"http://www.sagemath.org/packages/upstream/pexpect/pexpect-2.0.tar.bz2"; 
 'anal.h' 'package.patch' 'c_lib.patch' 'env.patch' 'paths.patch' 'clean.patch' 
'skip-check.patch' 
 'pexpect-env.patch' 'pexpect-del.patch' 'fes02.patch')
-md5sums=('5a173b1ecce89c845626653cfb3d199f'
+md5sums=('91eefd257f535ed2af337eeffab4c9bd'
  'd9a3e113ed147dcee8f89962a8dccd43'
  'a906a180d198186a39820b0a2f9a9c63'
  '0eb5ac1537aac93bd67a2925c0cfd84d'
- '5216dbb3d80cecc8ec4a36cc9706f8b5'
+ 'c452558d3496b07be472dad57195d45d'
  '563bc42699116d71ca6b06b9f149304e'
- '9a39301dedeb560f7bfddb81b6853f28'
- 'eee444d32b8a818a67b1e0ce0850b8bb'
+ 'acc25f13728517badafa70d220ab7b8e'
  '46c212a3a6713b0f78c370c7186d0982'
  '5947a420a0b1483f0cbc74c76895789b'
  'a83a3b1bc7fcb7cbf752a83a8311fc42'
  'f333939ea6c41377b66407c81016cee4'
- '506944613082ba7f5b34360939ca90eb'
- 'f65910f4644cfe892d95e401ffb85fb6')
+ '506944613082ba7f5b34360939ca90eb')
 
 prepare(){
   cd sage-$pkgver


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

2015-04-14 Thread Felix Yan
Date: Wednesday, April 15, 2015 @ 05:55:52
  Author: fyan
Revision: 236628

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

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

+
 /PKGBUILD  |  118 +++
 /cmake.install |   24 
 extra-i686/PKGBUILD|   59 -
 extra-i686/cmake.install   |   12 
 extra-x86_64/PKGBUILD  |   59 -
 extra-x86_64/cmake.install |   12 
 6 files changed, 142 insertions(+), 142 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-04-15 03:51:00 UTC (rev 236627)
+++ extra-i686/PKGBUILD 2015-04-15 03:55:52 UTC (rev 236628)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=cmake
-pkgver=3.2.1
-pkgrel=1
-pkgdesc='A cross-platform open-source make system'
-arch=('i686' 'x86_64')
-url="http://www.cmake.org/";
-license=('custom')
-depends=('curl' 'libarchive' 'shared-mime-info' 'jsoncpp')
-makedepends=('qt5-base' 'python-sphinx' 'emacs')
-optdepends=('qt5-base: cmake-gui'
-'libxkbcommon-x11: cmake-gui')
-install="${pkgname}.install"
-source=("http://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('63f436aa19b5efc37017759c8d3953ca')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  ./bootstrap --prefix=/usr \
---mandir=/share/man \
---docdir=/share/doc/cmake \
---sphinx-man \
---system-libs \
---qt-gui \
---parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  vimpath="${pkgdir}/usr/share/vim/vimfiles"
-  install -d "${vimpath}"/{help,indent,syntax}
-  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/cmake-help.vim \
-"${vimpath}"/help/
-  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/cmake-indent.vim \
-"${vimpath}"/indent/
-  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/cmake-syntax.vim \
-"${vimpath}"/syntax/
-
-  install -d "${pkgdir}"/usr/share/emacs/site-lisp/
-  emacs -batch -f batch-byte-compile \
-"${pkgdir}"/usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el
-  ln -s /usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el \
-"${pkgdir}"/usr/share/emacs/site-lisp/
-
-  install -Dm644 Copyright.txt \
-"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: cmake/repos/extra-i686/PKGBUILD (from rev 236627, cmake/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-04-15 03:55:52 UTC (rev 236628)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=cmake
+pkgver=3.2.2
+pkgrel=1
+pkgdesc='A cross-platform open-source make system'
+arch=('i686' 'x86_64')
+url="http://www.cmake.org/";
+license=('custom')
+depends=('curl' 'libarchive' 'shared-mime-info' 'jsoncpp')
+makedepends=('qt5-base' 'python-sphinx' 'emacs')
+optdepends=('qt5-base: cmake-gui'
+'libxkbcommon-x11: cmake-gui')
+install="${pkgname}.install"
+source=("http://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('2da57308071ea98b10253a87d2419281')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./bootstrap --prefix=/usr \
+--mandir=/share/man \
+--docdir=/share/doc/cmake \
+--sphinx-man \
+--system-libs \
+--qt-gui \
+--parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  vimpath="${pkgdir}/usr/share/vim/vimfiles"
+  install -d "${vimpath}"/{help,indent,syntax}
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/cmake-help.vim \
+"${vimpath}"/help/
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/cmake-indent.vim \
+"${vimpath}"/indent/
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/cmake-syntax.vim \
+"${vimpath}"/syntax/
+
+  install -d "${pkgdir}"/usr/share/emacs/site-lisp/
+  emacs -batch -f batch-byte-compile \
+"${pkgdir}"/usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el \
+"${pkgdir}"/usr/share/emacs/site-lisp/
+
+  install -Dm644 Copyright.txt \
+"

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

2015-04-14 Thread Felix Yan
Date: Wednesday, April 15, 2015 @ 05:51:00
  Author: fyan
Revision: 236627

upgpkg: cmake 3.2.2-1

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-15 03:34:26 UTC (rev 236626)
+++ PKGBUILD2015-04-15 03:51:00 UTC (rev 236627)
@@ -4,7 +4,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.2.1
+pkgver=3.2.2
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 'libxkbcommon-x11: cmake-gui')
 install="${pkgname}.install"
 source=("http://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('63f436aa19b5efc37017759c8d3953ca')
+md5sums=('2da57308071ea98b10253a87d2419281')
 
 prepare() {
   cd ${pkgname}-${pkgver}


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

2015-04-14 Thread Felix Yan
Date: Wednesday, April 15, 2015 @ 05:44:57
  Author: fyan
Revision: 131382

archrelease: copy trunk to community-any

Added:
  python-webob/repos/community-any/PKGBUILD
(from rev 131381, python-webob/trunk/PKGBUILD)
Deleted:
  python-webob/repos/community-any/PKGBUILD

--+
 PKGBUILD |  142 ++---
 1 file changed, 71 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-15 03:44:20 UTC (rev 131381)
+++ PKGBUILD2015-04-15 03:44:57 UTC (rev 131382)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Aaron DeVore 
-# Contributor: Cilyan Olowen 
-
-pkgbase='python-webob'
-pkgname=('python-webob' 'python2-webob' 'python-webob-docs')
-pkgver=1.4
-pkgrel=2
-pkgdesc="WSGI request and response object"
-arch=('any')
-url="http://pythonpaste.org/webob/";
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-sphinx')
-checkdepends=('python-nose' 'python2-nose')
-optdepends=('python-webob-docs: documentation')
-source=("http://pypi.python.org/packages/source/W/WebOb/WebOb-${pkgver}.tar.gz";)
-md5sums=('8437607c0cc00c35f658f972516ffb55')
-
-prepare() {
-  cp -a "$srcdir/WebOb-${pkgver}"{,-py2}
-  cp -a "$srcdir/WebOb-${pkgver}"{,-docs}
-}
-
-build() {
-  cd "$srcdir/WebOb-${pkgver}"
-  python setup.py build
-
-  cd "$srcdir/WebOb-${pkgver}-py2"
-  python2 setup.py build
-
-  cd "$srcdir/WebOb-${pkgver}-docs"
-  python setup.py build_sphinx
-}
-
-check() {
-  cd "$srcdir/WebOb-${pkgver}"
-  python setup.py test
-
-  cd "$srcdir/WebOb-${pkgver}-py2"
-  python2 setup.py test
-}
-
-package_python-webob() {
-  depends=('python')
-
-  cd "$srcdir/WebOb-${pkgver}"
-  python setup.py install -O1 --root="$pkgdir"
-  install -D -m644 "docs/license.txt" \
-   "$pkgdir/usr/share/licenses/$pkgname/license.txt"
-}
-
-package_python2-webob() {
-  depends=('python2')
-
-  cd "$srcdir/WebOb-${pkgver}-py2"
-  python2 setup.py install -O1 --root="$pkgdir"
-  install -D -m644 "docs/license.txt" \
-   "$pkgdir/usr/share/licenses/$pkgname/license.txt"
-}
-
-package_python-webob-docs() {
-  optdepends=()
-
-  cd "$srcdir/WebOb-${pkgver}-docs"
-  _doc_dir="$pkgdir/usr/share/docs/python-webob"
-  mkdir -p "$_doc_dir"
-  cp -a "build/sphinx/html" "$_doc_dir"
-  install -D -m644 "docs/license.txt" \
-   "$pkgdir/usr/share/licenses/$pkgname/license.txt"
-}

Copied: python-webob/repos/community-any/PKGBUILD (from rev 131381, 
python-webob/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-15 03:44:57 UTC (rev 131382)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Aaron DeVore 
+# Contributor: Cilyan Olowen 
+
+pkgbase='python-webob'
+pkgname=('python-webob' 'python2-webob' 'python-webob-docs')
+pkgver=1.4.1
+pkgrel=1
+pkgdesc="WSGI request and response object"
+arch=('any')
+url="http://pythonpaste.org/webob/";
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-sphinx')
+checkdepends=('python-nose' 'python2-nose')
+optdepends=('python-webob-docs: documentation')
+source=("http://pypi.python.org/packages/source/W/WebOb/WebOb-${pkgver}.tar.gz";)
+md5sums=('a5c6e8ba5431756e6a5d5ec56047ec94')
+
+prepare() {
+  cp -a "$srcdir/WebOb-${pkgver}"{,-py2}
+  cp -a "$srcdir/WebOb-${pkgver}"{,-docs}
+}
+
+build() {
+  cd "$srcdir/WebOb-${pkgver}"
+  python setup.py build
+
+  cd "$srcdir/WebOb-${pkgver}-py2"
+  python2 setup.py build
+
+  cd "$srcdir/WebOb-${pkgver}-docs"
+  python setup.py build_sphinx
+}
+
+check() {
+  cd "$srcdir/WebOb-${pkgver}"
+  python setup.py test
+
+  cd "$srcdir/WebOb-${pkgver}-py2"
+  python2 setup.py test
+}
+
+package_python-webob() {
+  depends=('python')
+
+  cd "$srcdir/WebOb-${pkgver}"
+  python setup.py install -O1 --root="$pkgdir"
+  install -D -m644 "docs/license.txt" \
+   "$pkgdir/usr/share/licenses/$pkgname/license.txt"
+}
+
+package_python2-webob() {
+  depends=('python2')
+
+  cd "$srcdir/WebOb-${pkgver}-py2"
+  python2 setup.py install -O1 --root="$pkgdir"
+  install -D -m644 "docs/license.txt" \
+   "$pkgdir/usr/share/licenses/$pkgname/license.txt"
+}
+
+package_python-webob-docs() {
+  optdepends=()
+
+  cd "$srcdir/WebOb-${pkgver}-docs"
+  _doc_dir="$pkgdir/usr/share/docs/python-webob"
+  mkdir -p "$_doc_dir"
+  cp -a "build/sphinx/html" "$_doc_dir"
+  install -D -m644 "docs/license.txt" \
+   "$pkgdir/usr/share/licenses/$pkgname/license.txt"
+}


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

2015-04-14 Thread Felix Yan
Date: Wednesday, April 15, 2015 @ 05:44:20
  Author: fyan
Revision: 131381

upgpkg: python-webob 1.4.1-1

Modified:
  python-webob/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-15 03:44:10 UTC (rev 131380)
+++ PKGBUILD2015-04-15 03:44:20 UTC (rev 131381)
@@ -1,12 +1,12 @@
 # $Id$
-# Maintainer: Felix Yan 
+# Maintainer: Felix Yan 
 # Contributor: Aaron DeVore 
 # Contributor: Cilyan Olowen 
 
 pkgbase='python-webob'
 pkgname=('python-webob' 'python2-webob' 'python-webob-docs')
-pkgver=1.4
-pkgrel=2
+pkgver=1.4.1
+pkgrel=1
 pkgdesc="WSGI request and response object"
 arch=('any')
 url="http://pythonpaste.org/webob/";
@@ -15,7 +15,7 @@
 checkdepends=('python-nose' 'python2-nose')
 optdepends=('python-webob-docs: documentation')
 
source=("http://pypi.python.org/packages/source/W/WebOb/WebOb-${pkgver}.tar.gz";)
-md5sums=('8437607c0cc00c35f658f972516ffb55')
+md5sums=('a5c6e8ba5431756e6a5d5ec56047ec94')
 
 prepare() {
   cp -a "$srcdir/WebOb-${pkgver}"{,-py2}


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

2015-04-14 Thread Felix Yan
Date: Wednesday, April 15, 2015 @ 05:44:10
  Author: fyan
Revision: 131380

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-04-15 03:43:16 UTC (rev 131379)
+++ community-i686/PKGBUILD 2015-04-15 03:44:10 UTC (rev 131380)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Maintainer: Felix Yan 
-# Contributor: T. Jameson Little 
-# Contributor: Usagi Ito 
-# Contributor: siasia 
-# Contributor: Julien Nicoulaud 
-
-pkgname=dart
-pkgver=1.9.1
-pkgrel=1
-pkgdesc='The dart programming language SDK'
-arch=('x86_64' 'i686')
-url='http://www.dartlang.org/'
-license=('BSD')
-makedepends=('setconf')
-options=('!strip')
-source_x86_64+=("$pkgname-$pkgver-64.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip";)
-source_i686+=("$pkgname-$pkgver-32.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-ia32-release.zip";)
-sha512sums_x86_64=('501d2bb601fe6a1dd78d04a554042f6d8ffea6790f1eaac36ee92a9dfe12c05ead8169ce22f35e830a86925898217fc95085a19e96bda526b573982af5be4904')
-sha512sums_i686=('489b65edc6446a140bdd7a0deef93975d0ff437e7230cc59b37aab1509b2685587f128b82d22d8453e69663984b37dc11c28ec2096126ef6d3805fdacf1452d5')
-
-prepare() {
-  # Fix permissions
-  find "$pkgname-sdk" -type d -exec chmod 0755 '{}' + \
--or -type f -exec chmod 0644 '{}' +
-  chmod +x "$pkgname-sdk/bin/"*
-
-  cd "$pkgname-sdk/bin"
-
-  # Configure paths
-  setconf dart2js BIN_DIR "/opt/$pkgname-sdk/bin"
-  setconf dart2js PROG_NAME "/opt/$pkgname-sdk/bin/dart2js"
-  setconf dartanalyzer SCRIPT_DIR "/opt/$pkgname-sdk/bin"
-  setconf docgen BIN_DIR "/opt/$pkgname-sdk/bin"
-  setconf pub BIN_DIR "/opt/$pkgname-sdk/bin"
-  setconf pub SDK_DIR "/opt/$pkgname-sdk/"
-  setconf dartfmt BIN_DIR "/opt/$pkgname-sdk/bin"
-  setconf dartfmt SDK_DIR "/opt/$pkgname-sdk/"
-
-  # Extract license (AUTHORS and LICENSE files are missing)
-  head -n5 "../include/dart_api.h" > ../../LICENSE
-}
-
-package() {
-  # Create directories
-  install -d "$pkgdir"{"/opt/$pkgname-sdk",/usr/{bin,"share/doc/$pkgname-sdk"}}
-
-  # Package the files
-  cp -a "$pkgname-sdk/"* "$pkgdir/opt/$pkgname-sdk/"
-
-  # Set up symbolic links for the executables
-  for f in dart dart2js dartanalyzer docgen pub dartfmt; do
-ln -s "/opt/$pkgname-sdk/bin/$f" "$pkgdir/usr/bin/$f"
-  done
-
-  # Package samples and documentation
-  for f in samples about.html about_files; do
-echo mv "$pkgdir/opt/$pkgname-sdk/$f" "$pkgdir/usr/share/doc/$pkgname/"
-  done
-
-  # BSD License
-  install -Dm644 LICENSE \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dart/repos/community-i686/PKGBUILD (from rev 131379, 
dart/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-04-15 03:44:10 UTC (rev 131380)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Maintainer: Felix Yan 
+# Contributor: T. Jameson Little 
+# Contributor: Usagi Ito 
+# Contributor: siasia 
+# Contributor: Julien Nicoulaud 
+
+pkgname=dart
+pkgver=1.9.3
+pkgrel=1
+pkgdesc='The dart programming language SDK'
+arch=('x86_64' 'i686')
+url='http://www.dartlang.org/'
+license=('BSD')
+makedepends=('setconf')
+options=('!strip')
+source_x86_64+=("$pkgname-$pkgver-64.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip";)
+source_i686+=("$pkgname-$pkgver-32.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-ia32-release.zip";)
+sha512sums_x86_64=('ace227c0bba5017000d41601f1d6b54cf3215f1ec66780ff585c322f7321d375cd1fb52dd6bbe509bbd21756ebb301fb3e58fda8e3f7cd38545546f72c59')
+sha512sums_i686=('cc110b1004bebb4a1b1946681a9c9959672e984ceea22325548d604ebf0042a572f488c0f26a83f0b86547eb0b2c203cfaffe212971f40462fcc37b4ce775424')
+
+prepare() {
+  # Fix permissions
+  find "$pkgname-sdk" -type d -exec chmod 0755 '{}' + \
+-or -type f -exec chmod 0644 '{}' +
+  chmod +x "$pkgname-sdk/bin/"*
+
+  cd "$pkgname-sdk/bin"
+
+  # Configure paths
+  setconf dart2js BIN_DIR "/opt/$pkgname-sdk/bin"
+  setconf dart2j

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

2015-04-14 Thread Felix Yan
Date: Wednesday, April 15, 2015 @ 05:43:16
  Author: fyan
Revision: 131379

upgpkg: dart 1.9.3-1

Modified:
  dart/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-15 01:12:10 UTC (rev 131378)
+++ PKGBUILD2015-04-15 03:43:16 UTC (rev 131379)
@@ -7,7 +7,7 @@
 # Contributor: Julien Nicoulaud 
 
 pkgname=dart
-pkgver=1.9.1
+pkgver=1.9.3
 pkgrel=1
 pkgdesc='The dart programming language SDK'
 arch=('x86_64' 'i686')
@@ -17,8 +17,8 @@
 options=('!strip')
 
source_x86_64+=("$pkgname-$pkgver-64.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip";)
 
source_i686+=("$pkgname-$pkgver-32.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-ia32-release.zip";)
-sha512sums_x86_64=('501d2bb601fe6a1dd78d04a554042f6d8ffea6790f1eaac36ee92a9dfe12c05ead8169ce22f35e830a86925898217fc95085a19e96bda526b573982af5be4904')
-sha512sums_i686=('489b65edc6446a140bdd7a0deef93975d0ff437e7230cc59b37aab1509b2685587f128b82d22d8453e69663984b37dc11c28ec2096126ef6d3805fdacf1452d5')
+sha512sums_x86_64=('ace227c0bba5017000d41601f1d6b54cf3215f1ec66780ff585c322f7321d375cd1fb52dd6bbe509bbd21756ebb301fb3e58fda8e3f7cd38545546f72c59')
+sha512sums_i686=('cc110b1004bebb4a1b1946681a9c9959672e984ceea22325548d604ebf0042a572f488c0f26a83f0b86547eb0b2c203cfaffe212971f40462fcc37b4ce775424')
 
 prepare() {
   # Fix permissions


[arch-commits] Commit in nsd/repos (16 files)

2015-04-14 Thread Gaetan Bisson
Date: Wednesday, April 15, 2015 @ 03:12:10
  Author: bisson
Revision: 131378

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

Added:
  nsd/repos/community-i686/PKGBUILD
(from rev 131377, nsd/trunk/PKGBUILD)
  nsd/repos/community-i686/install
(from rev 131377, nsd/trunk/install)
  nsd/repos/community-i686/service
(from rev 131377, nsd/trunk/service)
  nsd/repos/community-i686/tmpfiles.d
(from rev 131377, nsd/trunk/tmpfiles.d)
  nsd/repos/community-x86_64/PKGBUILD
(from rev 131377, nsd/trunk/PKGBUILD)
  nsd/repos/community-x86_64/install
(from rev 131377, nsd/trunk/install)
  nsd/repos/community-x86_64/service
(from rev 131377, nsd/trunk/service)
  nsd/repos/community-x86_64/tmpfiles.d
(from rev 131377, nsd/trunk/tmpfiles.d)
Deleted:
  nsd/repos/community-i686/PKGBUILD
  nsd/repos/community-i686/install
  nsd/repos/community-i686/service
  nsd/repos/community-i686/tmpfiles.d
  nsd/repos/community-x86_64/PKGBUILD
  nsd/repos/community-x86_64/install
  nsd/repos/community-x86_64/service
  nsd/repos/community-x86_64/tmpfiles.d

-+
 /PKGBUILD   |   92 ++
 /install|   34 +++
 /service|   26 +++
 /tmpfiles.d |2 
 community-i686/PKGBUILD |   46 -
 community-i686/install  |   17 ---
 community-i686/service  |   13 -
 community-i686/tmpfiles.d   |1 
 community-x86_64/PKGBUILD   |   46 -
 community-x86_64/install|   17 ---
 community-x86_64/service|   13 -
 community-x86_64/tmpfiles.d |1 
 12 files changed, 154 insertions(+), 154 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-04-15 01:11:26 UTC (rev 131377)
+++ community-i686/PKGBUILD 2015-04-15 01:12:10 UTC (rev 131378)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Kaiting Chen 
-# Contributor: Roberto Alsina 
-
-pkgname=nsd
-pkgver=4.1.1
-pkgrel=1
-pkgdesc='Authoritative only, high performance and simple DNS server'
-url='http://www.nlnetlabs.nl/nsd/'
-license=('BSD')
-arch=('i686' 'x86_64')
-depends=('openssl' 'libevent')
-makedepends=('flex')
-source=("http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz";
-'tmpfiles.d'
-'service')
-sha1sums=('11ca8a7bef74500f486db5deac994fdf3dec7358'
-  '7ad2b8da961a893095eede8963cf8026b13186a1'
-  'f09a10e90b375410e742fff1fb10631541357c67')
-
-install=install
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/ \
-   --sbindir=/usr/bin \
-   --datarootdir=/usr/share \
-   --with-pidfile=/run/nsd/nsd.pid \
-   --enable-ratelimit
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/nsd.conf
-   install -Dm644 ../service "${pkgdir}"/usr/lib/systemd/system/nsd.service
-   rmdir "${pkgdir}"/{tmp,run/{nsd,}}
-
-   rm doc/differences.pdf
-   install -d "${pkgdir}"/usr/share/{doc,licenses}/"${pkgname}"
-   install -m644 doc/* "${pkgdir}"/usr/share/doc/"${pkgname}"
-   ln -s ../../doc/"${pkgname}"/LICENSE 
"${pkgdir}"/usr/share/licenses/"${pkgname}"/LICENSE
-}

Copied: nsd/repos/community-i686/PKGBUILD (from rev 131377, nsd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-04-15 01:12:10 UTC (rev 131378)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Kaiting Chen 
+# Contributor: Roberto Alsina 
+
+pkgname=nsd
+pkgver=4.1.2
+pkgrel=1
+pkgdesc='Authoritative only, high performance and simple DNS server'
+url='http://www.nlnetlabs.nl/nsd/'
+license=('BSD')
+arch=('i686' 'x86_64')
+depends=('openssl' 'libevent')
+makedepends=('flex')
+source=("http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz";
+'tmpfiles.d'
+'service')
+sha1sums=('10a889f53d436a44d33d2f76d3364c13aa52fc31'
+  '7ad2b8da961a893095eede8963cf8026b13186a1'
+  'f09a10e90b375410e742fff1fb10631541357c67')
+
+install=install
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/ \
+   --sbindir=/usr/bin \
+   --datarootdir=/usr/share \
+   --with-pidfile=/run/nsd/nsd.pid \
+   --enable-ratelimit
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/nsd.conf
+   install -Dm644 ../service "${pkgdir}"/usr/lib/systemd/syste

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

2015-04-14 Thread Gaetan Bisson
Date: Wednesday, April 15, 2015 @ 03:11:26
  Author: bisson
Revision: 131377

upstream update

Modified:
  nsd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 22:45:17 UTC (rev 131376)
+++ PKGBUILD2015-04-15 01:11:26 UTC (rev 131377)
@@ -4,7 +4,7 @@
 # Contributor: Roberto Alsina 
 
 pkgname=nsd
-pkgver=4.1.1
+pkgver=4.1.2
 pkgrel=1
 pkgdesc='Authoritative only, high performance and simple DNS server'
 url='http://www.nlnetlabs.nl/nsd/'
@@ -15,7 +15,7 @@
 
source=("http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz";
 'tmpfiles.d'
 'service')
-sha1sums=('11ca8a7bef74500f486db5deac994fdf3dec7358'
+sha1sums=('10a889f53d436a44d33d2f76d3364c13aa52fc31'
   '7ad2b8da961a893095eede8963cf8026b13186a1'
   'f09a10e90b375410e742fff1fb10631541357c67')
 


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

2015-04-14 Thread Anatol Pomozov
Date: Wednesday, April 15, 2015 @ 00:45:17
  Author: anatolik
Revision: 131376

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

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

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

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

Copied: rethinkdb/repos/community-testing-i686/rethinkdb-tmpfile.conf (from rev 
131375, rethinkdb/trunk/rethinkdb-tmpfile.conf)
===
--- community-testing-i686/rethinkdb-tmpfile.conf   
(rev 0)
+++ community-testing-i686/rethinkdb-tmpfile.conf   2015-04-14 22:45:17 UTC 
(rev 131376)
@@ -0,0 +1 @@
+d /run/rethinkdb 0755 rethinkdb rethinkdb -
\ No newline at end of file

Copied: rethinkdb/repos/community-testing-i686/re

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

2015-04-14 Thread Anatol Pomozov
Date: Wednesday, April 15, 2015 @ 00:44:32
  Author: anatolik
Revision: 131375

upgpkg: rethinkdb 2.0.0-1

Modified:
  rethinkdb/trunk/PKGBUILD

--+
 PKGBUILD |   20 +++-
 1 file changed, 11 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 22:41:32 UTC (rev 131374)
+++ PKGBUILD2015-04-14 22:44:32 UTC (rev 131375)
@@ -4,14 +4,14 @@
 # Contributor: Sigmund Lahn 
 
 pkgname=rethinkdb
-pkgver=1.16.3
-_tag=rethinkdb-$pkgver
+pkgver=2.0.0
+_tag=rethinkdb-$pkgver-1
 pkgrel=1
-pkgdesc='An open-source distributed database built with love.'
+pkgdesc='Distributed powerful and scalable NoSQL database'
 arch=(i686 x86_64)
 url='http://www.rethinkdb.com/'
 license=(AGPL)
-depends=(protobuf ncurses curl)
+depends=(protobuf ncurses curl icu)
 makedepends=(boost python2 wget)
 backup=(etc/rethinkdb/instances.d/default.conf)
 install=rethinkdb.install
@@ -21,7 +21,7 @@
   rethinkdb-tmpfile.conf
   rethinkdb.service
 )
-sha256sums=('62fc20856dd6ff5a7344739e36fd8d3c4baf463ee8ec7bdb985445b0992c3cfa'
+sha256sums=('ec267cf6341e8be091b944b9134da69ee33db2efc48158b35bf3555a9fd17d39'
 '656d3a42e75d087e723f71aa320fdd91cbbb82071ef72eb11fd3e4a619b429a4'
 'e56bffa2b9ebc3a00ef566ab2be0719a633c89d961a2461dfa2d9ffdb258c1a2')
 
@@ -31,7 +31,9 @@
   sed \
 -e 's|#!/usr/bin/python|#!/usr/bin/python2|' \
 -e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
--i scripts/*.py
+-i scripts/*.py external/v8_*/tools/*.py
+  sed -e 's|exec python|exec python2|g' -i external/v8_*/build/gyp/gyp
+  sed -e 's|\bpython\b|python2|g' -i 
external/v8_*/{Makefile,*/*.gyp,*/*.gypi,*/*/*.gyp}
 }
 
 build() {
@@ -44,9 +46,9 @@
 check() {
   cd $_tag
 
-  make build/release/rethinkdb-unittest
-  ./build/release/rethinkdb-unittest --gtest_filter=-RDBBtree.*
-  # some tests might be flaky on btrfs filesystem!
+  # make build/release/rethinkdb-unittest
+  # ./build/release/rethinkdb-unittest 
--gtest_filter=-RDBBtree.*:RDBInterrupt.*
+  # some tests might be flaky on btrfs filesystem
 }
 
 package() {


[arch-commits] Commit in lcalc/repos (16 files)

2015-04-14 Thread Antonio Rojas
Date: Wednesday, April 15, 2015 @ 00:41:32
  Author: arojas
Revision: 131374

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

Added:
  lcalc/repos/community-staging-i686/Lcommon.h.patch
(from rev 131373, lcalc/trunk/Lcommon.h.patch)
  lcalc/repos/community-staging-i686/PKGBUILD
(from rev 131373, lcalc/trunk/PKGBUILD)
  lcalc/repos/community-staging-i686/gcc-4.9.patch
(from rev 131373, lcalc/trunk/gcc-4.9.patch)
  lcalc/repos/community-staging-i686/pari-2.7.patch
(from rev 131373, lcalc/trunk/pari-2.7.patch)
  lcalc/repos/community-staging-x86_64/Lcommon.h.patch
(from rev 131373, lcalc/trunk/Lcommon.h.patch)
  lcalc/repos/community-staging-x86_64/PKGBUILD
(from rev 131373, lcalc/trunk/PKGBUILD)
  lcalc/repos/community-staging-x86_64/gcc-4.9.patch
(from rev 131373, lcalc/trunk/gcc-4.9.patch)
  lcalc/repos/community-staging-x86_64/pari-2.7.patch
(from rev 131373, lcalc/trunk/pari-2.7.patch)
Deleted:
  lcalc/repos/community-staging-i686/Lcommon.h.patch
  lcalc/repos/community-staging-i686/PKGBUILD
  lcalc/repos/community-staging-i686/gcc-4.9.patch
  lcalc/repos/community-staging-i686/pari-2.7.patch
  lcalc/repos/community-staging-x86_64/Lcommon.h.patch
  lcalc/repos/community-staging-x86_64/PKGBUILD
  lcalc/repos/community-staging-x86_64/gcc-4.9.patch
  lcalc/repos/community-staging-x86_64/pari-2.7.patch

--+
 /Lcommon.h.patch |   46 +
 /PKGBUILD|   88 +++
 /gcc-4.9.patch   |   48 ++
 /pari-2.7.patch  |  134 +
 community-staging-i686/Lcommon.h.patch   |   23 
 community-staging-i686/PKGBUILD  |   44 -
 community-staging-i686/gcc-4.9.patch |   24 -
 community-staging-i686/pari-2.7.patch|   67 --
 community-staging-x86_64/Lcommon.h.patch |   23 
 community-staging-x86_64/PKGBUILD|   44 -
 community-staging-x86_64/gcc-4.9.patch   |   24 -
 community-staging-x86_64/pari-2.7.patch  |   67 --
 12 files changed, 316 insertions(+), 316 deletions(-)

Deleted: community-staging-i686/Lcommon.h.patch
===
--- community-staging-i686/Lcommon.h.patch  2015-04-14 22:40:48 UTC (rev 
131373)
+++ community-staging-i686/Lcommon.h.patch  2015-04-14 22:41:32 UTC (rev 
131374)
@@ -1,23 +0,0 @@
 L-1.23/include/Lcommon.h.orig  2011-04-09 04:09:25.984121006 -0300
-+++ L-1.23/include/Lcommon.h   2011-04-09 04:09:58.750265003 -0300
-@@ -25,6 +25,8 @@ inline double lcalc_to_double(const Doub
- #ifdef USE_MPFR
- inline double lcalc_to_double(const double& x) { return x; }
- #endif
-+
-+#if 0
- //inline double lcalc_to_double(const long double& x) { return x; }
- inline double lcalc_to_double(const int& x) { return x; }
- inline double lcalc_to_double(const long long& x) { return x; }
-@@ -33,6 +35,10 @@ inline double lcalc_to_double(const char
- inline double lcalc_to_double(const long int& x) { return x; }
- inline double lcalc_to_double(const unsigned int& x) { return x; }
- inline double lcalc_to_double(const long unsigned int& x) { return x; }
-+#else
-+#  define lcalc_to_double(x)  ((double)(x))
-+#endif
-+
- #define Int(x) (int)(lcalc_to_double(x))
- #define Long(x) (Long)(lcalc_to_double(x))
- #define double(x) (double)(lcalc_to_double(x))
- 
\ No newline at end of file

Copied: lcalc/repos/community-staging-i686/Lcommon.h.patch (from rev 131373, 
lcalc/trunk/Lcommon.h.patch)
===
--- community-staging-i686/Lcommon.h.patch  (rev 0)
+++ community-staging-i686/Lcommon.h.patch  2015-04-14 22:41:32 UTC (rev 
131374)
@@ -0,0 +1,23 @@
+--- L-1.23/include/Lcommon.h.orig  2011-04-09 04:09:25.984121006 -0300
 L-1.23/include/Lcommon.h   2011-04-09 04:09:58.750265003 -0300
+@@ -25,6 +25,8 @@ inline double lcalc_to_double(const Doub
+ #ifdef USE_MPFR
+ inline double lcalc_to_double(const double& x) { return x; }
+ #endif
++
++#if 0
+ //inline double lcalc_to_double(const long double& x) { return x; }
+ inline double lcalc_to_double(const int& x) { return x; }
+ inline double lcalc_to_double(const long long& x) { return x; }
+@@ -33,6 +35,10 @@ inline double lcalc_to_double(const char
+ inline double lcalc_to_double(const long int& x) { return x; }
+ inline double lcalc_to_double(const unsigned int& x) { return x; }
+ inline double lcalc_to_double(const long unsigned int& x) { return x; }
++#else
++#  define lcalc_to_double(x)  ((double)(x))
++#endif
++
+ #define Int(x) (int)(lcalc_to_double(x))
+ #define Long(x) (Long)(lcalc_to_double(x))
+ #define double(x) (double)(lcalc_to_double(x))
+ 
\ No newline at end of file

Deleted: community-staging-i686/PKGBUILD
==

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

2015-04-14 Thread Antonio Rojas
Date: Wednesday, April 15, 2015 @ 00:40:48
  Author: arojas
Revision: 131373

Rebuild against pari-sage

Modified:
  lcalc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 22:39:11 UTC (rev 131372)
+++ PKGBUILD2015-04-14 22:40:48 UTC (rev 131373)
@@ -3,12 +3,12 @@
 
 pkgname=lcalc
 pkgver=1.23
-pkgrel=5
+pkgrel=6
 pkgdesc="C++ L-function class library and command line interface"
 arch=('i686' 'x86_64')
 url="http://oto.math.uwaterloo.ca/~mrubinst/L_function_public/L.html";
 license=('GPL2')
-depends=('pari-git')
+depends=('pari-sage')
 makedepends=('chrpath')
 
source=("http://oto.math.uwaterloo.ca/~mrubinst/L_function_public/CODE/L-$pkgver.tar.gz";
 'Lcommon.h.patch' 'gcc-4.9.patch' 'pari-2.7.patch')
 md5sums=('8262d4495e0bbe0283e5341ef8694c23'


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

2015-04-14 Thread Antonio Rojas
Date: Wednesday, April 15, 2015 @ 00:39:11
  Author: arojas
Revision: 131372

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

Added:
  eclib/repos/community-staging-i686/PKGBUILD
(from rev 131371, eclib/trunk/PKGBUILD)
  eclib/repos/community-staging-x86_64/PKGBUILD
(from rev 131371, eclib/trunk/PKGBUILD)
Deleted:
  eclib/repos/community-staging-i686/PKGBUILD
  eclib/repos/community-staging-x86_64/PKGBUILD

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

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2015-04-14 22:38:16 UTC (rev 131371)
+++ community-staging-i686/PKGBUILD 2015-04-14 22:39:11 UTC (rev 131372)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=eclib
-pkgver=20150408
-pkgrel=1
-pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
-arch=(i686 x86_64)
-url="https://github.com/JohnCremona/eclib/";
-license=(GPL)
-depends=(flint pari-git)
-source=("https://github.com/JohnCremona/eclib/archive/$pkgname-$pkgver.tar.gz";)
-md5sums=('9544c6d471e48eac193efdc29a9d0955')
-
-build() {
-  cd eclib-$pkgname-$pkgver
-  ./autogen.sh
-  ./configure --prefix=/usr --with-flint=/usr
-  make
-}
-
-package() {
-  cd eclib-$pkgname-$pkgver
-  make install DESTDIR="$pkgdir"
-}
-

Copied: eclib/repos/community-staging-i686/PKGBUILD (from rev 131371, 
eclib/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-14 22:39:11 UTC (rev 131372)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=eclib
+pkgver=20150408
+pkgrel=2
+pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
+arch=(i686 x86_64)
+url="https://github.com/JohnCremona/eclib/";
+license=(GPL)
+depends=(flint pari-sage)
+source=("https://github.com/JohnCremona/eclib/archive/$pkgname-$pkgver.tar.gz";)
+md5sums=('9544c6d471e48eac193efdc29a9d0955')
+
+build() {
+  cd eclib-$pkgname-$pkgver
+  ./autogen.sh
+  ./configure --prefix=/usr --with-flint=/usr
+  make
+}
+
+package() {
+  cd eclib-$pkgname-$pkgver
+  make install DESTDIR="$pkgdir"
+}
+

Deleted: community-staging-x86_64/PKGBUILD
===
--- community-staging-x86_64/PKGBUILD   2015-04-14 22:38:16 UTC (rev 131371)
+++ community-staging-x86_64/PKGBUILD   2015-04-14 22:39:11 UTC (rev 131372)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=eclib
-pkgver=20150408
-pkgrel=1
-pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
-arch=(i686 x86_64)
-url="https://github.com/JohnCremona/eclib/";
-license=(GPL)
-depends=(flint pari-git)
-source=("https://github.com/JohnCremona/eclib/archive/$pkgname-$pkgver.tar.gz";)
-md5sums=('9544c6d471e48eac193efdc29a9d0955')
-
-build() {
-  cd eclib-$pkgname-$pkgver
-  ./autogen.sh
-  ./configure --prefix=/usr --with-flint=/usr
-  make
-}
-
-package() {
-  cd eclib-$pkgname-$pkgver
-  make install DESTDIR="$pkgdir"
-}
-

Copied: eclib/repos/community-staging-x86_64/PKGBUILD (from rev 131371, 
eclib/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-04-14 22:39:11 UTC (rev 131372)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=eclib
+pkgver=20150408
+pkgrel=2
+pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
+arch=(i686 x86_64)
+url="https://github.com/JohnCremona/eclib/";
+license=(GPL)
+depends=(flint pari-sage)
+source=("https://github.com/JohnCremona/eclib/archive/$pkgname-$pkgver.tar.gz";)
+md5sums=('9544c6d471e48eac193efdc29a9d0955')
+
+build() {
+  cd eclib-$pkgname-$pkgver
+  ./autogen.sh
+  ./configure --prefix=/usr --with-flint=/usr
+  make
+}
+
+package() {
+  cd eclib-$pkgname-$pkgver
+  make install DESTDIR="$pkgdir"
+}
+


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

2015-04-14 Thread Antonio Rojas
Date: Wednesday, April 15, 2015 @ 00:38:16
  Author: arojas
Revision: 131371

Rebuild against pari-sage

Modified:
  eclib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 22:32:56 UTC (rev 131370)
+++ PKGBUILD2015-04-14 22:38:16 UTC (rev 131371)
@@ -3,12 +3,12 @@
 
 pkgname=eclib
 pkgver=20150408
-pkgrel=1
+pkgrel=2
 pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
 arch=(i686 x86_64)
 url="https://github.com/JohnCremona/eclib/";
 license=(GPL)
-depends=(flint pari-git)
+depends=(flint pari-sage)
 source=("https://github.com/JohnCremona/eclib/archive/$pkgname-$pkgver.tar.gz";)
 md5sums=('9544c6d471e48eac193efdc29a9d0955')
 


[arch-commits] Commit in pari-sage (7 files)

2015-04-14 Thread Antonio Rojas
Date: Wednesday, April 15, 2015 @ 00:32:56
  Author: arojas
Revision: 131370

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

Added:
  pari-sage/repos/
  pari-sage/repos/community-i686/
  pari-sage/repos/community-i686/PKGBUILD
(from rev 131369, pari-sage/trunk/PKGBUILD)
  pari-sage/repos/community-i686/public_memory_functions.patch
(from rev 131369, pari-sage/trunk/public_memory_functions.patch)
  pari-sage/repos/community-x86_64/
  pari-sage/repos/community-x86_64/PKGBUILD
(from rev 131369, pari-sage/trunk/PKGBUILD)
  pari-sage/repos/community-x86_64/public_memory_functions.patch
(from rev 131369, pari-sage/trunk/public_memory_functions.patch)

+
 community-i686/PKGBUILD|   45 
 community-i686/public_memory_functions.patch   |   61 +++
 community-x86_64/PKGBUILD  |   45 
 community-x86_64/public_memory_functions.patch |   61 +++
 4 files changed, 212 insertions(+)

Copied: pari-sage/repos/community-i686/PKGBUILD (from rev 131369, 
pari-sage/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2015-04-14 22:32:56 UTC (rev 131370)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Gaetan Bisson 
+
+pkgname=pari-sage
+_pkgver=2.8-1369-g0e48e9b
+pkgver=${_pkgver//-/.}
+pkgrel=1
+pkgdesc='Computer algebra system designed for fast computations in number 
theory. Development snapshot required by SageMath'
+url='http://pari.math.u-bordeaux.fr/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('gmp' 'readline' 'libx11')
+makedepends=('perl' 'texlive-core')
+optdepends=('perl: gphelp, tex2mail')
+conflicts=('pari')
+provides=('pari')
+source=("http://www.sagemath.org/packages/upstream/pari/pari-$_pkgver.tar.gz"; 
'public_memory_functions.patch')
+md5sums=('2ae5684a10d557016fc1b6ad10b8bf80'
+ '9172b9faee975cd3fe0f97126ea61af8')
+
+prepare() {
+   cd pari-${_pkgver}
+   sed 's/\$addlib64//g' -i config/get_libpth
+
+# make some private functions public
+  patch -p1 -i "$srcdir"/public_memory_functions.patch
+}
+
+build() {
+   cd pari-${_pkgver}
+   ./Configure \
+   --prefix=/usr \
+   --with-readline \
+   --mt=pthread \
+   --with-gmp \
+
+   make all
+}
+
+package() {
+   cd pari-${_pkgver}
+   make DESTDIR="${pkgdir}" install
+   ln -sf gp.1.gz "${pkgdir}"/usr/share/man/man1/pari.1
+}

Copied: pari-sage/repos/community-i686/public_memory_functions.patch (from rev 
131369, pari-sage/trunk/public_memory_functions.patch)
===
--- repos/community-i686/public_memory_functions.patch  
(rev 0)
+++ repos/community-i686/public_memory_functions.patch  2015-04-14 22:32:56 UTC 
(rev 131370)
@@ -0,0 +1,61 @@
+diff --git a/src/headers/paridecl.h b/src/headers/paridecl.h
+index 7067183..4ede6ed 100644
+--- a/src/headers/paridecl.h
 b/src/headers/paridecl.h
+@@ -2819,6 +2819,9 @@ GEN pari_thread_start(struct pari_thread *t);
+ voidpari_thread_valloc(struct pari_thread *t, size_t s, size_t v, GEN 
arg);
+ GEN pari_version(void);
+ voidpari_warn(int numerr, ...);
++void *  pari_mainstack_malloc(size_t size);
++voidpari_mainstack_mfree(void *s, size_t size);
++voidpari_mainstack_free(struct pari_mainstack *st);
+ voidparistack_alloc(size_t rsize, size_t vsize);
+ voidparistack_newrsize(ulong newsize);
+ voidparistack_resize(ulong newsize);
+diff --git a/src/language/init.c b/src/language/init.c
+index 7b5922d..2a578d7 100644
+--- a/src/language/init.c
 b/src/language/init.c
+@@ -612,7 +612,7 @@ pari_add_oldmodule(entree *ep)
+ #ifndef MAP_NORESERVE
+ #define MAP_NORESERVE 0
+ #endif
+-static void *
++void *
+ pari_mainstack_malloc(size_t size)
+ {
+   void *b = mmap(NULL, size, PROT_READ|PROT_WRITE,
+@@ -620,7 +620,7 @@ pari_mainstack_malloc(size_t size)
+   return (b == MAP_FAILED) ? NULL: b;
+ }
+ 
+-static void
++void
+ pari_mainstack_mfree(void *s, size_t size)
+ {
+   munmap(s, size);
+@@ -634,13 +634,13 @@ pari_mainstack_mreset(void *s, size_t size)
+ 
+ #else
+ #define PARI_STACK_ALIGN (0x40UL)
+-static void *
++void *
+ pari_mainstack_malloc(size_t s)
+ {
+   return malloc(s); /* NOT pari_malloc, e_MEM would be deadly */
+ }
+ 
+-static void
++void
+ pari_mainstack_mfree(void *s, size_t size) { (void) size; free(s); }
+ 
+ static void
+@@ -681,7 +681,7 @@ pari_mainstack_alloc(struct pari_mainstack *st, size_t 
rsize, size_t vsize)
+   st->memused = 0;
+ }
+ 
+-static void
++void
+ pari_mainstack_free(struct pari_mainstack *st)
+ {
+   pari_mainstack_mfree((void*)st->vbot, st->vsize ? st->vsize : 
fix_size(st->rsize));

Copied: pari-sage/repos/community-

[arch-commits] Commit in (4 files)

2015-04-14 Thread Antonio Rojas
Date: Wednesday, April 15, 2015 @ 00:31:39
  Author: arojas
Revision: 131369

Add pari snapshot needed by SageMath 6.6

Added:
  pari-sage/
  pari-sage/trunk/
  pari-sage/trunk/PKGBUILD
  pari-sage/trunk/public_memory_functions.patch

---+
 PKGBUILD  |   45 +
 public_memory_functions.patch |   61 
 2 files changed, 106 insertions(+)

Added: pari-sage/trunk/PKGBUILD
===
--- pari-sage/trunk/PKGBUILD(rev 0)
+++ pari-sage/trunk/PKGBUILD2015-04-14 22:31:39 UTC (rev 131369)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Gaetan Bisson 
+
+pkgname=pari-sage
+_pkgver=2.8-1369-g0e48e9b
+pkgver=${_pkgver//-/.}
+pkgrel=1
+pkgdesc='Computer algebra system designed for fast computations in number 
theory. Development snapshot required by SageMath'
+url='http://pari.math.u-bordeaux.fr/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('gmp' 'readline' 'libx11')
+makedepends=('perl' 'texlive-core')
+optdepends=('perl: gphelp, tex2mail')
+conflicts=('pari')
+provides=('pari')
+source=("http://www.sagemath.org/packages/upstream/pari/pari-$_pkgver.tar.gz"; 
'public_memory_functions.patch')
+md5sums=('2ae5684a10d557016fc1b6ad10b8bf80'
+ '9172b9faee975cd3fe0f97126ea61af8')
+
+prepare() {
+   cd pari-${_pkgver}
+   sed 's/\$addlib64//g' -i config/get_libpth
+
+# make some private functions public
+  patch -p1 -i "$srcdir"/public_memory_functions.patch
+}
+
+build() {
+   cd pari-${_pkgver}
+   ./Configure \
+   --prefix=/usr \
+   --with-readline \
+   --mt=pthread \
+   --with-gmp \
+
+   make all
+}
+
+package() {
+   cd pari-${_pkgver}
+   make DESTDIR="${pkgdir}" install
+   ln -sf gp.1.gz "${pkgdir}"/usr/share/man/man1/pari.1
+}


Property changes on: pari-sage/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: pari-sage/trunk/public_memory_functions.patch
===
--- pari-sage/trunk/public_memory_functions.patch   
(rev 0)
+++ pari-sage/trunk/public_memory_functions.patch   2015-04-14 22:31:39 UTC 
(rev 131369)
@@ -0,0 +1,61 @@
+diff --git a/src/headers/paridecl.h b/src/headers/paridecl.h
+index 7067183..4ede6ed 100644
+--- a/src/headers/paridecl.h
 b/src/headers/paridecl.h
+@@ -2819,6 +2819,9 @@ GEN pari_thread_start(struct pari_thread *t);
+ voidpari_thread_valloc(struct pari_thread *t, size_t s, size_t v, GEN 
arg);
+ GEN pari_version(void);
+ voidpari_warn(int numerr, ...);
++void *  pari_mainstack_malloc(size_t size);
++voidpari_mainstack_mfree(void *s, size_t size);
++voidpari_mainstack_free(struct pari_mainstack *st);
+ voidparistack_alloc(size_t rsize, size_t vsize);
+ voidparistack_newrsize(ulong newsize);
+ voidparistack_resize(ulong newsize);
+diff --git a/src/language/init.c b/src/language/init.c
+index 7b5922d..2a578d7 100644
+--- a/src/language/init.c
 b/src/language/init.c
+@@ -612,7 +612,7 @@ pari_add_oldmodule(entree *ep)
+ #ifndef MAP_NORESERVE
+ #define MAP_NORESERVE 0
+ #endif
+-static void *
++void *
+ pari_mainstack_malloc(size_t size)
+ {
+   void *b = mmap(NULL, size, PROT_READ|PROT_WRITE,
+@@ -620,7 +620,7 @@ pari_mainstack_malloc(size_t size)
+   return (b == MAP_FAILED) ? NULL: b;
+ }
+ 
+-static void
++void
+ pari_mainstack_mfree(void *s, size_t size)
+ {
+   munmap(s, size);
+@@ -634,13 +634,13 @@ pari_mainstack_mreset(void *s, size_t size)
+ 
+ #else
+ #define PARI_STACK_ALIGN (0x40UL)
+-static void *
++void *
+ pari_mainstack_malloc(size_t s)
+ {
+   return malloc(s); /* NOT pari_malloc, e_MEM would be deadly */
+ }
+ 
+-static void
++void
+ pari_mainstack_mfree(void *s, size_t size) { (void) size; free(s); }
+ 
+ static void
+@@ -681,7 +681,7 @@ pari_mainstack_alloc(struct pari_mainstack *st, size_t 
rsize, size_t vsize)
+   st->memused = 0;
+ }
+ 
+-static void
++void
+ pari_mainstack_free(struct pari_mainstack *st)
+ {
+   pari_mainstack_mfree((void*)st->vbot, st->vsize ? st->vsize : 
fix_size(st->rsize));


[arch-commits] Commit in (pari-git)

2015-04-14 Thread Gaetan Bisson
Date: Wednesday, April 15, 2015 @ 00:15:31
  Author: bisson
Revision: 131368

back to the AUR

Deleted:
  pari-git/


[arch-commits] Commit in pari-git/repos (community-x86_64)

2015-04-14 Thread Gaetan Bisson
Date: Wednesday, April 15, 2015 @ 00:14:58
  Author: bisson
Revision: 131367

db-remove: pari-git removed by bisson

Deleted:
  pari-git/repos/community-x86_64/


[arch-commits] Commit in pari-git/repos (community-i686)

2015-04-14 Thread Gaetan Bisson
Date: Wednesday, April 15, 2015 @ 00:14:35
  Author: bisson
Revision: 131366

db-remove: pari-git removed by bisson

Deleted:
  pari-git/repos/community-i686/


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

2015-04-14 Thread Anatol Pomozov
Date: Tuesday, April 14, 2015 @ 23:33:51
  Author: anatolik
Revision: 131365

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

Added:
  atftp/repos/community-i686/
  atftp/repos/community-i686/PKGBUILD
(from rev 131364, atftp/trunk/PKGBUILD)
  atftp/repos/community-i686/atftpd.conf
(from rev 131364, atftp/trunk/atftpd.conf)
  atftp/repos/community-i686/atftpd.service
(from rev 131364, atftp/trunk/atftpd.service)
  atftp/repos/community-x86_64/
  atftp/repos/community-x86_64/PKGBUILD
(from rev 131364, atftp/trunk/PKGBUILD)
  atftp/repos/community-x86_64/atftpd.conf
(from rev 131364, atftp/trunk/atftpd.conf)
  atftp/repos/community-x86_64/atftpd.service
(from rev 131364, atftp/trunk/atftpd.service)

-+
 community-i686/PKGBUILD |   38 ++
 community-i686/atftpd.conf  |3 +++
 community-i686/atftpd.service   |   10 ++
 community-x86_64/PKGBUILD   |   38 ++
 community-x86_64/atftpd.conf|3 +++
 community-x86_64/atftpd.service |   10 ++
 6 files changed, 102 insertions(+)

Copied: atftp/repos/community-i686/PKGBUILD (from rev 131364, 
atftp/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-04-14 21:33:51 UTC (rev 131365)
@@ -0,0 +1,38 @@
+# Maintainer: Benjamin Bukowski 
+# Contributor: Johannes Löthberg 
+
+pkgname=atftp
+pkgver=0.7.1
+pkgrel=1
+pkgdesc='Client/server implementation of the TFTP protocol that implements 
RFCs 1350, 2090, 2347, 2348, and 2349'
+arch=(i686 x86_64)
+url='http://sourceforge.net/projects/atftp/'
+license=(GPL)
+depends=(pcre readline)
+backup=(etc/conf.d/atftpd)
+source=(http://downloads.sf.net/sourceforge/atftp/atftp-$pkgver.tar.gz
+atftpd.service
+atftpd.conf)
+sha1sums=('fc9e9f821dfd2f257b4a5c32b948ed60b4e31fd1'
+  'fb6a7a03aa2d37caf4202e152d84a18dd20e30f3'
+  '0ee061597778d0ca850f053d0e3d9157e3376e79')
+
+build() {
+  cd atftp-$pkgver
+  ./configure --prefix=/usr --mandir=/usr/share/man --sbindir=/usr/bin \
+  --enable-libreadline --disable-libwrap
+  make
+}
+
+package() {
+  cd atftp-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 ../atftpd.service 
"$pkgdir"/usr/lib/systemd/system/atftpd.service
+  install -Dm644 ../atftpd.conf "$pkgdir"/etc/conf.d/atftpd
+  install -dm775 --group=nobody "$pkgdir"/srv/atftp 
+
+  # remove in.tftpd link as it conflicts with extra/tftp-hpa
+  rm "${pkgdir}/usr/share/man/man8/in.tftpd.8"
+  rm "${pkgdir}/usr/bin/in.tftpd"
+}

Copied: atftp/repos/community-i686/atftpd.conf (from rev 131364, 
atftp/trunk/atftpd.conf)
===
--- community-i686/atftpd.conf  (rev 0)
+++ community-i686/atftpd.conf  2015-04-14 21:33:51 UTC (rev 131365)
@@ -0,0 +1,3 @@
+# Parameters to be passed to ATFTPD
+ATFTPD_ARGS="--no-multicast --maxthread 20 --verbose=6 --group nobody 
/srv/atftp"
+

Copied: atftp/repos/community-i686/atftpd.service (from rev 131364, 
atftp/trunk/atftpd.service)
===
--- community-i686/atftpd.service   (rev 0)
+++ community-i686/atftpd.service   2015-04-14 21:33:51 UTC (rev 131365)
@@ -0,0 +1,10 @@
+[Unit]
+Description=Advanced TFTP Daemon
+After=network.target
+
+[Service]
+EnvironmentFile=/etc/conf.d/atftpd
+ExecStart=/usr/bin/atftpd --daemon --no-fork $ATFTPD_ARGS
+
+[Install]
+WantedBy=multi-user.target

Copied: atftp/repos/community-x86_64/PKGBUILD (from rev 131364, 
atftp/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-04-14 21:33:51 UTC (rev 131365)
@@ -0,0 +1,38 @@
+# Maintainer: Benjamin Bukowski 
+# Contributor: Johannes Löthberg 
+
+pkgname=atftp
+pkgver=0.7.1
+pkgrel=1
+pkgdesc='Client/server implementation of the TFTP protocol that implements 
RFCs 1350, 2090, 2347, 2348, and 2349'
+arch=(i686 x86_64)
+url='http://sourceforge.net/projects/atftp/'
+license=(GPL)
+depends=(pcre readline)
+backup=(etc/conf.d/atftpd)
+source=(http://downloads.sf.net/sourceforge/atftp/atftp-$pkgver.tar.gz
+atftpd.service
+atftpd.conf)
+sha1sums=('fc9e9f821dfd2f257b4a5c32b948ed60b4e31fd1'
+  'fb6a7a03aa2d37caf4202e152d84a18dd20e30f3'
+  '0ee061597778d0ca850f053d0e3d9157e3376e79')
+
+build() {
+  cd atftp-$pkgver
+  ./configure --prefix=/usr --mandir=/usr/share/man --sbindir=/usr/bin \
+  --enable-libreadline --disable-libwrap
+  make
+}
+
+package() {
+  cd atftp-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 ../atftpd.service 
"$pkgdir"/usr/lib/systemd/system/atftpd.service
+  install -Dm644 ../atftpd.conf "$pkgdir"/

[arch-commits] Commit in (6 files)

2015-04-14 Thread Anatol Pomozov
Date: Tuesday, April 14, 2015 @ 23:33:09
  Author: anatolik
Revision: 131364

atftp: move from AUR

Added:
  atftp/
  atftp/repos/
  atftp/trunk/
  atftp/trunk/PKGBUILD
  atftp/trunk/atftpd.conf
  atftp/trunk/atftpd.service

+
 PKGBUILD   |   38 ++
 atftpd.conf|3 +++
 atftpd.service |   10 ++
 3 files changed, 51 insertions(+)

Added: atftp/trunk/PKGBUILD
===
--- atftp/trunk/PKGBUILD(rev 0)
+++ atftp/trunk/PKGBUILD2015-04-14 21:33:09 UTC (rev 131364)
@@ -0,0 +1,38 @@
+# Maintainer: Benjamin Bukowski 
+# Contributor: Johannes Löthberg 
+
+pkgname=atftp
+pkgver=0.7.1
+pkgrel=1
+pkgdesc='Client/server implementation of the TFTP protocol that implements 
RFCs 1350, 2090, 2347, 2348, and 2349'
+arch=(i686 x86_64)
+url='http://sourceforge.net/projects/atftp/'
+license=(GPL)
+depends=(pcre readline)
+backup=(etc/conf.d/atftpd)
+source=(http://downloads.sf.net/sourceforge/atftp/atftp-$pkgver.tar.gz
+atftpd.service
+atftpd.conf)
+sha1sums=('fc9e9f821dfd2f257b4a5c32b948ed60b4e31fd1'
+  'fb6a7a03aa2d37caf4202e152d84a18dd20e30f3'
+  '0ee061597778d0ca850f053d0e3d9157e3376e79')
+
+build() {
+  cd atftp-$pkgver
+  ./configure --prefix=/usr --mandir=/usr/share/man --sbindir=/usr/bin \
+  --enable-libreadline --disable-libwrap
+  make
+}
+
+package() {
+  cd atftp-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 ../atftpd.service 
"$pkgdir"/usr/lib/systemd/system/atftpd.service
+  install -Dm644 ../atftpd.conf "$pkgdir"/etc/conf.d/atftpd
+  install -dm775 --group=nobody "$pkgdir"/srv/atftp 
+
+  # remove in.tftpd link as it conflicts with extra/tftp-hpa
+  rm "${pkgdir}/usr/share/man/man8/in.tftpd.8"
+  rm "${pkgdir}/usr/bin/in.tftpd"
+}


Property changes on: atftp/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: atftp/trunk/atftpd.conf
===
--- atftp/trunk/atftpd.conf (rev 0)
+++ atftp/trunk/atftpd.conf 2015-04-14 21:33:09 UTC (rev 131364)
@@ -0,0 +1,3 @@
+# Parameters to be passed to ATFTPD
+ATFTPD_ARGS="--no-multicast --maxthread 20 --verbose=6 --group nobody 
/srv/atftp"
+

Added: atftp/trunk/atftpd.service
===
--- atftp/trunk/atftpd.service  (rev 0)
+++ atftp/trunk/atftpd.service  2015-04-14 21:33:09 UTC (rev 131364)
@@ -0,0 +1,10 @@
+[Unit]
+Description=Advanced TFTP Daemon
+After=network.target
+
+[Service]
+EnvironmentFile=/etc/conf.d/atftpd
+ExecStart=/usr/bin/atftpd --daemon --no-fork $ATFTPD_ARGS
+
+[Install]
+WantedBy=multi-user.target


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

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 22:57:47
  Author: arojas
Revision: 236562

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

Added:
  kinfocenter/repos/kde-unstable-i686/PKGBUILD
(from rev 236561, kinfocenter/kde-unstable/PKGBUILD)
  kinfocenter/repos/kde-unstable-i686/kcm-about-distrorc
(from rev 236561, kinfocenter/kde-unstable/kcm-about-distrorc)
  kinfocenter/repos/kde-unstable-x86_64/PKGBUILD
(from rev 236561, kinfocenter/kde-unstable/PKGBUILD)
  kinfocenter/repos/kde-unstable-x86_64/kcm-about-distrorc
(from rev 236561, kinfocenter/kde-unstable/kcm-about-distrorc)
Deleted:
  kinfocenter/repos/kde-unstable-i686/PKGBUILD
  kinfocenter/repos/kde-unstable-x86_64/PKGBUILD

+
 /PKGBUILD  |   90 +++
 kde-unstable-i686/PKGBUILD |   38 -
 kde-unstable-i686/kcm-about-distrorc   |2 
 kde-unstable-x86_64/PKGBUILD   |   38 -
 kde-unstable-x86_64/kcm-about-distrorc |2 
 5 files changed, 94 insertions(+), 76 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2015-04-14 20:55:57 UTC (rev 236561)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 20:57:47 UTC (rev 236562)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=kinfocenter
-pkgver=5.2.95
-pkgrel=1
-pkgdesc='KInfocenter'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/kinfocenter'
-license=('LGPL')
-depends=('kdelibs4support' 'kcmutils' 'pciutils' 'glu' 'libraw1394' 'kwayland' 
'kdeclarative')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'plasma-framework')
-conflicts=('kdebase-workspace')
-groups=('plasma')
-source=("http://download.kde.org/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz";)
-md5sums=('c60a6d96b3e175275a97ec6f0bec69d8')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kinfocenter/repos/kde-unstable-i686/PKGBUILD (from rev 236561, 
kinfocenter/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 20:57:47 UTC (rev 236562)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=kinfocenter
+pkgver=5.2.95
+pkgrel=2
+pkgdesc='KInfocenter'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kinfocenter'
+license=('LGPL')
+depends=('kdelibs4support' 'kcmutils' 'pciutils' 'glu' 'libraw1394' 'kwayland')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'plasma-framework')
+conflicts=('kdebase-workspace')
+groups=('plasma')
+source=("http://download.kde.org/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz";
 
+'archlinux-logo.png::https://d11xdyzr0div58.cloudfront.net/static/logos/archlinux-logo-dark-90dpi.ebdee92a15b3.png'
 'kcm-about-distrorc')
+md5sums=('c60a6d96b3e175275a97ec6f0bec69d8'
+ 'ebdee92a15b3b0ebf9ff68d6503476bd'
+ 'd79fe510ddc2b06c42cd1b81761f182b')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+
+# Install Arch logo
+  install -Dm644 "$srcdir"/archlinux-logo.png 
"$pkgdir"/usr/share/about-distro/archlinux-logo.png
+  install -Dm644 "$srcdir"/kcm-about-distrorc 
"$pkgdir"/etc/xdg/kcm-about-distrorc
+}

Copied: kinfocenter/repos/kde-unstable-i686/kcm-about-distrorc (from rev 
236561, kinfocenter/kde-unstable/kcm-about-distrorc)
===
--- kde-unstable-i686/kcm-about-distrorc(rev 0)
+++ kde-unstable-i686/kcm-about-distrorc2015-04-14 20:57:47 UTC (rev 
236562)
@@ -0,0 +1,2 @@
+[General]
+LogoPath=/usr/share/about-distro/archlinux-logo.png

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2015-04-14 20:55:57 UTC (rev 236561)
+++ kde-unstable-x86_64/PKGBUILD2015-04-14 20:57:47 UTC (rev 236562)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=kinfocenter
-pkgver=5.2.95
-pkgrel=1
-pkgdesc='KInfocenter'
-arch=('i686' 'x86_64')
-url='https://projec

[arch-commits] Commit in kinfocenter/kde-unstable (PKGBUILD kcm-about-distrorc)

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 22:55:57
  Author: arojas
Revision: 236561

Add Arch logo for kcm-about-distro

Added:
  kinfocenter/kde-unstable/kcm-about-distrorc
Modified:
  kinfocenter/kde-unstable/PKGBUILD

+
 PKGBUILD   |   15 +++
 kcm-about-distrorc |2 ++
 2 files changed, 13 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 19:30:45 UTC (rev 236560)
+++ PKGBUILD2015-04-14 20:55:57 UTC (rev 236561)
@@ -5,17 +5,20 @@
 
 pkgname=kinfocenter
 pkgver=5.2.95
-pkgrel=1
+pkgrel=2
 pkgdesc='KInfocenter'
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/workspace/kinfocenter'
 license=('LGPL')
-depends=('kdelibs4support' 'kcmutils' 'pciutils' 'glu' 'libraw1394' 'kwayland' 
'kdeclarative')
+depends=('kdelibs4support' 'kcmutils' 'pciutils' 'glu' 'libraw1394' 'kwayland')
 makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'plasma-framework')
 conflicts=('kdebase-workspace')
 groups=('plasma')
-source=("http://download.kde.org/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz";)
-md5sums=('c60a6d96b3e175275a97ec6f0bec69d8')
+source=("http://download.kde.org/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz";
 
+'archlinux-logo.png::https://d11xdyzr0div58.cloudfront.net/static/logos/archlinux-logo-dark-90dpi.ebdee92a15b3.png'
 'kcm-about-distrorc')
+md5sums=('c60a6d96b3e175275a97ec6f0bec69d8'
+ 'ebdee92a15b3b0ebf9ff68d6503476bd'
+ 'd79fe510ddc2b06c42cd1b81761f182b')
 
 prepare() {
   mkdir build
@@ -35,4 +38,8 @@
 package() {
   cd build
   make DESTDIR="${pkgdir}" install
+
+# Install Arch logo
+  install -Dm644 "$srcdir"/archlinux-logo.png 
"$pkgdir"/usr/share/about-distro/archlinux-logo.png
+  install -Dm644 "$srcdir"/kcm-about-distrorc 
"$pkgdir"/etc/xdg/kcm-about-distrorc
 }

Added: kcm-about-distrorc
===
--- kcm-about-distrorc  (rev 0)
+++ kcm-about-distrorc  2015-04-14 20:55:57 UTC (rev 236561)
@@ -0,0 +1,2 @@
+[General]
+LogoPath=/usr/share/about-distro/archlinux-logo.png


[arch-commits] Commit in sagemath/trunk (5 files)

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 22:30:18
  Author: arojas
Revision: 131363

SageMath 6.6

Modified:
  sagemath/trunk/PKGBUILD
  sagemath/trunk/c_lib.patch
Deleted:
  sagemath/trunk/ChangeLog
  sagemath/trunk/ipython3.patch
  sagemath/trunk/tests_parallel.patch

--+
 ChangeLog|   11 
 PKGBUILD |   67 
 c_lib.patch  |9 
 ipython3.patch   |11325 -
 tests_parallel.patch |   14 
 5 files changed, 32 insertions(+), 11394 deletions(-)

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


[arch-commits] Commit in (16 files)

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 22:17:01
  Author: arojas
Revision: 131362

Sage has been renamed to SageMath

Added:
  sagemath/
  sagemath/trunk/
  sagemath/trunk/ChangeLog
  sagemath/trunk/PKGBUILD
  sagemath/trunk/anal.h
  sagemath/trunk/c_lib.patch
  sagemath/trunk/clean.patch
  sagemath/trunk/env.patch
  sagemath/trunk/fes02.patch
  sagemath/trunk/ipython3.patch
  sagemath/trunk/package.patch
  sagemath/trunk/paths.patch
  sagemath/trunk/pexpect-del.patch
  sagemath/trunk/pexpect-env.patch
  sagemath/trunk/skip-check.patch
  sagemath/trunk/tests_parallel.patch

--+
 ChangeLog|   11 
 PKGBUILD |  158 
 anal.h   |   65 
 c_lib.patch  |   26 
 clean.patch  |   23 
 env.patch|  132 
 fes02.patch  |   45 
 ipython3.patch   |11325 +
 package.patch|   11 
 paths.patch  |   32 
 pexpect-del.patch|   15 
 pexpect-env.patch|   32 
 skip-check.patch |   21 
 tests_parallel.patch |   14 
 14 files changed, 11910 insertions(+)

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


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

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 21:30:45
  Author: arojas
Revision: 236560

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

Added:
  plasma-nm/repos/kde-unstable-i686/PKGBUILD
(from rev 236559, plasma-nm/kde-unstable/PKGBUILD)
  plasma-nm/repos/kde-unstable-x86_64/PKGBUILD
(from rev 236559, plasma-nm/kde-unstable/PKGBUILD)
Deleted:
  plasma-nm/repos/kde-unstable-i686/PKGBUILD
  plasma-nm/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2015-04-14 19:29:46 UTC (rev 236559)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 19:30:45 UTC (rev 236560)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=plasma-nm
-pkgver=5.2.95
-pkgrel=1
-pkgdesc='Plasma applet written in QML for managing network connections'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/plasma-nm'
-license=('GPL2')
-depends=('plasma-framework' 'libmm-qt5' 'networkmanager-qt' 'kdelibs4support')
-makedepends=('extra-cmake-modules' 'kdoctools' 'openconnect' 
'mobile-broadband-provider-info'
- 'python' 'kdelibs4support')
-optdepends=('mobile-broadband-provider-info: Database of mobile broadband 
service providers'
-'openconnect: Cisco AnyConnect VPN plugin')
-groups=('plasma')
-source=("http://download.kde.org/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz";)
-md5sums=('27997aec60ec54d902999501183fa1a6')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: plasma-nm/repos/kde-unstable-i686/PKGBUILD (from rev 236559, 
plasma-nm/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 19:30:45 UTC (rev 236560)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=plasma-nm
+pkgver=5.2.95
+pkgrel=2
+pkgdesc='Plasma applet written in QML for managing network connections'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/plasma-nm'
+license=('GPL2')
+depends=('plasma-framework' 'modemmanager-qt' 'networkmanager-qt' 
'kdelibs4support')
+makedepends=('extra-cmake-modules' 'kdoctools' 'openconnect' 
'mobile-broadband-provider-info'
+ 'python' 'kdelibs4support')
+optdepends=('mobile-broadband-provider-info: Database of mobile broadband 
service providers'
+'openconnect: Cisco AnyConnect VPN plugin')
+groups=('plasma')
+source=("http://download.kde.org/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz";)
+md5sums=('27997aec60ec54d902999501183fa1a6')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2015-04-14 19:29:46 UTC (rev 236559)
+++ kde-unstable-x86_64/PKGBUILD2015-04-14 19:30:45 UTC (rev 236560)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=plasma-nm
-pkgver=5.2.95
-pkgrel=1
-pkgdesc='Plasma applet written in QML for managing network connections'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/plasma-nm'
-license=('GPL2')
-depends=('plasma-framework' 'libmm-qt5' 'networkmanager-qt' 'kdelibs4support')
-makedepends=('extra-cmake-modules' 'kdoctools' 'openconnect' 
'mobile-broadband-provider-info'
- 'python' 'kdelibs4support')
-optdepends=('mobile-broadband-provider-info: Database of mobile broadband 
service providers'
-'openconnect: Cisco AnyConnect VPN plugin')
-groups=('plasma')
-source=("http://download.kde.org/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz";)
-md5sums=('27997aec60ec54d902999501183fa1a6')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  c

[arch-commits] Commit in plasma-nm/kde-unstable (PKGBUILD)

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 21:29:46
  Author: arojas
Revision: 236559

Fix modemmanager-qt dependency

Modified:
  plasma-nm/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 19:08:48 UTC (rev 236558)
+++ PKGBUILD2015-04-14 19:29:46 UTC (rev 236559)
@@ -4,12 +4,12 @@
 
 pkgname=plasma-nm
 pkgver=5.2.95
-pkgrel=1
+pkgrel=2
 pkgdesc='Plasma applet written in QML for managing network connections'
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/workspace/plasma-nm'
 license=('GPL2')
-depends=('plasma-framework' 'libmm-qt5' 'networkmanager-qt' 'kdelibs4support')
+depends=('plasma-framework' 'modemmanager-qt' 'networkmanager-qt' 
'kdelibs4support')
 makedepends=('extra-cmake-modules' 'kdoctools' 'openconnect' 
'mobile-broadband-provider-info'
  'python' 'kdelibs4support')
 optdepends=('mobile-broadband-provider-info: Database of mobile broadband 
service providers'


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

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 21:08:48
  Author: arojas
Revision: 236558

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

Added:
  plasma-workspace/repos/kde-unstable-i686/PKGBUILD
(from rev 236557, plasma-workspace/kde-unstable/PKGBUILD)
  plasma-workspace/repos/kde-unstable-i686/kde.pam
(from rev 236557, plasma-workspace/kde-unstable/kde.pam)
  plasma-workspace/repos/kde-unstable-x86_64/PKGBUILD
(from rev 236557, plasma-workspace/kde-unstable/PKGBUILD)
  plasma-workspace/repos/kde-unstable-x86_64/kde.pam
(from rev 236557, plasma-workspace/kde-unstable/kde.pam)
Deleted:
  plasma-workspace/repos/kde-unstable-i686/PKGBUILD
  plasma-workspace/repos/kde-unstable-i686/kde.pam
  plasma-workspace/repos/kde-unstable-x86_64/PKGBUILD
  plasma-workspace/repos/kde-unstable-x86_64/kde.pam

--+
 /PKGBUILD|  144 +
 /kde.pam |   12 +++
 kde-unstable-i686/PKGBUILD   |   72 
 kde-unstable-i686/kde.pam|6 -
 kde-unstable-x86_64/PKGBUILD |   72 
 kde-unstable-x86_64/kde.pam  |6 -
 6 files changed, 156 insertions(+), 156 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2015-04-14 19:08:04 UTC (rev 236557)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 19:08:48 UTC (rev 236558)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-# Contributor: Alexey D. 
-
-pkgbase=plasma-workspace
-pkgname=('plasma-workspace' 'drkonqi')
-pkgver=5.2.95
-pkgrel=1
-pkgdesc='KDE Plasma Workspace'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/plasma-workspace'
-license=('LGPL')
-# note on libxdamage:
-# not detected by namcap because libgl depends on it
-# but nvidia providing libgl does not depend on libxdamage
-depends=('knewstuff' 'kjsembed' 'knotifyconfig' 'libxdamage' 'kwayland'
- 'libksysguard' 'libkscreen' 'ktexteditor' 'libqalculate'
- 'qt5-tools' 'kded' 'kde-cli-tools' 'xorg-xrdb' 'xorg-xsetroot'
- 'xorg-xmessage' 'xorg-xprop' 'milou' 'networkmanager-qt' 'breeze')
-makedepends=('extra-cmake-modules' 'kdoctools' 'kwin' 'gpsd' 'baloo'
- 'krunner' 'kxmlrpcclient')
-groups=('plasma')
-source=("http://download.kde.org/unstable/plasma/${pkgver}/${pkgbase}-${pkgver}.tar.xz";
-'kde.pam')
-md5sums=('8e38f91aaf9dbb61338e4955b38e7da3'
- '929b182dec8a096206ad493477c09d2c')
-
-prepare() {
-  mkdir build
-
-  cd ${pkgbase}-${pkgver}
-  # be sure to use the Qt5 version of qtpaths
-  sed -i 's:qtpaths:qtpaths-qt5:' startkde/startkde.cmake
-}
-
-build() {
-  cd build
-  cmake ../${pkgbase}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package_plasma-workspace() {
-  optdepends=('plasma-workspace-wallpapers: additional wallpapers'
-  'gpsd: GPS support for geolocation')
-  conflicts=('kdebase-workspace')
-
-  cd build
-  make DESTDIR="${pkgdir}" install
-
-  install -D "${srcdir}"/kde.pam \
-"${pkgdir}"/etc/pam.d/kde
-
-  # Remove conflicts with drkonqi
-  rm "${pkgdir}"/usr/lib/drkonqi
-  rm -r "${pkgdir}"/usr/share/drkonqi
-}
-
-package_drkonqi() {
-  pkgdesc='KDE crash handler'
-  depends=('kdewebkit' 'kxmlrpcclient')
-
-  cd build/drkonqi
-  make DESTDIR="${pkgdir}" install
-}

Copied: plasma-workspace/repos/kde-unstable-i686/PKGBUILD (from rev 236557, 
plasma-workspace/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 19:08:48 UTC (rev 236558)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+# Contributor: Alexey D. 
+
+pkgbase=plasma-workspace
+pkgname=('plasma-workspace' 'drkonqi')
+pkgver=5.2.95
+pkgrel=2
+pkgdesc='KDE Plasma Workspace'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/plasma-workspace'
+license=('LGPL')
+# note on libxdamage:
+# not detected by namcap because libgl depends on it
+# but nvidia providing libgl does not depend on libxdamage
+depends=('knewstuff' 'kjsembed' 'knotifyconfig' 'libxdamage' 'kwayland'
+ 'libksysguard' 'libkscreen' 'ktexteditor' 'libqalculate'
+ 'qt5-tools' 'kded' 'kde-cli-tools' 'xorg-xrdb' 'xorg-xsetroot'
+ 'xorg-xmessage' 'xorg-xprop' 'milou' 'breeze')
+makedepends=('extra-cmake-modules' 'kdoctools' 'kwin' 'gpsd' 'baloo'
+ 'krunner' 'kxmlrpcclient' 'networkmanager-qt')
+groups=('plasma')
+source=("http://download.kde.org/unstable/plasma/${pkgver}/${pkgbase}-${pkgver}.tar.xz";
+'kde.pam')
+md5

[arch-commits] Commit in plasma-workspace/kde-unstable (PKGBUILD)

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 21:08:04
  Author: arojas
Revision: 236557

Make networkmanager-qt optional

Modified:
  plasma-workspace/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 18:25:10 UTC (rev 236556)
+++ PKGBUILD2015-04-14 19:08:04 UTC (rev 236557)
@@ -7,7 +7,7 @@
 pkgbase=plasma-workspace
 pkgname=('plasma-workspace' 'drkonqi')
 pkgver=5.2.95
-pkgrel=1
+pkgrel=2
 pkgdesc='KDE Plasma Workspace'
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/workspace/plasma-workspace'
@@ -18,9 +18,9 @@
 depends=('knewstuff' 'kjsembed' 'knotifyconfig' 'libxdamage' 'kwayland'
  'libksysguard' 'libkscreen' 'ktexteditor' 'libqalculate'
  'qt5-tools' 'kded' 'kde-cli-tools' 'xorg-xrdb' 'xorg-xsetroot'
- 'xorg-xmessage' 'xorg-xprop' 'milou' 'networkmanager-qt' 'breeze')
+ 'xorg-xmessage' 'xorg-xprop' 'milou' 'breeze')
 makedepends=('extra-cmake-modules' 'kdoctools' 'kwin' 'gpsd' 'baloo'
- 'krunner' 'kxmlrpcclient')
+ 'krunner' 'kxmlrpcclient' 'networkmanager-qt')
 groups=('plasma')
 
source=("http://download.kde.org/unstable/plasma/${pkgver}/${pkgbase}-${pkgver}.tar.xz";
 'kde.pam')
@@ -49,7 +49,7 @@
 
 package_plasma-workspace() {
   optdepends=('plasma-workspace-wallpapers: additional wallpapers'
-  'gpsd: GPS support for geolocation')
+  'gpsd: GPS based geolocation' 'networkmanager-qt: IP based 
geolocation')
   conflicts=('kdebase-workspace')
 
   cd build


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

2015-04-14 Thread Ike Devolder
Date: Tuesday, April 14, 2015 @ 20:58:25
  Author: idevolder
Revision: 131361

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-04-14 18:58:11 UTC (rev 131360)
+++ community-i686/PKGBUILD 2015-04-14 18:58:25 UTC (rev 131361)
@@ -1,34 +0,0 @@
-# vim:set ts=2 sw=2 et:
-# $Id$
-# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Maintainer: Sébastien Luttringer https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz";)
-
-build() {
-   cd "$pkgname-$pkgver"
-   aclocal
-   automake --add-missing
-   autoconf
-   ./configure --prefix=/usr
-  make
-}
-
-check() {
-   cd "$pkgname-$pkgver"
-   make check
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   make DESTDIR="$pkgdir" install
-}
-
-sha256sums=('7d09033ac4f2dd2f6dd2b61c2498bbc37762e6432afd9171553a5cc466a09998')

Copied: par2cmdline/repos/community-i686/PKGBUILD (from rev 131360, 
par2cmdline/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-04-14 18:58:25 UTC (rev 131361)
@@ -0,0 +1,34 @@
+# vim:set ts=2 sw=2 et:
+# $Id$
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Maintainer: Sébastien Luttringer https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz";)
+sha256sums=('1788aaab2cd7f760c4dc24c1d31a471a4b584fbbfa2a47f06f340b4d73480144')
+
+build() {
+   cd "$pkgname-$pkgver"
+   aclocal
+   automake --add-missing
+   autoconf
+   ./configure --prefix=/usr
+  make
+}
+
+check() {
+   cd "$pkgname-$pkgver"
+   make check
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   make DESTDIR="$pkgdir" install
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-04-14 18:58:11 UTC (rev 131360)
+++ community-x86_64/PKGBUILD   2015-04-14 18:58:25 UTC (rev 131361)
@@ -1,34 +0,0 @@
-# vim:set ts=2 sw=2 et:
-# $Id$
-# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Maintainer: Sébastien Luttringer https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz";)
-
-build() {
-   cd "$pkgname-$pkgver"
-   aclocal
-   automake --add-missing
-   autoconf
-   ./configure --prefix=/usr
-  make
-}
-
-check() {
-   cd "$pkgname-$pkgver"
-   make check
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   make DESTDIR="$pkgdir" install
-}
-
-sha256sums=('7d09033ac4f2dd2f6dd2b61c2498bbc37762e6432afd9171553a5cc466a09998')

Copied: par2cmdline/repos/community-x86_64/PKGBUILD (from rev 131360, 
par2cmdline/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-04-14 18:58:25 UTC (rev 131361)
@@ -0,0 +1,34 @@
+# vim:set ts=2 sw=2 et:
+# $Id$
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Maintainer: Sébastien Luttringer https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz";)
+sha256sums=('1788aaab2cd7f760c4dc24c1d31a471a4b584fbbfa2a47f06f340b4d73480144')
+
+build() {
+   cd "$pkgname-$pkgver"
+   aclocal
+   automake --add-missing
+   autoconf
+   ./configure --prefix=/usr
+  make
+}
+
+check() {
+   cd "$pkgname-$pkgver"
+   make check
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   make DESTDIR="$pkgdir" install
+}
+


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

2015-04-14 Thread Ike Devolder
Date: Tuesday, April 14, 2015 @ 20:58:11
  Author: idevolder
Revision: 131360

par2cmdline :: 0.6.12

Modified:
  par2cmdline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 18:15:28 UTC (rev 131359)
+++ PKGBUILD2015-04-14 18:58:11 UTC (rev 131360)
@@ -4,7 +4,7 @@
 # Maintainer: Sébastien Luttringer https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz";)
+sha256sums=('1788aaab2cd7f760c4dc24c1d31a471a4b584fbbfa2a47f06f340b4d73480144')
 
 build() {
cd "$pkgname-$pkgver"
@@ -31,4 +32,3 @@
make DESTDIR="$pkgdir" install
 }
 
-sha256sums=('7d09033ac4f2dd2f6dd2b61c2498bbc37762e6432afd9171553a5cc466a09998')


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

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 20:25:10
  Author: arojas
Revision: 236556

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

Added:
  libkscreen/repos/kde-unstable-i686/PKGBUILD
(from rev 236555, libkscreen/kde-unstable/PKGBUILD)
  libkscreen/repos/kde-unstable-x86_64/PKGBUILD
(from rev 236555, libkscreen/kde-unstable/PKGBUILD)
Deleted:
  libkscreen/repos/kde-unstable-i686/PKGBUILD
  libkscreen/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|   80 +
 kde-unstable-i686/PKGBUILD   |   39 ---
 kde-unstable-x86_64/PKGBUILD |   39 ---
 3 files changed, 80 insertions(+), 78 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2015-04-14 18:23:29 UTC (rev 236555)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 18:25:10 UTC (rev 236556)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas 
-
-pkgname=libkscreen
-pkgver=5.2.95
-pkgrel=1
-pkgdesc='KDE screen management software'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/extragear/libs/libkscreen'
-license=('LGPL')
-depends=('qt5-x11extras' 'libxrandr')
-makedepends=('extra-cmake-modules')
-conflicts=('libkscreen-frameworks')
-replaces=('libkscreen-frameworks')
-source=("http://download.kde.org/unstable/plasma/${pkgver}/libkscreen-$pkgver.tar.xz";)
-md5sums=('afa66c549b61b149634c803a5edd401c')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../libkscreen-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: libkscreen/repos/kde-unstable-i686/PKGBUILD (from rev 236555, 
libkscreen/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 18:25:10 UTC (rev 236556)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=libkscreen
+pkgver=5.2.95
+pkgrel=2
+pkgdesc='KDE screen management software'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/extragear/libs/libkscreen'
+license=('LGPL')
+depends=('qt5-x11extras' 'libxrandr')
+makedepends=('extra-cmake-modules')
+conflicts=('libkscreen-frameworks')
+replaces=('libkscreen-frameworks')
+provides=('libkscreen-frameworks')
+source=("http://download.kde.org/unstable/plasma/${pkgver}/libkscreen-$pkgver.tar.xz";)
+md5sums=('afa66c549b61b149634c803a5edd401c')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../libkscreen-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2015-04-14 18:23:29 UTC (rev 236555)
+++ kde-unstable-x86_64/PKGBUILD2015-04-14 18:25:10 UTC (rev 236556)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas 
-
-pkgname=libkscreen
-pkgver=5.2.95
-pkgrel=1
-pkgdesc='KDE screen management software'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/extragear/libs/libkscreen'
-license=('LGPL')
-depends=('qt5-x11extras' 'libxrandr')
-makedepends=('extra-cmake-modules')
-conflicts=('libkscreen-frameworks')
-replaces=('libkscreen-frameworks')
-source=("http://download.kde.org/unstable/plasma/${pkgver}/libkscreen-$pkgver.tar.xz";)
-md5sums=('afa66c549b61b149634c803a5edd401c')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../libkscreen-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: libkscreen/repos/kde-unstable-x86_64/PKGBUILD (from rev 236555, 
libkscreen/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2015-04-14 18:25:10 UTC (rev 236556)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=libkscreen
+pkgver=5.2.95
+pkgrel=2
+pkgdesc='KDE screen mana

[arch-commits] Commit in libkscreen/kde-unstable (PKGBUILD)

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 20:23:29
  Author: arojas
Revision: 236555

Add provides (needed for okular-frameworks)

Modified:
  libkscreen/kde-unstable/PKGBUILD

--+
 PKGBUILD |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 18:20:19 UTC (rev 236554)
+++ PKGBUILD2015-04-14 18:23:29 UTC (rev 236555)
@@ -5,7 +5,7 @@
 
 pkgname=libkscreen
 pkgver=5.2.95
-pkgrel=1
+pkgrel=2
 pkgdesc='KDE screen management software'
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/extragear/libs/libkscreen'
@@ -14,6 +14,7 @@
 makedepends=('extra-cmake-modules')
 conflicts=('libkscreen-frameworks')
 replaces=('libkscreen-frameworks')
+provides=('libkscreen-frameworks')
 
source=("http://download.kde.org/unstable/plasma/${pkgver}/libkscreen-$pkgver.tar.xz";)
 md5sums=('afa66c549b61b149634c803a5edd401c')
 


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

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 20:20:19
  Author: arojas
Revision: 236554

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

Added:
  baloo/repos/kde-unstable-i686/PKGBUILD
(from rev 236553, baloo/kde-unstable/PKGBUILD)
  baloo/repos/kde-unstable-i686/baloo.install
(from rev 236553, baloo/kde-unstable/baloo.install)
  baloo/repos/kde-unstable-x86_64/PKGBUILD
(from rev 236553, baloo/kde-unstable/PKGBUILD)
  baloo/repos/kde-unstable-x86_64/baloo.install
(from rev 236553, baloo/kde-unstable/baloo.install)
Deleted:
  baloo/repos/kde-unstable-i686/PKGBUILD
  baloo/repos/kde-unstable-i686/baloo.install
  baloo/repos/kde-unstable-x86_64/PKGBUILD
  baloo/repos/kde-unstable-x86_64/baloo.install

---+
 /PKGBUILD |   80 
 /baloo.install|   22 +
 kde-unstable-i686/PKGBUILD|   39 -
 kde-unstable-i686/baloo.install   |   11 
 kde-unstable-x86_64/PKGBUILD  |   39 -
 kde-unstable-x86_64/baloo.install |   11 
 6 files changed, 102 insertions(+), 100 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2015-04-14 18:19:33 UTC (rev 236553)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 18:20:19 UTC (rev 236554)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=baloo
-pkgver=5.6.95
-_pkgver=5.2.95
-pkgrel=1
-pkgdesc="A framework for searching and managing metadata"
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kdelibs/baloo'
-license=('LGPL')
-depends=('xapian-core' 'kfilemetadata' 'kidletime' 'kdelibs4support')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-conflicts=('baloo-frameworks')
-replaces=('baloo-frameworks')
-install="${pkgname}.install"
-source=("http://download.kde.org/unstable/plasma/${_pkgver}/$pkgname-$pkgver.tar.xz";)
-md5sums=('5489cf02aeb34bb6ec1105b77d2d58f0')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: baloo/repos/kde-unstable-i686/PKGBUILD (from rev 236553, 
baloo/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 18:20:19 UTC (rev 236554)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=baloo
+pkgver=5.6.95
+_pkgver=5.2.95
+pkgrel=2
+pkgdesc="A framework for searching and managing metadata"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kdelibs/baloo'
+license=('LGPL')
+depends=('xapian-core' 'kfilemetadata' 'kidletime' 'kdelibs4support')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+conflicts=('baloo-frameworks')
+replaces=('baloo-frameworks')
+provides=('baloo-frameworks')
+install="${pkgname}.install"
+source=("http://download.kde.org/unstable/plasma/${_pkgver}/$pkgname-$pkgver.tar.xz";)
+md5sums=('5489cf02aeb34bb6ec1105b77d2d58f0')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: kde-unstable-i686/baloo.install
===
--- kde-unstable-i686/baloo.install 2015-04-14 18:19:33 UTC (rev 236553)
+++ kde-unstable-i686/baloo.install 2015-04-14 18:20:19 UTC (rev 236554)
@@ -1,11 +0,0 @@
-post_install() {
-[[ -x xdg-icon-resource ]] && xdg-icon-resource forceupdate --theme 
hicolor &> /dev/null || true
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: baloo/repos/kde-unstable-i686/baloo.install (from rev 236553, 
baloo/kde-unstable/baloo.install)
===
--- kde-unstable-i686/baloo.install (rev 0)
+++ kde-unstable-i686/baloo.install 2015-04-14 18:20:19 UTC (rev 236554)
@@ -0,0 +1,11 @@
+post_install() {
+[[ -x xdg-icon-resource ]] && xdg-icon-resource forceupdate --theme 
hicolor &> /dev/null || true
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2015-04-14 18:19:33 UTC (rev 236553)
+++ kde-unstable-x86_64/PKGBUILD2015-04-14 18:20:19 

[arch-commits] Commit in baloo/kde-unstable (PKGBUILD)

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 20:19:33
  Author: arojas
Revision: 236553

Add provides (needed for gwenview)

Modified:
  baloo/kde-unstable/PKGBUILD

--+
 PKGBUILD |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 17:48:59 UTC (rev 236552)
+++ PKGBUILD2015-04-14 18:19:33 UTC (rev 236553)
@@ -5,7 +5,7 @@
 pkgname=baloo
 pkgver=5.6.95
 _pkgver=5.2.95
-pkgrel=1
+pkgrel=2
 pkgdesc="A framework for searching and managing metadata"
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/kdelibs/baloo'
@@ -14,6 +14,7 @@
 makedepends=('extra-cmake-modules' 'kdoctools' 'python')
 conflicts=('baloo-frameworks')
 replaces=('baloo-frameworks')
+provides=('baloo-frameworks')
 install="${pkgname}.install"
 
source=("http://download.kde.org/unstable/plasma/${_pkgver}/$pkgname-$pkgver.tar.xz";)
 md5sums=('5489cf02aeb34bb6ec1105b77d2d58f0')


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

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 20:15:28
  Author: arojas
Revision: 131359

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

Added:
  skrooge/repos/community-staging-i686/
  skrooge/repos/community-staging-i686/PKGBUILD
(from rev 131358, skrooge/trunk/PKGBUILD)
  skrooge/repos/community-staging-i686/skrooge.changelog
(from rev 131358, skrooge/trunk/skrooge.changelog)
  skrooge/repos/community-staging-i686/skrooge.install
(from rev 131358, skrooge/trunk/skrooge.install)
  skrooge/repos/community-staging-x86_64/
  skrooge/repos/community-staging-x86_64/PKGBUILD
(from rev 131358, skrooge/trunk/PKGBUILD)
  skrooge/repos/community-staging-x86_64/skrooge.changelog
(from rev 131358, skrooge/trunk/skrooge.changelog)
  skrooge/repos/community-staging-x86_64/skrooge.install
(from rev 131358, skrooge/trunk/skrooge.install)

+
 community-staging-i686/PKGBUILD|   34 ++
 community-staging-i686/skrooge.changelog   |   41 +++
 community-staging-i686/skrooge.install |   14 +
 community-staging-x86_64/PKGBUILD  |   34 ++
 community-staging-x86_64/skrooge.changelog |   41 +++
 community-staging-x86_64/skrooge.install   |   14 +
 6 files changed, 178 insertions(+)

Copied: skrooge/repos/community-staging-i686/PKGBUILD (from rev 131358, 
skrooge/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-14 18:15:28 UTC (rev 131359)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Ray Rashif 
+# Contributor: Andrea Scarpino 
+# Contributor: neuromante 
+
+pkgname=skrooge
+pkgver=1.10.0
+pkgrel=3
+pkgdesc="A personal finances manager for KDE"
+arch=('i686' 'x86_64')
+url="http://skrooge.org/";
+license=('GPL')
+depends=('kdebase-runtime' 'libofx' 'qca-ossl' 'qjson' 'grantlee-qt4')
+makedepends=('cmake' 'automoc4' 'docbook-xsl' 'boost' 'kdepim-libkdepim')
+optdepends=('kdepim-libkdepim: for KDE PIM integration')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(http://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.bz2)
+sha256sums=('aae15e7abf91a7fc217247d3ae5e672f4215a9090f12389cddab68fe5a175c67')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  cmake . -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
+
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Copied: skrooge/repos/community-staging-i686/skrooge.changelog (from rev 
131358, skrooge/trunk/skrooge.changelog)
===
--- community-staging-i686/skrooge.changelog(rev 0)
+++ community-staging-i686/skrooge.changelog2015-04-14 18:15:28 UTC (rev 
131359)
@@ -0,0 +1,41 @@
+2014-10-30 Jaroslav Lichtblau 
+   * skrooge 1.10.0-1
+
+2014-04-18 Jaroslav Lichtblau 
+   * skrooge 1.9.0-1
+
+2013-12-23 Jaroslav Lichtblau 
+   * skrooge 1.8.0-3 FS#37406 fix
+
+2013-10-06 Jaroslav Lichtblau 
+   * skrooge 1.8.0-1
+
+2013-05-18 Jaroslav Lichtblau 
+   * skrooge 1.7.1-1
+
+2013-03-05 Jaroslav Lichtblau 
+   * skrooge 1.6.0-1
+
+2013-01-30 Jaroslav Lichtblau 
+   * skrooge 1.5.1-1
+
+2013-01-05 Jaroslav Lichtblau 
+   * skrooge 1.4.0-1
+
+2012-09-06 Jaroslav Lichtblau 
+   * skrooge 1.3.3-1
+
+2012-08-29 Jaroslav Lichtblau 
+   * skrooge 1.3.2-1
+
+2012-08-09  Eric Belanger  
+   * skrooge 1.3.0-2 Rebuild against libofx 0.9.5
+
+2012-05-05 Jaroslav Lichtblau 
+   * skrooge 1.3.0-1
+
+2012-02-24 Jaroslav Lichtblau 
+   * skrooge 1.2.0-1
+
+2011-11-27 Jaroslav Lichtblau 
+   * skrooge 1.1.1-1

Copied: skrooge/repos/community-staging-i686/skrooge.install (from rev 131358, 
skrooge/trunk/skrooge.install)
===
--- community-staging-i686/skrooge.install  (rev 0)
+++ community-staging-i686/skrooge.install  2015-04-14 18:15:28 UTC (rev 
131359)
@@ -0,0 +1,14 @@
+post_install() {
+  update-mime-database usr/share/mime &> /dev/null
+  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+  update-desktop-database -q
+  kbuildsycoca4 &> /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: skrooge/repos/community-staging-x86_64/PKGBUILD (from rev 131358, 
skrooge/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-04-14 18:15:28 UTC (rev 131359)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Ray Rashif 
+# Contributor: Andrea Scarpino 
+# Contributor: neuromante 
+

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

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 20:14:31
  Author: arojas
Revision: 131358

KDE4 doc move

Modified:
  skrooge/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 18:08:22 UTC (rev 131357)
+++ PKGBUILD2015-04-14 18:14:31 UTC (rev 131358)
@@ -6,7 +6,7 @@
 
 pkgname=skrooge
 pkgver=1.10.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A personal finances manager for KDE"
 arch=('i686' 'x86_64')
 url="http://skrooge.org/";


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

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 20:08:22
  Author: arojas
Revision: 131357

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

Added:
  tellico/repos/community-staging-i686/
  tellico/repos/community-staging-i686/PKGBUILD
(from rev 131356, tellico/trunk/PKGBUILD)
  tellico/repos/community-staging-i686/tellico.changelog
(from rev 131356, tellico/trunk/tellico.changelog)
  tellico/repos/community-staging-i686/tellico.install
(from rev 131356, tellico/trunk/tellico.install)
  tellico/repos/community-staging-x86_64/
  tellico/repos/community-staging-x86_64/PKGBUILD
(from rev 131356, tellico/trunk/PKGBUILD)
  tellico/repos/community-staging-x86_64/tellico.changelog
(from rev 131356, tellico/trunk/tellico.changelog)
  tellico/repos/community-staging-x86_64/tellico.install
(from rev 131356, tellico/trunk/tellico.install)

+
 community-staging-i686/PKGBUILD|   38 +++
 community-staging-i686/tellico.changelog   |   17 
 community-staging-i686/tellico.install |   13 +
 community-staging-x86_64/PKGBUILD  |   38 +++
 community-staging-x86_64/tellico.changelog |   17 
 community-staging-x86_64/tellico.install   |   13 +
 6 files changed, 136 insertions(+)

Copied: tellico/repos/community-staging-i686/PKGBUILD (from rev 131356, 
tellico/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-14 18:08:22 UTC (rev 131357)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Ray Rashif 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=tellico
+pkgver=2.3.10
+pkgrel=2
+pkgdesc="A collection manager for KDE"
+arch=('i686' 'x86_64')
+url="http://tellico-project.org/";
+license=('GPL')
+depends=('kdebase-runtime' 'qimageblitz' 'kdepimlibs' 'yaz' 'exempi' 
'libksane' 'taglib' 'libkcddb' 'poppler-qt4' 'kdemultimedia-audiocd-kio')
+makedepends=('automoc4' 'cmake')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(http://tellico-project.org/files/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('e916101f86b6f843b85be42e8545aa7441cd496cbb9b81590e2e0bd03a58faaa')
+
+build() {
+  cd "${srcdir}"
+
+  mkdir build
+  cd build
+
+  cmake ../${pkgname}-${pkgver} -DCMAKE_BUILD_TYPE=Release 
-DCMAKE_INSTALL_PREFIX=/usr -DWITH_Nepomuk=OFF
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+
+  make DESTDIR="${pkgdir}" install
+
+# fix python 2.7 path
+  find "${pkgdir}" -iname "*.py" | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Copied: tellico/repos/community-staging-i686/tellico.changelog (from rev 
131356, tellico/trunk/tellico.changelog)
===
--- community-staging-i686/tellico.changelog(rev 0)
+++ community-staging-i686/tellico.changelog2015-04-14 18:08:22 UTC (rev 
131357)
@@ -0,0 +1,17 @@
+2015-02-16 Jaroslav Lichtblau 
+   * tellico 2.3.10-1
+
+2014-06-28 Jaroslav Lichtblau 
+   * tellico 2.3.9-1
+
+2014-03-09 Andrea Scarpino 
+   * tellico 2.3.8-5 be sure Nepomuk support is disabled
+
+2014-03-09 Jaroslav Lichtblau 
+   * tellico 2.3.8-4 nepomuk support dropped in KDE SC 4.13 packages
+
+2013-07-14 Jaroslav Lichtblau 
+   * tellico 2.3.8-1
+
+2013-01-30 Jaroslav Lichtblau 
+   * tellico 2.3.7-1

Copied: tellico/repos/community-staging-i686/tellico.install (from rev 131356, 
tellico/trunk/tellico.install)
===
--- community-staging-i686/tellico.install  (rev 0)
+++ community-staging-i686/tellico.install  2015-04-14 18:08:22 UTC (rev 
131357)
@@ -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: tellico/repos/community-staging-x86_64/PKGBUILD (from rev 131356, 
tellico/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-04-14 18:08:22 UTC (rev 131357)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Ray Rashif 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=tellico
+pkgver=2.3.10
+pkgrel=2
+pkgdesc="A collection manager for KDE"
+arch=('i686' 'x86_64')
+url="http://tellico-project.org/";
+license=('GPL')
+depends=('kdebase-runtime' 'qimageblitz' 'kdepimlibs' 'yaz' 'exempi' 
'libksane' 'taglib' 'libkcddb' 'poppler-qt4' 'kdemultimedia-audiocd-kio')
+makedepends=('automoc4' 'cmake')
+install=$pkgname.install
+changelog=$pkgname.c

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

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 20:07:23
  Author: arojas
Revision: 131356

KDE4 doc move

Modified:
  tellico/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 17:39:05 UTC (rev 131355)
+++ PKGBUILD2015-04-14 18:07:23 UTC (rev 131356)
@@ -6,7 +6,7 @@
 
 pkgname=tellico
 pkgver=2.3.10
-pkgrel=1
+pkgrel=2
 pkgdesc="A collection manager for KDE"
 arch=('i686' 'x86_64')
 url="http://tellico-project.org/";


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

2015-04-14 Thread Jan Steffens
Date: Tuesday, April 14, 2015 @ 19:48:59
  Author: heftig
Revision: 236552

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

Added:
  gthumb/repos/extra-i686/PKGBUILD
(from rev 236551, gthumb/trunk/PKGBUILD)
  gthumb/repos/extra-i686/gthumb.install
(from rev 236551, gthumb/trunk/gthumb.install)
  gthumb/repos/extra-i686/webkit2gtk-4.0.patch
(from rev 236551, gthumb/trunk/webkit2gtk-4.0.patch)
  gthumb/repos/extra-x86_64/PKGBUILD
(from rev 236551, gthumb/trunk/PKGBUILD)
  gthumb/repos/extra-x86_64/gthumb.install
(from rev 236551, gthumb/trunk/gthumb.install)
  gthumb/repos/extra-x86_64/webkit2gtk-4.0.patch
(from rev 236551, gthumb/trunk/webkit2gtk-4.0.patch)
Deleted:
  gthumb/repos/extra-i686/PKGBUILD
  gthumb/repos/extra-i686/gthumb.install
  gthumb/repos/extra-i686/webkit2gtk-4.0.patch
  gthumb/repos/extra-x86_64/PKGBUILD
  gthumb/repos/extra-x86_64/gthumb.install
  gthumb/repos/extra-x86_64/webkit2gtk-4.0.patch

---+
 /PKGBUILD |  104 
 /gthumb.install   |   38 +
 /webkit2gtk-4.0.patch |   62 +
 extra-i686/PKGBUILD   |   56 ---
 extra-i686/gthumb.install |   19 --
 extra-i686/webkit2gtk-4.0.patch   |   31 --
 extra-x86_64/PKGBUILD |   56 ---
 extra-x86_64/gthumb.install   |   19 --
 extra-x86_64/webkit2gtk-4.0.patch |   31 --
 9 files changed, 204 insertions(+), 212 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-04-14 17:47:15 UTC (rev 236551)
+++ extra-i686/PKGBUILD 2015-04-14 17:48:59 UTC (rev 236552)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Tobias Kieslich 
-
-pkgname=gthumb
-pkgver=3.2.8
-pkgrel=2
-pkgdesc="Image browser and viewer for the GNOME Desktop"
-arch=(i686 x86_64)
-license=(GPL)
-url="http://live.gnome.org/gthumb";
-depends=(desktop-file-utils hicolor-icon-theme dconf librsvg clutter-gtk
- gst-plugins-base-libs gsettings-desktop-schemas libwebp libsecret
- libsoup webkit2gtk json-glib)
-makedepends=(intltool libchamplain libopenraw exiv2 itstool brasero librsvg
- libopenraw liboauth docbook-xsl yelp-tools gnome-common)
-optdepends=('libopenraw: read RAW files'
-'exiv2: metadata support'
-'libchamplain: map viewer'
-'brasero: burn discs'
-'liboauth: web albums')
-options=('!emptydirs')
-install=gthumb.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
-webkit2gtk-4.0.patch)
-sha256sums=('d600aba747af551540f3bbae8e8afa1cc308c658d911318c98fd4bf52ecd61b8'
-'0174bdff5d193962d52cb018f233570b8f18a740281f51b79bc52f18c4e9a929')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 -i ../webkit2gtk-4.0.patch
-  AUTOPOINT='intltoolize --automake --copy' autoreconf -fi
-}
-
-build() {
-  cd $pkgname-$pkgver
-  
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static \
-  --enable-libchamplain --enable-libopenraw
-  
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
"$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/  
func_append compile_command " -Wl,-O1,--as-needed"\n  func_append 
finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gthumb/repos/extra-i686/PKGBUILD (from rev 236551, 
gthumb/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-04-14 17:48:59 UTC (rev 236552)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Tobias Kieslich 
+
+pkgname=gthumb
+pkgver=3.4.0
+pkgrel=1
+pkgdesc="Image browser and viewer for the GNOME Desktop"
+arch=(i686 x86_64)
+license=(GPL)
+url="http://live.gnome.org/gthumb";
+depends=(desktop-file-utils hicolor-icon-theme dconf librsvg clutter-gtk
+ gst-plugins-base-libs gsettings-desktop-schemas libwebp libsecret
+ libsoup webkit2gtk json-glib)
+makedepends=(intltool libchamplain exiv2 itstool brasero libraw liboauth
+ docbook-xsl yelp-tools gnome-common flex)
+optdepends=('libraw: read RAW files'
+'exiv2: metadata support'
+'libchamplain: map viewer'
+'brasero: burn discs'
+'liboauth: web albums')
+options=('!emptydirs')
+install=gthumb.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('abd1afe457c65289af31c6db7037452faa383835

[arch-commits] Commit in gnome-online-miners/repos (4 files)

2015-04-14 Thread Jan Steffens
Date: Tuesday, April 14, 2015 @ 19:47:15
  Author: heftig
Revision: 236551

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

Added:
  gnome-online-miners/repos/extra-i686/PKGBUILD
(from rev 236550, gnome-online-miners/trunk/PKGBUILD)
  gnome-online-miners/repos/extra-x86_64/PKGBUILD
(from rev 236550, gnome-online-miners/trunk/PKGBUILD)
Deleted:
  gnome-online-miners/repos/extra-i686/PKGBUILD
  gnome-online-miners/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-04-14 17:46:32 UTC (rev 236550)
+++ extra-i686/PKGBUILD 2015-04-14 17:47:15 UTC (rev 236551)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=gnome-online-miners
-pkgver=3.14.1
-pkgrel=1
-pkgdesc="Tracker miners for online accounts"
-arch=(i686 x86_64)
-url="http://www.gnome.org";
-license=(GPL)
-depends=(libgdata gnome-online-accounts grilo libzapojit tracker gfbgraph 
dleyna-server)
-makedepends=('python2')
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('6c6b48be2f89400ca16560c6fff67519229034ea78be867c9fbcb86c1d7cf784')
- 
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --libexecdir=/usr/lib/$pkgname --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-online-miners/repos/extra-i686/PKGBUILD (from rev 236550, 
gnome-online-miners/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-04-14 17:47:15 UTC (rev 236551)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=gnome-online-miners
+pkgver=3.14.2
+pkgrel=1
+pkgdesc="Tracker miners for online accounts"
+arch=(i686 x86_64)
+url="http://www.gnome.org";
+license=(GPL)
+depends=(libgdata gnome-online-accounts grilo libzapojit tracker gfbgraph 
dleyna-server)
+makedepends=('python2')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('b40b3181187828a0a53732d29162c336f5aa14ae4553a251e0766796359a6a2d')
+ 
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --libexecdir=/usr/lib/$pkgname --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-04-14 17:46:32 UTC (rev 236550)
+++ extra-x86_64/PKGBUILD   2015-04-14 17:47:15 UTC (rev 236551)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=gnome-online-miners
-pkgver=3.14.1
-pkgrel=1
-pkgdesc="Tracker miners for online accounts"
-arch=(i686 x86_64)
-url="http://www.gnome.org";
-license=(GPL)
-depends=(libgdata gnome-online-accounts grilo libzapojit tracker gfbgraph 
dleyna-server)
-makedepends=('python2')
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('6c6b48be2f89400ca16560c6fff67519229034ea78be867c9fbcb86c1d7cf784')
- 
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --libexecdir=/usr/lib/$pkgname --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-online-miners/repos/extra-x86_64/PKGBUILD (from rev 236550, 
gnome-online-miners/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-04-14 17:47:15 UTC (rev 236551)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=gnome-online-miners
+pkgver=3.14.2
+pkgrel=1
+pkgdesc="Tracker miners for online accounts"
+arch=(i686 x86_64)
+url="http://www.gnome.org";
+license=(GPL)
+depends=(libgdata gnome-online-accounts grilo libzapojit tracker gfbgraph 
dleyna-server)
+makedepends=('python2')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('b40b3181187828a0a53732d29162c336f5aa14ae4553a251e0766796359a6a2d')
+ 
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --libexecdir=/usr/lib/$pkgname --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in bluedevil4 (7 files)

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 19:45:49
  Author: arojas
Revision: 236548

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

Added:
  bluedevil4/repos/
  bluedevil4/repos/extra-i686/
  bluedevil4/repos/extra-i686/PKGBUILD
(from rev 236547, bluedevil4/trunk/PKGBUILD)
  bluedevil4/repos/extra-i686/bluedevil4.install
(from rev 236547, bluedevil4/trunk/bluedevil4.install)
  bluedevil4/repos/extra-x86_64/
  bluedevil4/repos/extra-x86_64/PKGBUILD
(from rev 236547, bluedevil4/trunk/PKGBUILD)
  bluedevil4/repos/extra-x86_64/bluedevil4.install
(from rev 236547, bluedevil4/trunk/bluedevil4.install)

-+
 extra-i686/PKGBUILD |   35 +++
 extra-i686/bluedevil4.install   |   12 
 extra-x86_64/PKGBUILD   |   35 +++
 extra-x86_64/bluedevil4.install |   12 
 4 files changed, 94 insertions(+)

Copied: bluedevil4/repos/extra-i686/PKGBUILD (from rev 236547, 
bluedevil4/trunk/PKGBUILD)
===
--- repos/extra-i686/PKGBUILD   (rev 0)
+++ repos/extra-i686/PKGBUILD   2015-04-14 17:45:49 UTC (rev 236548)
@@ -0,0 +1,35 @@
+# $Id$
+# Contributor: Andrea Scarpino 
+
+pkgname=bluedevil4
+_pkgname=bluedevil
+pkgver=2.1.1
+pkgrel=1
+pkgdesc='KDE bluetooth framework'
+arch=('i686' 'x86_64')
+url="https://projects.kde.org/projects/extragear/base/bluedevil";
+license=('GPL')
+depends=('kdebase-runtime' 'libbluedevil')
+makedepends=('cmake' 'automoc4')
+conflicts=('bluedevil')
+replaces=('bluedevil<1:5')
+install="${pkgname}.install"
+source=("http://download.kde.org/stable/${_pkgname}/${pkgver}/src/${_pkgname}-${pkgver}.tar.xz";)
+md5sums=('9a6b011331678ea08f303049bcdbb69f')
+
+prepare() {
+  mkdir build
+}
+
+build(){
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: bluedevil4/repos/extra-i686/bluedevil4.install (from rev 236547, 
bluedevil4/trunk/bluedevil4.install)
===
--- repos/extra-i686/bluedevil4.install (rev 0)
+++ repos/extra-i686/bluedevil4.install 2015-04-14 17:45:49 UTC (rev 236548)
@@ -0,0 +1,12 @@
+post_install() {
+  update-mime-database usr/share/mime &> /dev/null
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: bluedevil4/repos/extra-x86_64/PKGBUILD (from rev 236547, 
bluedevil4/trunk/PKGBUILD)
===
--- repos/extra-x86_64/PKGBUILD (rev 0)
+++ repos/extra-x86_64/PKGBUILD 2015-04-14 17:45:49 UTC (rev 236548)
@@ -0,0 +1,35 @@
+# $Id$
+# Contributor: Andrea Scarpino 
+
+pkgname=bluedevil4
+_pkgname=bluedevil
+pkgver=2.1.1
+pkgrel=1
+pkgdesc='KDE bluetooth framework'
+arch=('i686' 'x86_64')
+url="https://projects.kde.org/projects/extragear/base/bluedevil";
+license=('GPL')
+depends=('kdebase-runtime' 'libbluedevil')
+makedepends=('cmake' 'automoc4')
+conflicts=('bluedevil')
+replaces=('bluedevil<1:5')
+install="${pkgname}.install"
+source=("http://download.kde.org/stable/${_pkgname}/${pkgver}/src/${_pkgname}-${pkgver}.tar.xz";)
+md5sums=('9a6b011331678ea08f303049bcdbb69f')
+
+prepare() {
+  mkdir build
+}
+
+build(){
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: bluedevil4/repos/extra-x86_64/bluedevil4.install (from rev 236547, 
bluedevil4/trunk/bluedevil4.install)
===
--- repos/extra-x86_64/bluedevil4.install   (rev 0)
+++ repos/extra-x86_64/bluedevil4.install   2015-04-14 17:45:49 UTC (rev 
236548)
@@ -0,0 +1,12 @@
+post_install() {
+  update-mime-database usr/share/mime &> /dev/null
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


[arch-commits] Commit in (4 files)

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 19:45:10
  Author: arojas
Revision: 236547

Let's keep this for now, 5.3 won't work in KDE4

Added:
  bluedevil4/
  bluedevil4/trunk/
  bluedevil4/trunk/PKGBUILD
  bluedevil4/trunk/bluedevil4.install

+
 PKGBUILD   |   35 +++
 bluedevil4.install |   12 
 2 files changed, 47 insertions(+)

Added: bluedevil4/trunk/PKGBUILD
===
--- bluedevil4/trunk/PKGBUILD   (rev 0)
+++ bluedevil4/trunk/PKGBUILD   2015-04-14 17:45:10 UTC (rev 236547)
@@ -0,0 +1,35 @@
+# $Id$
+# Contributor: Andrea Scarpino 
+
+pkgname=bluedevil4
+_pkgname=bluedevil
+pkgver=2.1.1
+pkgrel=1
+pkgdesc='KDE bluetooth framework'
+arch=('i686' 'x86_64')
+url="https://projects.kde.org/projects/extragear/base/bluedevil";
+license=('GPL')
+depends=('kdebase-runtime' 'libbluedevil')
+makedepends=('cmake' 'automoc4')
+conflicts=('bluedevil')
+replaces=('bluedevil<1:5')
+install="${pkgname}.install"
+source=("http://download.kde.org/stable/${_pkgname}/${pkgver}/src/${_pkgname}-${pkgver}.tar.xz";)
+md5sums=('9a6b011331678ea08f303049bcdbb69f')
+
+prepare() {
+  mkdir build
+}
+
+build(){
+  cd build
+  cmake ../${_pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


Property changes on: bluedevil4/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: bluedevil4/trunk/bluedevil4.install
===
--- bluedevil4/trunk/bluedevil4.install (rev 0)
+++ bluedevil4/trunk/bluedevil4.install 2015-04-14 17:45:10 UTC (rev 236547)
@@ -0,0 +1,12 @@
+post_install() {
+  update-mime-database usr/share/mime &> /dev/null
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


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

2015-04-14 Thread Jan Steffens
Date: Tuesday, April 14, 2015 @ 19:41:47
  Author: heftig
Revision: 236546

remove unneeded

Modified:
  gthumb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 17:39:44 UTC (rev 236545)
+++ PKGBUILD2015-04-14 17:41:47 UTC (rev 236546)
@@ -13,8 +13,8 @@
 depends=(desktop-file-utils hicolor-icon-theme dconf librsvg clutter-gtk
  gst-plugins-base-libs gsettings-desktop-schemas libwebp libsecret
  libsoup webkit2gtk json-glib)
-makedepends=(intltool libchamplain libopenraw exiv2 itstool brasero librsvg
- libraw liboauth docbook-xsl yelp-tools gnome-common flex)
+makedepends=(intltool libchamplain exiv2 itstool brasero libraw liboauth
+ docbook-xsl yelp-tools gnome-common flex)
 optdepends=('libraw: read RAW files'
 'exiv2: metadata support'
 'libchamplain: map viewer'
@@ -34,7 +34,7 @@
   
   ./configure --prefix=/usr --sysconfdir=/etc \
   --localstatedir=/var --disable-static \
-  --enable-libchamplain --enable-libopenraw
+  --enable-libchamplain
   
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
"$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/  
func_append compile_command " -Wl,-O1,--as-needed"\n  func_append 
finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
 


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

2015-04-14 Thread Jan Steffens
Date: Tuesday, April 14, 2015 @ 19:39:44
  Author: heftig
Revision: 236545

3.4.0

Modified:
  gthumb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 17:29:33 UTC (rev 236544)
+++ PKGBUILD2015-04-14 17:39:44 UTC (rev 236545)
@@ -4,8 +4,8 @@
 # Contributor: Tobias Kieslich 
 
 pkgname=gthumb
-pkgver=3.2.8
-pkgrel=2
+pkgver=3.4.0
+pkgrel=1
 pkgdesc="Image browser and viewer for the GNOME Desktop"
 arch=(i686 x86_64)
 license=(GPL)
@@ -14,8 +14,8 @@
  gst-plugins-base-libs gsettings-desktop-schemas libwebp libsecret
  libsoup webkit2gtk json-glib)
 makedepends=(intltool libchamplain libopenraw exiv2 itstool brasero librsvg
- libopenraw liboauth docbook-xsl yelp-tools gnome-common)
-optdepends=('libopenraw: read RAW files'
+ libraw liboauth docbook-xsl yelp-tools gnome-common flex)
+optdepends=('libraw: read RAW files'
 'exiv2: metadata support'
 'libchamplain: map viewer'
 'brasero: burn discs'
@@ -22,15 +22,11 @@
 'liboauth: web albums')
 options=('!emptydirs')
 install=gthumb.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
-webkit2gtk-4.0.patch)
-sha256sums=('d600aba747af551540f3bbae8e8afa1cc308c658d911318c98fd4bf52ecd61b8'
-'0174bdff5d193962d52cb018f233570b8f18a740281f51b79bc52f18c4e9a929')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('abd1afe457c65289af31c6db7037452faa3838356480857d8cdc19f0ecde4933')
 
 prepare() {
   cd $pkgname-$pkgver
-  patch -Np1 -i ../webkit2gtk-4.0.patch
-  AUTOPOINT='intltoolize --automake --copy' autoreconf -fi
 }
 
 build() {


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

2015-04-14 Thread Jan Steffens
Date: Tuesday, April 14, 2015 @ 19:39:05
  Author: heftig
Revision: 131355

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

Added:
  goobox/repos/community-i686/PKGBUILD
(from rev 131354, goobox/trunk/PKGBUILD)
  goobox/repos/community-i686/goobox.install
(from rev 131354, goobox/trunk/goobox.install)
  goobox/repos/community-x86_64/PKGBUILD
(from rev 131354, goobox/trunk/PKGBUILD)
  goobox/repos/community-x86_64/goobox.install
(from rev 131354, goobox/trunk/goobox.install)
Deleted:
  goobox/repos/community-i686/PKGBUILD
  goobox/repos/community-i686/goobox.install
  goobox/repos/community-x86_64/PKGBUILD
  goobox/repos/community-x86_64/goobox.install

-+
 /PKGBUILD   |   70 ++
 /goobox.install |   26 ++
 community-i686/PKGBUILD |   35 ---
 community-i686/goobox.install   |   13 ---
 community-x86_64/PKGBUILD   |   35 ---
 community-x86_64/goobox.install |   13 ---
 6 files changed, 96 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-04-14 17:38:22 UTC (rev 131354)
+++ community-i686/PKGBUILD 2015-04-14 17:39:05 UTC (rev 131355)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=goobox
-pkgver=3.2.1
-pkgrel=2
-pkgdesc="CD player and ripper for GNOME"
-arch=('i686' 'x86_64')
-url="http://people.gnome.org/~paobac/goobox/";
-license=('GPL')
-depends=('gst-plugins-base' 'brasero' 'libmusicbrainz5' 'libdiscid' 
'libcoverart' 'libnotify')
-makedepends=('intltool' 'itstool')
-optdepends=('gst-plugins-good: rip CDs into flac and wav formats')
-install=$pkgname.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('c2dba51881902cad3593fc3b3dafd3c12038173a27c623350f1771a1bfbf09a7')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  # Update libcoverart version number
-  sed -i 's/LIBCOVERART_REQUIRED=1.0.0beta1/LIBCOVERART_REQUIRED=1.0.0/' 
configure{,.ac}
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --disable-static --disable-schemas-compile
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: goobox/repos/community-i686/PKGBUILD (from rev 131354, 
goobox/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-04-14 17:39:05 UTC (rev 131355)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=goobox
+pkgver=3.4.0
+pkgrel=1
+pkgdesc="CD player and ripper for GNOME"
+arch=('i686' 'x86_64')
+url="http://people.gnome.org/~paobac/goobox/";
+license=('GPL')
+depends=('gst-plugins-base' 'brasero' 'libmusicbrainz5' 'libdiscid' 
'libcoverart' 'libnotify')
+makedepends=('intltool' 'itstool')
+optdepends=('gst-plugins-good: rip CDs into flac and wav formats')
+install=$pkgname.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('b41f414601e44af5dbe931f3bc81d2acf984ecd357a8f92861437629e9790552')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # Update libcoverart version number
+  sed -i 's/LIBCOVERART_REQUIRED=1.0.0beta1/LIBCOVERART_REQUIRED=1.0.0/' 
configure{,.ac}
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --disable-static --disable-schemas-compile
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-i686/goobox.install
===
--- community-i686/goobox.install   2015-04-14 17:38:22 UTC (rev 131354)
+++ community-i686/goobox.install   2015-04-14 17:39:05 UTC (rev 131355)
@@ -1,13 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  update-desktop-database -q
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: goobox/repos/community-i686/goobox.install (from rev 131354, 
goobox/trunk/goobox.install)
===
--- community-i686/goobox.install   (rev 0)
+++ community-i686/goobox.install   2015-04-14 17:39:05 UTC (rev 131355)
@@ -0,0 +1,13 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Deleted: community-x86_64/PKGBUILD
==

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

2015-04-14 Thread Jan Steffens
Date: Tuesday, April 14, 2015 @ 19:38:22
  Author: heftig
Revision: 131354

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

Added:
  gnome-software/repos/community-i686/PKGBUILD
(from rev 131353, gnome-software/trunk/PKGBUILD)
  gnome-software/repos/community-i686/gnome-software.install
(from rev 131353, gnome-software/trunk/gnome-software.install)
  gnome-software/repos/community-x86_64/PKGBUILD
(from rev 131353, gnome-software/trunk/PKGBUILD)
  gnome-software/repos/community-x86_64/gnome-software.install
(from rev 131353, gnome-software/trunk/gnome-software.install)
Deleted:
  gnome-software/repos/community-i686/PKGBUILD
  gnome-software/repos/community-i686/gnome-software.install
  gnome-software/repos/community-x86_64/PKGBUILD
  gnome-software/repos/community-x86_64/gnome-software.install

-+
 /PKGBUILD   |   66 ++
 /gnome-software.install |   26 +++
 community-i686/PKGBUILD |   33 ---
 community-i686/gnome-software.install   |   13 -
 community-x86_64/PKGBUILD   |   33 ---
 community-x86_64/gnome-software.install |   13 -
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-04-14 17:36:46 UTC (rev 131353)
+++ community-i686/PKGBUILD 2015-04-14 17:38:22 UTC (rev 131354)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Yosef Or Boczko 
-
-pkgname=gnome-software
-pkgver=3.16.0
-pkgrel=1
-pkgdesc="GNOME Software Tools"
-arch=(i686 x86_64)
-license=('GPL2')
-url="https://wiki.gnome.org/Apps/Software/";
-depends=(gtk3 appstream-glib libsoup gsettings-desktop-schemas gnome-desktop 
packagekit
- desktop-file-utils archlinux-appstream-data)
-makedepends=(intltool)
-install=gnome-software.install
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('6c0ee75ed151f1fd96effb0b10eaf836facd90a50670f080ad633098132d7120')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-
-  # Remove fedora-only plugins
-  rm "${pkgdir}"/usr/lib/gs-plugins-*/libgs_plugin_fedora_tagger*
-}

Copied: gnome-software/repos/community-i686/PKGBUILD (from rev 131353, 
gnome-software/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-04-14 17:38:22 UTC (rev 131354)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Yosef Or Boczko 
+
+pkgname=gnome-software
+pkgver=3.16.1
+pkgrel=1
+pkgdesc="GNOME Software Tools"
+arch=(i686 x86_64)
+license=('GPL2')
+url="https://wiki.gnome.org/Apps/Software/";
+depends=(gtk3 appstream-glib libsoup gsettings-desktop-schemas gnome-desktop 
packagekit
+ desktop-file-utils archlinux-appstream-data)
+makedepends=(intltool)
+install=gnome-software.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('fb53fb3f38d0588cae3402bede0a006855dcde4776c64686195add4c1a55b94f')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+
+  # Remove fedora-only plugins
+  rm "${pkgdir}"/usr/lib/gs-plugins-*/libgs_plugin_fedora_tagger*
+}

Deleted: community-i686/gnome-software.install
===
--- community-i686/gnome-software.install   2015-04-14 17:36:46 UTC (rev 
131353)
+++ community-i686/gnome-software.install   2015-04-14 17:38:22 UTC (rev 
131354)
@@ -1,13 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-update-desktop-database -q
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: gnome-software/repos/community-i686/gnome-software.install (from rev 
131353, gnome-software/trunk/gnome-software.install)
===
--- community-i686/gnome-software.install   (rev 0)
+++ community-i686/gnome-software.install   2015-04-14 17:38:22 UTC (rev 
131354)
@@ -0,0 +1,13 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+update-desktop-database -q
+}
+
+

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

2015-04-14 Thread Jan Steffens
Date: Tuesday, April 14, 2015 @ 19:36:46
  Author: heftig
Revision: 131353

3.4.0

Modified:
  goobox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 17:36:30 UTC (rev 131352)
+++ PKGBUILD2015-04-14 17:36:46 UTC (rev 131353)
@@ -2,8 +2,8 @@
 # Maintainer: Balló György 
 
 pkgname=goobox
-pkgver=3.2.1
-pkgrel=2
+pkgver=3.4.0
+pkgrel=1
 pkgdesc="CD player and ripper for GNOME"
 arch=('i686' 'x86_64')
 url="http://people.gnome.org/~paobac/goobox/";
@@ -13,7 +13,7 @@
 optdepends=('gst-plugins-good: rip CDs into flac and wav formats')
 install=$pkgname.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('c2dba51881902cad3593fc3b3dafd3c12038173a27c623350f1771a1bfbf09a7')
+sha256sums=('b41f414601e44af5dbe931f3bc81d2acf984ecd357a8f92861437629e9790552')
 
 prepare() {
   cd "$srcdir/$pkgname-$pkgver"


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

2015-04-14 Thread Jan Steffens
Date: Tuesday, April 14, 2015 @ 19:36:30
  Author: heftig
Revision: 131352

3.16.1

Modified:
  gnome-software/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 17:14:22 UTC (rev 131351)
+++ PKGBUILD2015-04-14 17:36:30 UTC (rev 131352)
@@ -4,7 +4,7 @@
 # Contributor: Yosef Or Boczko 
 
 pkgname=gnome-software
-pkgver=3.16.0
+pkgver=3.16.1
 pkgrel=1
 pkgdesc="GNOME Software Tools"
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 makedepends=(intltool)
 install=gnome-software.install
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('6c0ee75ed151f1fd96effb0b10eaf836facd90a50670f080ad633098132d7120')
+sha256sums=('fb53fb3f38d0588cae3402bede0a006855dcde4776c64686195add4c1a55b94f')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in gnome-online-miners/trunk (PKGBUILD)

2015-04-14 Thread Jan Steffens
Date: Tuesday, April 14, 2015 @ 19:29:33
  Author: heftig
Revision: 236544

3.14.2

Modified:
  gnome-online-miners/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 17:17:01 UTC (rev 236543)
+++ PKGBUILD2015-04-14 17:29:33 UTC (rev 236544)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru 
 
 pkgname=gnome-online-miners
-pkgver=3.14.1
+pkgver=3.14.2
 pkgrel=1
 pkgdesc="Tracker miners for online accounts"
 arch=(i686 x86_64)
@@ -11,7 +11,7 @@
 depends=(libgdata gnome-online-accounts grilo libzapojit tracker gfbgraph 
dleyna-server)
 makedepends=('python2')
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('6c6b48be2f89400ca16560c6fff67519229034ea78be867c9fbcb86c1d7cf784')
+sha256sums=('b40b3181187828a0a53732d29162c336f5aa14ae4553a251e0766796359a6a2d')
  
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in plasma-meta/repos (2 files)

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 19:17:01
  Author: arojas
Revision: 236543

archrelease: copy kde-unstable to kde-unstable-any

Added:
  plasma-meta/repos/kde-unstable-any/
  plasma-meta/repos/kde-unstable-any/PKGBUILD
(from rev 236542, plasma-meta/kde-unstable/PKGBUILD)

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

Copied: plasma-meta/repos/kde-unstable-any/PKGBUILD (from rev 236542, 
plasma-meta/kde-unstable/PKGBUILD)
===
--- kde-unstable-any/PKGBUILD   (rev 0)
+++ kde-unstable-any/PKGBUILD   2015-04-14 17:17:01 UTC (rev 236543)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=plasma-meta
+pkgver=5.3
+pkgrel=0.1
+pkgdesc='Meta package to install KDE Plasma'
+arch=('any')
+url='https://www.archlinux.org/'
+license=('GPL')
+depends=('bluedevil'
+'drkonqi'
+'kde-gtk-config'
+'kdeplasma-addons'
+'khelpcenter'
+'kinfocenter'
+'kio-extras'
+'ksysguard'
+'kscreen'
+'ksshaskpass'
+'kwrited'
+'milou'
+'oxygen'
+'oxygen-cursors'
+'plasma-desktop'
+'plasma-nm'
+'plasma-workspace-wallpapers'
+   'plasma-mediacenter'
+)


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

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 19:16:02
  Author: arojas
Revision: 236542

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

Added:
  plasma-mediacenter/repos/kde-unstable-i686/PKGBUILD
(from rev 236541, plasma-mediacenter/kde-unstable/PKGBUILD)
  plasma-mediacenter/repos/kde-unstable-x86_64/PKGBUILD
(from rev 236541, plasma-mediacenter/kde-unstable/PKGBUILD)
Deleted:
  plasma-mediacenter/repos/kde-unstable-i686/PKGBUILD
  plasma-mediacenter/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2015-04-14 16:43:31 UTC (rev 236541)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 17:16:02 UTC (rev 236542)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Bhushan Shah 
-
-pkgname=plasma-mediacenter
-pkgver=5.2.95
-pkgrel=1
-pkgdesc="A mediacenter user interface based on KDE Plasma components"
-arch=(i686 x86_64)
-url="http://community.kde.org/Plasma/Plasma_Media_Center/";
-license=(GPL3)
-depends=(plasma-workspace baloo)
-makedepends=(extra-cmake-modules)
-groups=(plasma)
-source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";)
-md5sums=('aae7624fb04a608653e37cd1eae4e9f0')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: plasma-mediacenter/repos/kde-unstable-i686/PKGBUILD (from rev 236541, 
plasma-mediacenter/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 17:16:02 UTC (rev 236542)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Bhushan Shah 
+
+pkgname=plasma-mediacenter
+pkgver=5.2.95
+pkgrel=1
+pkgdesc="A mediacenter user interface based on KDE Plasma components"
+arch=(i686 x86_64)
+url="http://community.kde.org/Plasma/Plasma_Media_Center/";
+license=(GPL3)
+depends=(plasma-workspace baloo)
+makedepends=(extra-cmake-modules)
+groups=(plasma)
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";)
+md5sums=('aae7624fb04a608653e37cd1eae4e9f0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2015-04-14 16:43:31 UTC (rev 236541)
+++ kde-unstable-x86_64/PKGBUILD2015-04-14 17:16:02 UTC (rev 236542)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Bhushan Shah 
-
-pkgname=plasma-mediacenter
-pkgver=5.2.95
-pkgrel=1
-pkgdesc="A mediacenter user interface based on KDE Plasma components"
-arch=(i686 x86_64)
-url="http://community.kde.org/Plasma/Plasma_Media_Center/";
-license=(GPL3)
-depends=(plasma-workspace baloo)
-makedepends=(extra-cmake-modules)
-groups=(plasma)
-source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";)
-md5sums=('aae7624fb04a608653e37cd1eae4e9f0')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: plasma-mediacenter/repos/kde-unstable-x86_64/PKGBUILD (from rev 236541, 
plasma-mediacenter/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2015-04-14 17:16:02 UTC (rev 236542)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Bhushan Shah 
+
+pkgname=plasma-mediacenter
+pkgver=5.2.95
+pkgrel=1
+pkgdesc="A mediacenter user interface based on KDE Plasma components"
+arch=(i686 x86_64)
+url="http://community.kde.org/Plasma/Plasma_Media_Center/";
+license=(GPL3)
+depends=(plasma-workspace baloo)
+makedepends=(extra-cmake-modules)
+groups=(plasma)
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";

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

2015-04-14 Thread Sergej Pupykin
Date: Tuesday, April 14, 2015 @ 19:14:22
  Author: spupykin
Revision: 131351

archrelease: copy trunk to community-any

Added:
  phpmyadmin/repos/community-any/PKGBUILD
(from rev 131350, phpmyadmin/trunk/PKGBUILD)
Deleted:
  phpmyadmin/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-14 17:14:02 UTC (rev 131350)
+++ PKGBUILD2015-04-14 17:14:22 UTC (rev 131351)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Sergej Pupykin 
-# Contributor: tobias 
-# Contributor: Manolis Tzanidakis 
-# Contributor: Simon Lackerbauer 
-
-pkgname=phpmyadmin
-pkgver=4.4.1.1
-pkgrel=1
-pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
-arch=('any')
-url='http://www.phpmyadmin.net'
-license=('GPL')
-depends=('mariadb-clients' 'php')
-optdepends=('php-mcrypt: to use phpMyAdmin internal authentication')
-backup=(etc/webapps/phpmyadmin/config.inc.php)
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpMyAdmin-$pkgver-all-languages.tar.bz2)
-md5sums=('ae2a214594e813548e58a0e2f4a4bd1d')
-
-package() {
-  _instdir="$pkgdir"/usr/share/webapps/phpMyAdmin
-  mkdir -p "$_instdir" "$pkgdir"/etc/webapps/phpmyadmin
-  cd "$_instdir"
-
-  cp -ra "$srcdir"/phpMyAdmin-$pkgver-all-languages/* .
-
-  ln -s /etc/webapps/phpmyadmin/config.inc.php "$_instdir"/config.inc.php
-  cp "$_instdir"/config.sample.inc.php 
"$pkgdir"/etc/webapps/phpmyadmin/config.inc.php
-}

Copied: phpmyadmin/repos/community-any/PKGBUILD (from rev 131350, 
phpmyadmin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-14 17:14:22 UTC (rev 131351)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer:
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Sergej Pupykin 
+# Contributor: tobias 
+# Contributor: Manolis Tzanidakis 
+# Contributor: Simon Lackerbauer 
+
+pkgname=phpmyadmin
+pkgver=4.4.2
+pkgrel=1
+pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
+arch=('any')
+url='http://www.phpmyadmin.net'
+license=('GPL')
+depends=('mariadb-clients' 'php')
+optdepends=('php-mcrypt: to use phpMyAdmin internal authentication')
+backup=(etc/webapps/phpmyadmin/config.inc.php)
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpMyAdmin-$pkgver-all-languages.tar.bz2)
+md5sums=('6406ea6caccf01e61d98f4ff959e7974')
+
+package() {
+  _instdir="$pkgdir"/usr/share/webapps/phpMyAdmin
+  mkdir -p "$_instdir" "$pkgdir"/etc/webapps/phpmyadmin
+  cd "$_instdir"
+
+  cp -ra "$srcdir"/phpMyAdmin-$pkgver-all-languages/* .
+
+  ln -s /etc/webapps/phpmyadmin/config.inc.php "$_instdir"/config.inc.php
+  cp "$_instdir"/config.sample.inc.php 
"$pkgdir"/etc/webapps/phpmyadmin/config.inc.php
+}


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

2015-04-14 Thread Sergej Pupykin
Date: Tuesday, April 14, 2015 @ 19:13:50
  Author: spupykin
Revision: 131349

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

Added:
  pgadmin3/repos/community-i686/PKGBUILD
(from rev 131348, pgadmin3/trunk/PKGBUILD)
  pgadmin3/repos/community-i686/pgadmin3.install
(from rev 131348, pgadmin3/trunk/pgadmin3.install)
  pgadmin3/repos/community-x86_64/PKGBUILD
(from rev 131348, pgadmin3/trunk/PKGBUILD)
  pgadmin3/repos/community-x86_64/pgadmin3.install
(from rev 131348, pgadmin3/trunk/pgadmin3.install)
Deleted:
  pgadmin3/repos/community-i686/PKGBUILD
  pgadmin3/repos/community-i686/pgadmin3.install
  pgadmin3/repos/community-x86_64/PKGBUILD
  pgadmin3/repos/community-x86_64/pgadmin3.install

---+
 /PKGBUILD |   84 
 /pgadmin3.install |   24 ++
 community-i686/PKGBUILD   |   41 -
 community-i686/pgadmin3.install   |   11 
 community-x86_64/PKGBUILD |   41 -
 community-x86_64/pgadmin3.install |   11 
 6 files changed, 108 insertions(+), 104 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-04-14 17:13:17 UTC (rev 131348)
+++ community-i686/PKGBUILD 2015-04-14 17:13:50 UTC (rev 131349)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Douglas Soares de Andrade 
-# Contributor: Benjamin Andresen 
-# Contributor: bekks 
-
-pkgname=pgadmin3
-pkgver=1.20.0
-pkgrel=2
-pkgdesc="Comprehensive design and management interface for PostgreSQL"
-arch=('i686' 'x86_64')
-url="http://www.pgadmin.org";
-license=('custom')
-depends=('wxgtk2.8' 'postgresql-libs' 'libxslt')
-makedepends=('libpqxx' 'krb5' 'postgresql' 'imagemagick')
-install=pgadmin3.install
-source=(http://ftp.postgresql.org/pub/pgadmin3/release/v${pkgver}/src/pgadmin3-${pkgver}.tar.gz)
-md5sums=('3ca39fb598d0866eca90d30b85d5d5c4')
-
-build() {
-  cd "$srcdir"
-  convert pgadmin3-${pkgver}/pgadmin/include/images/pgAdmin3.ico pgadmin3.png
-
-  cd "pgadmin3-${pkgver}"
-  sed -i 's/wx-config/wx-config-2.8/' configure
-  sed -i 's/wxrc/wxrc-2.8/g' stringextract pgadmin/ui/embed-xrc
-  [ -f Makefile ] ||  ./configure --prefix=/usr --with-wx-version=2.8
-  make
-}
-
-package() {
-  cd "$srcdir"/pgadmin3-${pkgver}
-
-  make DESTDIR="$pkgdir/" install
-  install -Dm644 i18n/$pkgname.lng "$pkgdir/usr/share/pgadmin3/i18n"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm644 pgadmin/include/images/pgAdmin3.ico 
"$pkgdir/usr/share/pgadmin3/pgAdmin3.ico"
-  install -Dm644 "$srcdir/pgadmin3-3.png" 
"$pkgdir/usr/share/pgadmin3/pgAdmin3.png"
-  install -Dm644 "pkg/pgadmin3.desktop" 
"$pkgdir/usr/share/applications/pgadmin3.desktop"
-  sed -i 's|Icon=.*|Icon=pgAdmin3|' 
"$pkgdir/usr/share/applications/pgadmin3.desktop"
-}

Copied: pgadmin3/repos/community-i686/PKGBUILD (from rev 131348, 
pgadmin3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-04-14 17:13:50 UTC (rev 131349)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Douglas Soares de Andrade 
+# Contributor: Benjamin Andresen 
+# Contributor: bekks 
+
+pkgname=pgadmin3
+pkgver=1.20.0
+pkgrel=3
+pkgdesc="Comprehensive design and management interface for PostgreSQL"
+arch=('i686' 'x86_64')
+url="http://www.pgadmin.org";
+license=('custom')
+depends=('wxgtk2.8' 'postgresql-libs' 'libxslt')
+makedepends=('libpqxx' 'krb5' 'postgresql' 'imagemagick')
+install=pgadmin3.install
+source=(http://ftp.postgresql.org/pub/pgadmin3/release/v${pkgver}/src/pgadmin3-${pkgver}.tar.gz)
+md5sums=('3ca39fb598d0866eca90d30b85d5d5c4')
+
+build() {
+  cd "$srcdir"
+  convert pgadmin3-${pkgver}/pgadmin/include/images/pgAdmin3.ico pgAdmin3.png
+
+  cd "pgadmin3-${pkgver}"
+  sed -i 's/wx-config/wx-config-2.8/' configure
+  sed -i 's/wxrc/wxrc-2.8/g' stringextract pgadmin/ui/embed-xrc
+  [ -f Makefile ] ||  ./configure --prefix=/usr --with-wx-version=2.8
+  make
+}
+
+package() {
+  cd "$srcdir"/pgadmin3-${pkgver}
+
+  make DESTDIR="$pkgdir/" install
+  install -Dm644 i18n/$pkgname.lng "$pkgdir/usr/share/pgadmin3/i18n"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 pgadmin/include/images/pgAdmin3.ico 
"$pkgdir/usr/share/pgadmin3/pgAdmin3.ico"
+  install -Dm644 "$srcdir/pgAdmin3-5.png" 
"$pkgdir/usr/share/icons/hicolor/16x16/apps/pgAdmin3.png"
+  install -Dm644 "$srcdir/pgAdmin3-4.png" 
"$pkgdir/usr/share/icons/hicolor/32x32/apps/pgAdmin3.png"
+  install -Dm644 "$srcdir/pgAdmin3-3.png" 
"$pkgdir/usr/share/icons/hicolor/48x48/apps/pgAdmin3.png"
+  install -Dm644 "pkg/pgadmin3.desktop" 
"$pkgdir/usr/share/applications/pgadmin3.desktop"
+}

Deleted: community-i686/pgadmin3.install
=

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

2015-04-14 Thread Sergej Pupykin
Date: Tuesday, April 14, 2015 @ 19:14:02
  Author: spupykin
Revision: 131350

upgpkg: phpmyadmin 4.4.2-1

upd

Modified:
  phpmyadmin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 17:13:50 UTC (rev 131349)
+++ PKGBUILD2015-04-14 17:14:02 UTC (rev 131350)
@@ -7,7 +7,7 @@
 # Contributor: Simon Lackerbauer 
 
 pkgname=phpmyadmin
-pkgver=4.4.1.1
+pkgver=4.4.2
 pkgrel=1
 pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
 arch=('any')
@@ -17,7 +17,7 @@
 optdepends=('php-mcrypt: to use phpMyAdmin internal authentication')
 backup=(etc/webapps/phpmyadmin/config.inc.php)
 
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpMyAdmin-$pkgver-all-languages.tar.bz2)
-md5sums=('ae2a214594e813548e58a0e2f4a4bd1d')
+md5sums=('6406ea6caccf01e61d98f4ff959e7974')
 
 package() {
   _instdir="$pkgdir"/usr/share/webapps/phpMyAdmin


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

2015-04-14 Thread Sergej Pupykin
Date: Tuesday, April 14, 2015 @ 19:13:17
  Author: spupykin
Revision: 131348

upgpkg: pgadmin3 1.20.0-3

upd

Modified:
  pgadmin3/trunk/PKGBUILD
  pgadmin3/trunk/pgadmin3.install

--+
 PKGBUILD |9 +
 pgadmin3.install |1 +
 2 files changed, 6 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 15:44:21 UTC (rev 131347)
+++ PKGBUILD2015-04-14 17:13:17 UTC (rev 131348)
@@ -6,7 +6,7 @@
 
 pkgname=pgadmin3
 pkgver=1.20.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Comprehensive design and management interface for PostgreSQL"
 arch=('i686' 'x86_64')
 url="http://www.pgadmin.org";
@@ -19,7 +19,7 @@
 
 build() {
   cd "$srcdir"
-  convert pgadmin3-${pkgver}/pgadmin/include/images/pgAdmin3.ico pgadmin3.png
+  convert pgadmin3-${pkgver}/pgadmin/include/images/pgAdmin3.ico pgAdmin3.png
 
   cd "pgadmin3-${pkgver}"
   sed -i 's/wx-config/wx-config-2.8/' configure
@@ -35,7 +35,8 @@
   install -Dm644 i18n/$pkgname.lng "$pkgdir/usr/share/pgadmin3/i18n"
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
   install -Dm644 pgadmin/include/images/pgAdmin3.ico 
"$pkgdir/usr/share/pgadmin3/pgAdmin3.ico"
-  install -Dm644 "$srcdir/pgadmin3-3.png" 
"$pkgdir/usr/share/pgadmin3/pgAdmin3.png"
+  install -Dm644 "$srcdir/pgAdmin3-5.png" 
"$pkgdir/usr/share/icons/hicolor/16x16/apps/pgAdmin3.png"
+  install -Dm644 "$srcdir/pgAdmin3-4.png" 
"$pkgdir/usr/share/icons/hicolor/32x32/apps/pgAdmin3.png"
+  install -Dm644 "$srcdir/pgAdmin3-3.png" 
"$pkgdir/usr/share/icons/hicolor/48x48/apps/pgAdmin3.png"
   install -Dm644 "pkg/pgadmin3.desktop" 
"$pkgdir/usr/share/applications/pgadmin3.desktop"
-  sed -i 's|Icon=.*|Icon=pgAdmin3|' 
"$pkgdir/usr/share/applications/pgadmin3.desktop"
 }

Modified: pgadmin3.install
===
--- pgadmin3.install2015-04-14 15:44:21 UTC (rev 131347)
+++ pgadmin3.install2015-04-14 17:13:17 UTC (rev 131348)
@@ -1,5 +1,6 @@
 post_install() {
   [ -x usr/bin/update-desktop-database ] && update-desktop-database -q || true
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
 }
 
 post_upgrade() {


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

2015-04-14 Thread Gaetan Bisson
Date: Tuesday, April 14, 2015 @ 18:43:31
  Author: bisson
Revision: 236541

fix FS#44579

Modified:
  gsfonts/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 16:30:16 UTC (rev 236540)
+++ PKGBUILD2015-04-14 16:43:31 UTC (rev 236541)
@@ -7,7 +7,7 @@
 _pkgname=urw-core35-fonts
 pkgver=20150122
 pkgrel=1
-pkgdesc='URW and Postscript core35 fonts'
+pkgdesc='URW+ Postscript core35 fonts'
 url='http://git.ghostscript.com/?p=urw-core35-fonts.git'
 arch=('any')
 license=('AGPL3')


[arch-commits] Commit in grml-zsh-config/repos/extra-any (PKGBUILD PKGBUILD)

2015-04-14 Thread Pierre Schmitz
Date: Tuesday, April 14, 2015 @ 18:30:16
  Author: pierre
Revision: 236540

archrelease: copy trunk to extra-any

Added:
  grml-zsh-config/repos/extra-any/PKGBUILD
(from rev 236539, grml-zsh-config/trunk/PKGBUILD)
Deleted:
  grml-zsh-config/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-14 16:30:06 UTC (rev 236539)
+++ PKGBUILD2015-04-14 16:30:16 UTC (rev 236540)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz 
-
-pkgname=grml-zsh-config
-pkgver=0.11.1
-pkgrel=1
-pkgdesc="grml's zsh setup"
-arch=('any')
-url='http://grml.org/zsh/'
-license=('GPL2')
-provides=('grmlzshrc')
-depends=('zsh' 'coreutils' 'inetutils' 'grep' 'sed' 'procps')
-makedepends=('txt2tags')
-source=("http://deb.grml.org/pool/main/g/grml-etc-core/grml-etc-core_${pkgver}.tar.gz";)
-sha256sums=('d3c2a19cb5b23d7e0fb3c8774ea8102faec1e4e2db91770b4c19cbd29f8e1a83')
-
-build() {
-   cd ${srcdir}/grml-etc-core-${pkgver}/doc
-   make
-}
-
-package() {
-   cd ${srcdir}/grml-etc-core-${pkgver}
-   install -D -m644 etc/skel/.zshrc ${pkgdir}/etc/skel/.zshrc
-   install -D -m644 etc/zsh/keephack ${pkgdir}/etc/zsh/keephack
-   install -D -m644 etc/zsh/zshrc ${pkgdir}/etc/zsh/zshrc
-
-   install -D -m644 doc/grmlzshrc.5 
${pkgdir}/usr/share/man/man5/grmlzshrc.5
-   ln -sf grmlzshrc.5.gz ${pkgdir}/usr/share/man/man5/grml-zsh-config.5.gz
-}

Copied: grml-zsh-config/repos/extra-any/PKGBUILD (from rev 236539, 
grml-zsh-config/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-14 16:30:16 UTC (rev 236540)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=grml-zsh-config
+pkgver=0.11.2
+pkgrel=1
+pkgdesc="grml's zsh setup"
+arch=('any')
+url='http://grml.org/zsh/'
+license=('GPL2')
+provides=('grmlzshrc')
+depends=('zsh' 'coreutils' 'inetutils' 'grep' 'sed' 'procps')
+makedepends=('txt2tags')
+source=("http://deb.grml.org/pool/main/g/grml-etc-core/grml-etc-core_${pkgver}.tar.gz";)
+sha256sums=('0034a2a9ee77068a381c77a69fc05fcaa054215fdf1b05163a7bb7397145ec40')
+
+build() {
+   cd ${srcdir}/grml-etc-core-${pkgver}/doc
+   make
+}
+
+package() {
+   cd ${srcdir}/grml-etc-core-${pkgver}
+   install -D -m644 etc/skel/.zshrc ${pkgdir}/etc/skel/.zshrc
+   install -D -m644 etc/zsh/keephack ${pkgdir}/etc/zsh/keephack
+   install -D -m644 etc/zsh/zshrc ${pkgdir}/etc/zsh/zshrc
+
+   install -D -m644 doc/grmlzshrc.5 
${pkgdir}/usr/share/man/man5/grmlzshrc.5
+   ln -sf grmlzshrc.5.gz ${pkgdir}/usr/share/man/man5/grml-zsh-config.5.gz
+}


[arch-commits] Commit in grml-zsh-config/trunk (PKGBUILD)

2015-04-14 Thread Pierre Schmitz
Date: Tuesday, April 14, 2015 @ 18:30:06
  Author: pierre
Revision: 236539

upgpkg: grml-zsh-config 0.11.2-1

Modified:
  grml-zsh-config/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 16:00:15 UTC (rev 236538)
+++ PKGBUILD2015-04-14 16:30:06 UTC (rev 236539)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz 
 
 pkgname=grml-zsh-config
-pkgver=0.11.1
+pkgver=0.11.2
 pkgrel=1
 pkgdesc="grml's zsh setup"
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('zsh' 'coreutils' 'inetutils' 'grep' 'sed' 'procps')
 makedepends=('txt2tags')
 
source=("http://deb.grml.org/pool/main/g/grml-etc-core/grml-etc-core_${pkgver}.tar.gz";)
-sha256sums=('d3c2a19cb5b23d7e0fb3c8774ea8102faec1e4e2db91770b4c19cbd29f8e1a83')
+sha256sums=('0034a2a9ee77068a381c77a69fc05fcaa054215fdf1b05163a7bb7397145ec40')
 
 build() {
cd ${srcdir}/grml-etc-core-${pkgver}/doc


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

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 18:00:15
  Author: arojas
Revision: 236538

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

Added:
  plasma-mediacenter/repos/kde-unstable-i686/PKGBUILD
(from rev 236537, plasma-mediacenter/kde-unstable/PKGBUILD)
  plasma-mediacenter/repos/kde-unstable-x86_64/PKGBUILD
(from rev 236537, plasma-mediacenter/kde-unstable/PKGBUILD)
Deleted:
  plasma-mediacenter/repos/kde-unstable-i686/PKGBUILD
  plasma-mediacenter/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2015-04-14 15:58:21 UTC (rev 236537)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 16:00:15 UTC (rev 236538)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Bhushan Shah 
-
-pkgname=plasma-mediacenter
-pkgver=5.2.95
-pkgrel=1
-pkgdesc="A mediacenter user interface based on KDE Plasma components"
-arch=(i686 x86_64)
-url="http://community.kde.org/Plasma/Plasma_Media_Center/";
-license=(GPL3)
-depends=(plasma-workspace baloo)
-makedepends=(extra-cmake-modules)
-groups=(plasma)
-source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";)
-md5sums=('aae7624fb04a608653e37cd1eae4e9f0')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: plasma-mediacenter/repos/kde-unstable-i686/PKGBUILD (from rev 236537, 
plasma-mediacenter/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 16:00:15 UTC (rev 236538)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Bhushan Shah 
+
+pkgname=plasma-mediacenter
+pkgver=5.2.95
+pkgrel=1
+pkgdesc="A mediacenter user interface based on KDE Plasma components"
+arch=(i686 x86_64)
+url="http://community.kde.org/Plasma/Plasma_Media_Center/";
+license=(GPL3)
+depends=(plasma-workspace baloo)
+makedepends=(extra-cmake-modules)
+groups=(plasma)
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";)
+md5sums=('aae7624fb04a608653e37cd1eae4e9f0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2015-04-14 15:58:21 UTC (rev 236537)
+++ kde-unstable-x86_64/PKGBUILD2015-04-14 16:00:15 UTC (rev 236538)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Bhushan Shah 
-
-pkgname=plasma-mediacenter
-pkgver=5.2.95
-pkgrel=1
-pkgdesc="A mediacenter user interface based on KDE Plasma components"
-arch=(i686 x86_64)
-url="http://community.kde.org/Plasma/Plasma_Media_Center/";
-license=(GPL3)
-depends=(plasma-workspace baloo)
-makedepends=(extra-cmake-modules)
-groups=(plasma)
-source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";)
-md5sums=('aae7624fb04a608653e37cd1eae4e9f0')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: plasma-mediacenter/repos/kde-unstable-x86_64/PKGBUILD (from rev 236537, 
plasma-mediacenter/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2015-04-14 16:00:15 UTC (rev 236538)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Bhushan Shah 
+
+pkgname=plasma-mediacenter
+pkgver=5.2.95
+pkgrel=1
+pkgdesc="A mediacenter user interface based on KDE Plasma components"
+arch=(i686 x86_64)
+url="http://community.kde.org/Plasma/Plasma_Media_Center/";
+license=(GPL3)
+depends=(plasma-workspace baloo)
+makedepends=(extra-cmake-modules)
+groups=(plasma)
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";

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

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 17:58:21
  Author: arojas
Revision: 236537

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

Added:
  plasma-mediacenter/repos/kde-unstable-i686/PKGBUILD
(from rev 236536, plasma-mediacenter/kde-unstable/PKGBUILD)
  plasma-mediacenter/repos/kde-unstable-x86_64/PKGBUILD
(from rev 236536, plasma-mediacenter/kde-unstable/PKGBUILD)
Deleted:
  plasma-mediacenter/repos/kde-unstable-i686/PKGBUILD
  plasma-mediacenter/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2015-04-14 15:04:13 UTC (rev 236536)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 15:58:21 UTC (rev 236537)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Bhushan Shah 
-
-pkgname=plasma-mediacenter
-pkgver=5.2.95
-pkgrel=1
-pkgdesc="A mediacenter user interface based on KDE Plasma components"
-arch=(i686 x86_64)
-url="http://community.kde.org/Plasma/Plasma_Media_Center/";
-license=(GPL3)
-depends=(plasma-workspace baloo)
-makedepends=(extra-cmake-modules)
-groups=(plasma)
-source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";)
-md5sums=('27dbce5f7d428e7904733ab57c21bb28')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: plasma-mediacenter/repos/kde-unstable-i686/PKGBUILD (from rev 236536, 
plasma-mediacenter/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 15:58:21 UTC (rev 236537)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Bhushan Shah 
+
+pkgname=plasma-mediacenter
+pkgver=5.2.95
+pkgrel=1
+pkgdesc="A mediacenter user interface based on KDE Plasma components"
+arch=(i686 x86_64)
+url="http://community.kde.org/Plasma/Plasma_Media_Center/";
+license=(GPL3)
+depends=(plasma-workspace baloo)
+makedepends=(extra-cmake-modules)
+groups=(plasma)
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";)
+md5sums=('aae7624fb04a608653e37cd1eae4e9f0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2015-04-14 15:04:13 UTC (rev 236536)
+++ kde-unstable-x86_64/PKGBUILD2015-04-14 15:58:21 UTC (rev 236537)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Bhushan Shah 
-
-pkgname=plasma-mediacenter
-pkgver=5.2.95
-pkgrel=1
-pkgdesc="A mediacenter user interface based on KDE Plasma components"
-arch=(i686 x86_64)
-url="http://community.kde.org/Plasma/Plasma_Media_Center/";
-license=(GPL3)
-depends=(plasma-workspace baloo)
-makedepends=(extra-cmake-modules)
-groups=(plasma)
-source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";)
-md5sums=('27dbce5f7d428e7904733ab57c21bb28')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: plasma-mediacenter/repos/kde-unstable-x86_64/PKGBUILD (from rev 236536, 
plasma-mediacenter/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2015-04-14 15:58:21 UTC (rev 236537)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Bhushan Shah 
+
+pkgname=plasma-mediacenter
+pkgver=5.2.95
+pkgrel=1
+pkgdesc="A mediacenter user interface based on KDE Plasma components"
+arch=(i686 x86_64)
+url="http://community.kde.org/Plasma/Plasma_Media_Center/";
+license=(GPL3)
+depends=(plasma-workspace baloo)
+makedepends=(extra-cmake-modules)
+groups=(plasma)
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";

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

2015-04-14 Thread Giovanni Scafora
Date: Tuesday, April 14, 2015 @ 17:44:21
  Author: giovanni
Revision: 131347

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

Added:
  sigil/repos/community-i686/PKGBUILD
(from rev 131346, sigil/trunk/PKGBUILD)
  sigil/repos/community-i686/sigil.install
(from rev 131346, sigil/trunk/sigil.install)
  sigil/repos/community-x86_64/PKGBUILD
(from rev 131346, sigil/trunk/PKGBUILD)
  sigil/repos/community-x86_64/sigil.install
(from rev 131346, sigil/trunk/sigil.install)
Deleted:
  sigil/repos/community-i686/PKGBUILD
  sigil/repos/community-i686/sigil.install
  sigil/repos/community-x86_64/PKGBUILD
  sigil/repos/community-x86_64/sigil.install

+
 /PKGBUILD  |   98 +++
 /sigil.install |   24 +
 community-i686/PKGBUILD|   49 ---
 community-i686/sigil.install   |   12 
 community-x86_64/PKGBUILD  |   49 ---
 community-x86_64/sigil.install |   12 
 6 files changed, 122 insertions(+), 122 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-04-14 15:44:12 UTC (rev 131346)
+++ community-i686/PKGBUILD 2015-04-14 15:44:21 UTC (rev 131347)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Larry Hajali 
-
-pkgname=sigil
-pkgver=0.8.5
-pkgrel=1
-pkgdesc="WYSIWYG ebook editor"
-arch=('i686' 'x86_64')
-url="https://github.com/user-none/Sigil/";
-license=('GPL3')
-depends=('qt5-webkit' 'boost-libs' 'python' 'hicolor-icon-theme')
-makedepends=('qt5-multimedia' 'qt5-tools' 'qt5-svg' 'cmake' 'gendesk' 'boost')
-install=sigil.install
-source=("https://github.com/user-none/Sigil/releases/download/${pkgver}/Sigil-${pkgver}-Code.zip";)
-md5sums=('53a0c2d43a524dd433fb23667d2317c9')
-
-build() {
-  cd "${srcdir}/Sigil-${pkgver}"
-  gendesk -n "$startdir"/PKGBUILD
-
-  mkdir build
-  cd build
-
-  cmake -G "Unix Makefiles" \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_C_FLAGS:STRING="${CFLAGS}" \
--DCMAKE_CXX_FLAGS:STRING="${CXXFLAGS}" \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON ..
-
-  make
-}
-
-package() {
-  cd "${srcdir}"/Sigil-${pkgver}/build
-  make install DESTDIR="${pkgdir}"
-
-  install -d -m 0755 "${pkgdir}"/usr/share/applications
-  install -m 0644 "${srcdir}"/Sigil-${pkgver}/${pkgname}.desktop \
-"${pkgdir}"/usr/share/applications
-
-  for _pic in 16 32 48 128 256; do
-install -D -m 0644 ../src/Sigil/Resource_Files/icon/app_icon_${_pic}.png \
-  "${pkgdir}"/usr/share/icons/hicolor/${_pic}x${_pic}/apps/${pkgname}.png
-  done
-  install -Dm644 ../src/Sigil/Resource_Files/icon/app_icon_128.png \
-"$pkgdir/usr/share/pixmaps/$pkgname.png"
-}

Copied: sigil/repos/community-i686/PKGBUILD (from rev 131346, 
sigil/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-04-14 15:44:21 UTC (rev 131347)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Larry Hajali 
+
+pkgname=sigil
+pkgver=0.8.6
+pkgrel=1
+pkgdesc="WYSIWYG ebook editor"
+arch=('i686' 'x86_64')
+url="https://github.com/user-none/Sigil/";
+license=('GPL3')
+depends=('qt5-webkit' 'boost-libs' 'python' 'hicolor-icon-theme')
+makedepends=('qt5-multimedia' 'qt5-tools' 'qt5-svg' 'cmake' 'gendesk' 'boost')
+install=sigil.install
+source=("https://github.com/user-none/Sigil/releases/download/${pkgver}/Sigil-${pkgver}-Code.zip";)
+md5sums=('c32364fd891f562e259c50615191fc45')
+
+build() {
+  cd "${srcdir}/Sigil-${pkgver}"
+  gendesk -n "$startdir"/PKGBUILD
+
+  mkdir build
+  cd build
+
+  cmake -G "Unix Makefiles" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_C_FLAGS:STRING="${CFLAGS}" \
+-DCMAKE_CXX_FLAGS:STRING="${CXXFLAGS}" \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON ..
+
+  make
+}
+
+package() {
+  cd "${srcdir}"/Sigil-${pkgver}/build
+  make install DESTDIR="${pkgdir}"
+
+  install -d -m 0755 "${pkgdir}"/usr/share/applications
+  install -m 0644 "${srcdir}"/Sigil-${pkgver}/${pkgname}.desktop \
+"${pkgdir}"/usr/share/applications
+
+  for _pic in 16 32 48 128 256; do
+install -D -m 0644 ../src/Sigil/Resource_Files/icon/app_icon_${_pic}.png \
+  "${pkgdir}"/usr/share/icons/hicolor/${_pic}x${_pic}/apps/${pkgname}.png
+  done
+  install -Dm644 ../src/Sigil/Resource_Files/icon/app_icon_128.png \
+"$pkgdir/usr/share/pixmaps/$pkgname.png"
+}

Deleted: community-i686/sigil.install
===
--- community-i686/sigil.install2015-04-14 15:44:12 UTC (rev 131346)
+++ community-i686/sigil.install2015-04-14 15:44:21 UTC (rev 131347)
@@ -1,12 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-

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

2015-04-14 Thread Giovanni Scafora
Date: Tuesday, April 14, 2015 @ 17:44:12
  Author: giovanni
Revision: 131346

upgpkg: sigil 0.8.6-1

upstream release

Modified:
  sigil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 13:02:16 UTC (rev 131345)
+++ PKGBUILD2015-04-14 15:44:12 UTC (rev 131346)
@@ -3,7 +3,7 @@
 # Contributor: Larry Hajali 
 
 pkgname=sigil
-pkgver=0.8.5
+pkgver=0.8.6
 pkgrel=1
 pkgdesc="WYSIWYG ebook editor"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('qt5-multimedia' 'qt5-tools' 'qt5-svg' 'cmake' 'gendesk' 'boost')
 install=sigil.install
 
source=("https://github.com/user-none/Sigil/releases/download/${pkgver}/Sigil-${pkgver}-Code.zip";)
-md5sums=('53a0c2d43a524dd433fb23667d2317c9')
+md5sums=('c32364fd891f562e259c50615191fc45')
 
 build() {
   cd "${srcdir}/Sigil-${pkgver}"


[arch-commits] Commit in (6 files)

2015-04-14 Thread Laurent Carlier
Date: Tuesday, April 14, 2015 @ 17:04:13
  Author: lcarlier
Revision: 236536

Add intel video driver with dri3 support

Added:
  xf86-video-intel-dri3/
  xf86-video-intel-dri3/repos/
  xf86-video-intel-dri3/trunk/
  xf86-video-intel-dri3/trunk/PKGBUILD
  xf86-video-intel-dri3/trunk/git-fixes.patch
  xf86-video-intel-dri3/trunk/xf86-video-intel.install

--+
 PKGBUILD |   57 ++
 git-fixes.patch  |  175 +
 xf86-video-intel.install |   20 +
 3 files changed, 252 insertions(+)

Added: xf86-video-intel-dri3/trunk/PKGBUILD
===
--- xf86-video-intel-dri3/trunk/PKGBUILD(rev 0)
+++ xf86-video-intel-dri3/trunk/PKGBUILD2015-04-14 15:04:13 UTC (rev 
236536)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-intel-dri3
+pkgver=2.99.917
+pkgrel=1
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+install=$pkgname.install
+pkgdesc="X.org Intel i810/i830/i915/945G/G965+ video drivers with dri3 support"
+depends=('mesa-dri' 'libxvmc' 'pixman' 'xcb-util>=0.3.9')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=19' 'libx11' 
'libxrender'
+ # additional deps for intel-virtual-output
+'libxrandr' 'libxinerama' 'libxcursor' 'libxtst')
+optdepends=('libxrandr: for intel-virtual-output'
+'libxinerama: for intel-virtual-output'
+'libxcursor: for intel-virtual-output'
+'libxtst: for intel-virtual-output')
+replaces=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
+provides=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
+conflicts=('xorg-server<1.16' 'X-ABI-VIDEODRV_VERSION<19' 
'X-ABI-VIDEODRV_VERSION>=20'
+   'xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xf86-video-i810' 
'xf86-video-intel-legacy'
+   'xf86-video-intel')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2
+git-fixes.patch)
+sha256sums=('00b781eea055582820a123c47b62411bdf6aabf4f03dc0568faec55faf9667c9'
+'3b38b844fbc8088401ebbbafbbf1399d87f077caa5020cbd822487b7d26514e0')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  # fix FS#43840, FS#43906
+  patch -Np1 -i ../git-fixes.patch
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --libexecdir=/usr/lib \
+--enable-dri3
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


Property changes on: xf86-video-intel-dri3/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: xf86-video-intel-dri3/trunk/git-fixes.patch
===
--- xf86-video-intel-dri3/trunk/git-fixes.patch (rev 0)
+++ xf86-video-intel-dri3/trunk/git-fixes.patch 2015-04-14 15:04:13 UTC (rev 
236536)
@@ -0,0 +1,175 @@
+From 127aae5a72a69df325fed0b63d345e81583d5ca1 Mon Sep 17 00:00:00 2001
+From: Chris Wilson 
+Date: Mon, 16 Feb 2015 21:37:35 +
+Subject: tools/intel-virtual-output: Check for DRI3 more carefully
+
+Using xcb, we cannot simply call xcb_dri3_query_version() without it
+terminating the connection if DRI3 is not enabled on the target display.
+Oops.
+
+Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=89172
+Signed-off-by: Chris Wilson 
+
+diff --git a/tools/virtual.c b/tools/virtual.c
+index 8e2b4a2..3bcd057 100644
+--- a/tools/virtual.c
 b/tools/virtual.c
+@@ -218,6 +218,13 @@ static inline XRRScreenResources 
*_XRRGetScreenResourcesCurrent(Display *dpy, Wi
+ static int _x_error_occurred;
+ 
+ static int
++_io_error_handler(Display *display)
++{
++  fprintf(stderr, "XIO error on display %s\n", DisplayString(display));
++  abort();
++}
++
++static int
+ _check_error_handler(Display *display,
+XErrorEvent *event)
+ {
+@@ -320,6 +327,7 @@ can_use_shm(Display *dpy,
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ static Pixmap dri3_create_pixmap(Display *dpy,
+@@ -357,6 +365,7 @@ static int dri3_query_version(Display *dpy, int *major, 
int *minor)
+ {
+   xcb_connection_t *c = XGetXCBConnection(dpy);
+   xcb_dri3_query_version_reply_t *reply;
++  xcb_generic_error_t *error;
+ 
+   *major = *minor = -1;
+ 
+@@ -364,7 +373,8 @@ static int dri3_query_version(Display *dpy, int *major, 
int *minor)
+xcb_dri3_query_version(c,
+   
XCB_DRI3_MAJOR_VERSION,
+ 

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

2015-04-14 Thread Ronald van Haren
Date: Tuesday, April 14, 2015 @ 16:32:42
  Author: ronald
Revision: 236535

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

Added:
  iproute2/repos/testing-i686/
  iproute2/repos/testing-i686/PKGBUILD
(from rev 236534, iproute2/trunk/PKGBUILD)
  iproute2/repos/testing-i686/iproute2-fhs.patch
(from rev 236534, iproute2/trunk/iproute2-fhs.patch)
  iproute2/repos/testing-i686/unwanted-link-help.patch
(from rev 236534, iproute2/trunk/unwanted-link-help.patch)
  iproute2/repos/testing-x86_64/
  iproute2/repos/testing-x86_64/PKGBUILD
(from rev 236534, iproute2/trunk/PKGBUILD)
  iproute2/repos/testing-x86_64/iproute2-fhs.patch
(from rev 236534, iproute2/trunk/iproute2-fhs.patch)
  iproute2/repos/testing-x86_64/unwanted-link-help.patch
(from rev 236534, iproute2/trunk/unwanted-link-help.patch)

-+
 testing-i686/PKGBUILD   |   63 +
 testing-i686/iproute2-fhs.patch |   75 ++
 testing-i686/unwanted-link-help.patch   |   17 ++
 testing-x86_64/PKGBUILD |   63 +
 testing-x86_64/iproute2-fhs.patch   |   75 ++
 testing-x86_64/unwanted-link-help.patch |   17 ++
 6 files changed, 310 insertions(+)

Copied: iproute2/repos/testing-i686/PKGBUILD (from rev 236534, 
iproute2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-04-14 14:32:42 UTC (rev 236535)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Judd Vinet 
+
+pkgname=iproute2
+pkgver=4.0.0
+pkgrel=1
+pkgdesc="IP Routing Utilities"
+arch=('i686' 'x86_64')
+license=('GPL2')
+url="http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2";
+depends=('glibc' 'iptables')
+makedepends=('linux-atm')
+optdepends=('linux-atm: ATM support')
+groups=('base')
+provides=('iproute')
+conflicts=('iproute')
+replaces=('iproute')
+options=('staticlibs' '!makeflags')
+backup=('etc/iproute2/ematch_map' 'etc/iproute2/rt_dsfield' 
'etc/iproute2/rt_protos' \
+   'etc/iproute2/rt_realms' 'etc/iproute2/rt_scopes' 
'etc/iproute2/rt_tables')
+validpgpkeys=('9F6FC345B05BE7E766B83C8F80A77F6095CDE47E') # Stephen Hemminger
+source=("http://www.kernel.org/pub/linux/utils/net/${pkgname}/${pkgname}-${pkgver}.tar."{xz,sign}
+iproute2-fhs.patch
+unwanted-link-help.patch)
+sha1sums=('d24385ae619966d1bd71e146322d6035d60aaa1a'
+  'SKIP'
+  '35b8cf2dc94b73eccad427235c07596146cd6f6c'
+  '3b1335f4025f657f388fbf4e5a740871e3129c2a')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # set correct fhs structure
+  patch -Np1 -i "${srcdir}/iproute2-fhs.patch"
+
+  # allow operations on links called "h", "he", "hel", "help"
+  patch -Np1 -i "${srcdir}/unwanted-link-help.patch"
+
+  # do not treat warnings as errors
+  sed -i 's/-Werror//' Makefile
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  # libnetlink isn't installed, install it FS#19385
+  install -Dm644 include/libnetlink.h "${pkgdir}/usr/include/libnetlink.h"
+  install -Dm644 lib/libnetlink.a "${pkgdir}/usr/lib/libnetlink.a"
+
+  # usrmove
+  cd "${pkgdir}"
+  mv usr/sbin usr/bin
+}

Copied: iproute2/repos/testing-i686/iproute2-fhs.patch (from rev 236534, 
iproute2/trunk/iproute2-fhs.patch)
===
--- testing-i686/iproute2-fhs.patch (rev 0)
+++ testing-i686/iproute2-fhs.patch 2015-04-14 14:32:42 UTC (rev 236535)
@@ -0,0 +1,75 @@
+diff -Naur iproute2-3.4.0/Makefile iproute2-3.4.0.new/Makefile
+--- iproute2-3.4.0/Makefile2012-05-21 23:12:19.0 +0200
 iproute2-3.4.0.new/Makefile2012-06-18 10:23:53.896760158 +0200
+@@ -1,7 +1,8 @@
+ ROOTDIR=$(DESTDIR)
+ PREFIX=/usr
+ LIBDIR=$(PREFIX)/lib
+-SBINDIR=/sbin
++SBINDIR=/usr/sbin
++SHAREDIR=/usr/share
+ CONFDIR=/etc/iproute2
+ DATADIR=$(PREFIX)/share
+ DOCDIR=$(DATADIR)/doc/iproute2
+diff -Naur iproute2-3.4.0/netem/Makefile iproute2-3.4.0.new/netem/Makefile
+--- iproute2-3.4.0/netem/Makefile  2012-05-21 23:12:19.0 +0200
 iproute2-3.4.0.new/netem/Makefile  2012-06-18 10:23:53.896760158 +0200
+@@ -20,9 +20,9 @@
+   $(HOSTCC) $(CCOPTS) -I../include -o $@ $@.c -lm
+ 
+ install: all
+-  mkdir -p $(DESTDIR)$(LIBDIR)/tc
++  mkdir -p $(DESTDIR)$(SHAREDIR)/tc
+   for i in $(DISTDATA); \
+-  do install -m 644 $$i $(DESTDIR)$(LIBDIR)/tc; \
++  do install -m 644 $$i $(DESTDIR)$(SHAREDIR)/tc; \
+   done
+ 
+ clean:
+diff -Naur iproute2-3.4.0/tc/Makefile iproute2-3.4.0.new/tc/Makefile
+--- iproute2-3.4.0/tc/Makefile 2012-05-21 23:12:19.0 +0200
 iproute2-3.4.0.new/tc/Makefile 

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

2015-04-14 Thread Ronald van Haren
Date: Tuesday, April 14, 2015 @ 16:32:31
  Author: ronald
Revision: 236534

upgpkg: iproute2 4.0.0-1

update to 4.0.0

Modified:
  iproute2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 12:29:13 UTC (rev 236533)
+++ PKGBUILD2015-04-14 14:32:31 UTC (rev 236534)
@@ -3,7 +3,7 @@
 # Contributor: Judd Vinet 
 
 pkgname=iproute2
-pkgver=3.19.0
+pkgver=4.0.0
 pkgrel=1
 pkgdesc="IP Routing Utilities"
 arch=('i686' 'x86_64')
@@ -23,7 +23,7 @@
 
source=("http://www.kernel.org/pub/linux/utils/net/${pkgname}/${pkgname}-${pkgver}.tar."{xz,sign}
 iproute2-fhs.patch
 unwanted-link-help.patch)
-sha1sums=('109b076dc12d4af7c7b5299b0a66e0c4bd8e5e60'
+sha1sums=('d24385ae619966d1bd71e146322d6035d60aaa1a'
   'SKIP'
   '35b8cf2dc94b73eccad427235c07596146cd6f6c'
   '3b1335f4025f657f388fbf4e5a740871e3129c2a')


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

2015-04-14 Thread Kyle Keen
Date: Tuesday, April 14, 2015 @ 15:02:03
  Author: kkeen
Revision: 131344

upgpkg: ranger 1.7.0-1

Modified:
  ranger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 10:29:48 UTC (rev 131343)
+++ PKGBUILD2015-04-14 13:02:03 UTC (rev 131344)
@@ -2,8 +2,8 @@
 # Previous maintainer: Roman Zimbelmann 
 
 pkgname=ranger
-pkgver=1.6.1
-pkgrel=2
+pkgver=1.7.0
+pkgrel=1
 pkgdesc='A simple, vim-like file manager'
 arch=('any')
 url='http://ranger.nongnu.org'
@@ -33,4 +33,4 @@
   python setup.py -q install --root="${pkgdir}" --optimize=1
 }
 
-md5sums=('1062aa8b4f1e8d8eb5a03bc95a9a7ab6')
+md5sums=('e1d56e8afdff2e584df18e36e6908fee')


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

2015-04-14 Thread Kyle Keen
Date: Tuesday, April 14, 2015 @ 15:02:16
  Author: kkeen
Revision: 131345

archrelease: copy trunk to community-any

Added:
  ranger/repos/community-any/PKGBUILD
(from rev 131344, ranger/trunk/PKGBUILD)
Deleted:
  ranger/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-14 13:02:03 UTC (rev 131344)
+++ PKGBUILD2015-04-14 13:02:16 UTC (rev 131345)
@@ -1,23 +0,0 @@
-# Maintainer: schuay 
-# Previous maintainer: Roman Zimbelmann 
-
-pkgname=ranger
-pkgver=1.6.1
-pkgrel=2
-pkgdesc='A simple, vim-like file manager'
-arch=('any')
-url='http://ranger.nongnu.org'
-license=('GPL')
-depends=('python')
-conflicts=('ranger-git')
-source=("http://ranger.nongnu.org/${pkgname}-${pkgver}.tar.gz";)
-
-package() { 
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # Replace "python" with the python binary you want ranger to use!
-  # (python 2.6 and >=3.1 supported, below 2.6 will certainly not work.)
-  python setup.py -q install --root="${pkgdir}" --optimize=1
-}
-
-md5sums=('1062aa8b4f1e8d8eb5a03bc95a9a7ab6')

Copied: ranger/repos/community-any/PKGBUILD (from rev 131344, 
ranger/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-14 13:02:16 UTC (rev 131345)
@@ -0,0 +1,36 @@
+# Maintainer: schuay 
+# Previous maintainer: Roman Zimbelmann 
+
+pkgname=ranger
+pkgver=1.7.0
+pkgrel=1
+pkgdesc='A simple, vim-like file manager'
+arch=('any')
+url='http://ranger.nongnu.org'
+license=('GPL')
+depends=('python')
+optdepends=(
+'python-chardet: in case of encoding detection problems'
+'sudo: to use the "run as root"-feature'
+'libcaca: for ASCII-art image previews'
+'highlight: for syntax highlighting of code'
+'atool: for previews of archives'
+'w3m: for previews of images and html pages'
+'lynx: for previews of html pages'
+'elinks: for previews of html pages'
+'poppler: for pdf previews'
+'transmission-cli: for viewing bittorrent information'
+'mediainfo: for viewing information about media files'
+'perl-image-exiftool: for viewing information about media files')
+conflicts=('ranger-git')
+source=("http://ranger.nongnu.org/${pkgname}-${pkgver}.tar.gz";)
+
+package() { 
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # Replace "python" with the python binary you want ranger to use!
+  # (python 2.6 and >=3.1 supported, below 2.6 will certainly not work.)
+  python setup.py -q install --root="${pkgdir}" --optimize=1
+}
+
+md5sums=('e1d56e8afdff2e584df18e36e6908fee')


[arch-commits] Commit in xf86-video-intel/trunk (PKGBUILD git-fixes.patch)

2015-04-14 Thread Laurent Carlier
Date: Tuesday, April 14, 2015 @ 14:04:37
  Author: lcarlier
Revision: 236531

upgpkg: xf86-video-intel 2.99.917-5

fix FS#43534

Modified:
  xf86-video-intel/trunk/PKGBUILD
  xf86-video-intel/trunk/git-fixes.patch

-+
 PKGBUILD|4 ++--
 git-fixes.patch |   47 +++
 2 files changed, 49 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 11:30:10 UTC (rev 236530)
+++ PKGBUILD2015-04-14 12:04:37 UTC (rev 236531)
@@ -4,7 +4,7 @@
 
 pkgname=xf86-video-intel
 pkgver=2.99.917
-pkgrel=4
+pkgrel=5
 arch=(i686 x86_64)
 url="http://xorg.freedesktop.org/";
 license=('custom')
@@ -26,7 +26,7 @@
 source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2
 git-fixes.patch)
 sha256sums=('00b781eea055582820a123c47b62411bdf6aabf4f03dc0568faec55faf9667c9'
-'9216b69b7e01b6910b4758c4e346d84a43198ee516f6b239bf43c4e172a9c922')
+'3b38b844fbc8088401ebbbafbbf1399d87f077caa5020cbd822487b7d26514e0')
 
 prepare() {
   cd ${pkgname}-${pkgver}

Modified: git-fixes.patch
===
--- git-fixes.patch 2015-04-14 11:30:10 UTC (rev 236530)
+++ git-fixes.patch 2015-04-14 12:04:37 UTC (rev 236531)
@@ -125,4 +125,51 @@
if (sna->flags & SNA_IS_HOSTED)
 -- 
 cgit v0.10.2
+From 9c109f3dc56621215e580e74a6161f00035bdac3 Mon Sep 17 00:00:00 2001
+From: Chris Wilson 
+Date: Sun, 12 Apr 2015 21:15:54 +0100
+Subject: [PATCH] sna: Mark the GPU as available before doing the mode restore
+ on VT enter
 
+Sometimes we want to render with the GPU when doing a mode switch, e.g.
+if we need to initialise an output surface. To do so, we need to prepare
+the acceleration layer first.
+
+Lots of thanks to Vasily for tracking this one down.
+
+Reported-by: Vasily Khoruzhick 
+Bugzilla: https://bugs.archlinux.org/task/43534
+Signed-off-by: Chris Wilson 
+---
+ src/sna/sna_driver.c | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/src/sna/sna_driver.c b/src/sna/sna_driver.c
+index 31500e7..488ca9b 100644
+--- a/src/sna/sna_driver.c
 b/src/sna/sna_driver.c
+@@ -1213,6 +1213,8 @@ static Bool sna_enter_vt(VT_FUNC_ARGS_DECL)
+   if (intel_get_master(sna->dev))
+   return FALSE;
+ 
++  sna_accel_enter(sna);
++
+   if (sna->flags & SNA_REPROBE) {
+   DBG(("%s: reporting deferred hotplug event\n", __FUNCTION__));
+   sna_mode_discover(sna);
+@@ -1221,11 +1223,11 @@ static Bool sna_enter_vt(VT_FUNC_ARGS_DECL)
+   sna_mode_check(sna);
+ 
+   if (!sna_set_desired_mode(sna)) {
++  sna_accel_leave(sna);
+   intel_put_master(sna->dev);
+   return FALSE;
+   }
+ 
+-  sna_accel_enter(sna);
+   return TRUE;
+ }
+ 
+-- 
+2.3.5
+


[arch-commits] Commit in xf86-video-intel/repos (12 files)

2015-04-14 Thread Laurent Carlier
Date: Tuesday, April 14, 2015 @ 14:04:46
  Author: lcarlier
Revision: 236532

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

Added:
  xf86-video-intel/repos/extra-i686/PKGBUILD
(from rev 236531, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/extra-i686/git-fixes.patch
(from rev 236531, xf86-video-intel/trunk/git-fixes.patch)
  xf86-video-intel/repos/extra-i686/xf86-video-intel.install
(from rev 236531, xf86-video-intel/trunk/xf86-video-intel.install)
  xf86-video-intel/repos/extra-x86_64/PKGBUILD
(from rev 236531, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/extra-x86_64/git-fixes.patch
(from rev 236531, xf86-video-intel/trunk/git-fixes.patch)
  xf86-video-intel/repos/extra-x86_64/xf86-video-intel.install
(from rev 236531, xf86-video-intel/trunk/xf86-video-intel.install)
Deleted:
  xf86-video-intel/repos/extra-i686/PKGBUILD
  xf86-video-intel/repos/extra-i686/git-fixes.patch
  xf86-video-intel/repos/extra-i686/xf86-video-intel.install
  xf86-video-intel/repos/extra-x86_64/PKGBUILD
  xf86-video-intel/repos/extra-x86_64/git-fixes.patch
  xf86-video-intel/repos/extra-x86_64/xf86-video-intel.install

---+
 /PKGBUILD |  110 ++
 /git-fixes.patch  |  350 
 /xf86-video-intel.install |   40 +++
 extra-i686/PKGBUILD   |   55 -
 extra-i686/git-fixes.patch|  128 ---
 extra-i686/xf86-video-intel.install   |   20 -
 extra-x86_64/PKGBUILD |   55 -
 extra-x86_64/git-fixes.patch  |  128 ---
 extra-x86_64/xf86-video-intel.install |   20 -
 9 files changed, 500 insertions(+), 406 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-04-14 12:04:37 UTC (rev 236531)
+++ extra-i686/PKGBUILD 2015-04-14 12:04:46 UTC (rev 236532)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-intel
-pkgver=2.99.917
-pkgrel=4
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-install=$pkgname.install
-pkgdesc="X.org Intel i810/i830/i915/945G/G965+ video drivers"
-depends=('mesa-dri' 'libxvmc' 'pixman' 'xcb-util>=0.3.9')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=19' 'libx11' 
'libxrender'
- # additional deps for intel-virtual-output
-'libxrandr' 'libxinerama' 'libxcursor' 'libxtst')
-optdepends=('libxrandr: for intel-virtual-output'
-'libxinerama: for intel-virtual-output'
-'libxcursor: for intel-virtual-output'
-'libxtst: for intel-virtual-output')
-replaces=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
-provides=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
-conflicts=('xorg-server<1.16' 'X-ABI-VIDEODRV_VERSION<19' 
'X-ABI-VIDEODRV_VERSION>=20'
-   'xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xf86-video-i810' 
'xf86-video-intel-legacy')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2
-git-fixes.patch)
-sha256sums=('00b781eea055582820a123c47b62411bdf6aabf4f03dc0568faec55faf9667c9'
-'9216b69b7e01b6910b4758c4e346d84a43198ee516f6b239bf43c4e172a9c922')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  # fix FS#43840, FS#43906
-  patch -Np1 -i ../git-fixes.patch
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --libexecdir=/usr/lib
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-intel/repos/extra-i686/PKGBUILD (from rev 236531, 
xf86-video-intel/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-04-14 12:04:46 UTC (rev 236532)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-intel
+pkgver=2.99.917
+pkgrel=5
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+install=$pkgname.install
+pkgdesc="X.org Intel i810/i830/i915/945G/G965+ video drivers"
+depends=('mesa-dri' 'libxvmc' 'pixman' 'xcb-util>=0.3.9')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=19' 'libx11' 
'libxrender'
+ # additional deps for intel-virtual-output
+'libxrandr' 'libxinerama' 'libxcursor' 'libxtst')
+optdepends=('libxrandr: for intel-virtual-output'
+'libxinerama: for intel-virtual-output'
+'libxcursor: for intel-virtual-output'
+'libxtst: for intel-virtual-output')
+replaces=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
+provides=('xf86-video-intel-uxa' 'xf86-video-i

[arch-commits] Commit in gnome-settings-daemon/repos (8 files)

2015-04-14 Thread Jan Steffens
Date: Tuesday, April 14, 2015 @ 13:30:10
  Author: heftig
Revision: 236530

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

Added:
  gnome-settings-daemon/repos/extra-i686/PKGBUILD
(from rev 236529, gnome-settings-daemon/trunk/PKGBUILD)
  gnome-settings-daemon/repos/extra-i686/gnome-settings-daemon.install
(from rev 236529, gnome-settings-daemon/trunk/gnome-settings-daemon.install)
  gnome-settings-daemon/repos/extra-x86_64/PKGBUILD
(from rev 236529, gnome-settings-daemon/trunk/PKGBUILD)
  gnome-settings-daemon/repos/extra-x86_64/gnome-settings-daemon.install
(from rev 236529, gnome-settings-daemon/trunk/gnome-settings-daemon.install)
Deleted:
  gnome-settings-daemon/repos/extra-i686/PKGBUILD
  gnome-settings-daemon/repos/extra-i686/gnome-settings-daemon.install
  gnome-settings-daemon/repos/extra-x86_64/PKGBUILD
  gnome-settings-daemon/repos/extra-x86_64/gnome-settings-daemon.install

+
 /PKGBUILD  |   68 +++
 /gnome-settings-daemon.install |   24 +
 extra-i686/PKGBUILD|   34 -
 extra-i686/gnome-settings-daemon.install   |   12 
 extra-x86_64/PKGBUILD  |   34 -
 extra-x86_64/gnome-settings-daemon.install |   12 
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-04-14 11:28:58 UTC (rev 236529)
+++ extra-i686/PKGBUILD 2015-04-14 11:30:10 UTC (rev 236530)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-settings-daemon
-pkgver=3.16.0
-pkgrel=1
-pkgdesc="The GNOME Settings daemon"
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('dconf' 'gnome-desktop' 'gsettings-desktop-schemas' 
'hicolor-icon-theme' 'libcanberra-pulse' 'libnotify' 'libsystemd' 'libwacom' 
'pulseaudio' 'pulseaudio-alsa' 'upower' 'librsvg' 'libgweather' 'geocode-glib' 
'geoclue2' 'nss')
-makedepends=('intltool' 'xf86-input-wacom' 'libxslt' 'docbook-xsl')
-options=('!emptydirs')
-install=gnome-settings-daemon.install
-url="http://www.gnome.org";
-groups=('gnome')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('e3851ca0aa43e86584e5dad8964f3f7c2246a7aa95d9a25e112115fca3e849f0')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --libexecdir=/usr/lib/$pkgname --disable-static
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-settings-daemon/repos/extra-i686/PKGBUILD (from rev 236529, 
gnome-settings-daemon/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-04-14 11:30:10 UTC (rev 236530)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-settings-daemon
+pkgver=3.16.1
+pkgrel=1
+pkgdesc="The GNOME Settings daemon"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dconf' 'gnome-desktop' 'gsettings-desktop-schemas' 
'hicolor-icon-theme' 'libcanberra-pulse' 'libnotify' 'libsystemd' 'libwacom' 
'pulseaudio' 'pulseaudio-alsa' 'upower' 'librsvg' 'libgweather' 'geocode-glib' 
'geoclue2' 'nss')
+makedepends=('intltool' 'xf86-input-wacom' 'libxslt' 'docbook-xsl')
+options=('!emptydirs')
+install=gnome-settings-daemon.install
+url="http://www.gnome.org";
+groups=('gnome')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('aa8dad75582f7eaee1ad3efe3efc9c8a30f24b80f2fbea701cef947d1281c1d0')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/$pkgname --disable-static
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/gnome-settings-daemon.install
===
--- extra-i686/gnome-settings-daemon.install2015-04-14 11:28:58 UTC (rev 
236529)
+++ extra-i686/gnome-settings-daemon.install2015-04-14 11:30:10 UTC (rev 
236530)
@@ -1,12 +0,0 @@
-post_install() {
-  glib-compile-schemas /usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: gnome-settings-daemon/repos/extra-i686/gnome-settings-daemon.install 
(from rev 236529, gnome-settings-daemon/trunk/gnome-settings-daemon.install)
=

[arch-commits] Commit in gnome-settings-daemon/trunk (PKGBUILD)

2015-04-14 Thread Jan Steffens
Date: Tuesday, April 14, 2015 @ 13:28:58
  Author: heftig
Revision: 236529

3.16.1

Modified:
  gnome-settings-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 10:41:55 UTC (rev 236528)
+++ PKGBUILD2015-04-14 11:28:58 UTC (rev 236529)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-settings-daemon
-pkgver=3.16.0
+pkgver=3.16.1
 pkgrel=1
 pkgdesc="The GNOME Settings daemon"
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 url="http://www.gnome.org";
 groups=('gnome')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('e3851ca0aa43e86584e5dad8964f3f7c2246a7aa95d9a25e112115fca3e849f0')
+sha256sums=('aa8dad75582f7eaee1ad3efe3efc9c8a30f24b80f2fbea701cef947d1281c1d0')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in xorg-server/repos (22 files)

2015-04-14 Thread Laurent Carlier
Date: Tuesday, April 14, 2015 @ 12:41:55
  Author: lcarlier
Revision: 236528

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

Added:
  xorg-server/repos/testing-i686/
  
xorg-server/repos/testing-i686/0001-int10-Fix-error-check-for-pci_device_map_legacy.patch
(from rev 236527, 
xorg-server/trunk/0001-int10-Fix-error-check-for-pci_device_map_legacy.patch)
  
xorg-server/repos/testing-i686/0001-mi-Partial-pie-slice-filled-arcs-may-need-more-space.patch
(from rev 236527, 
xorg-server/trunk/0001-mi-Partial-pie-slice-filled-arcs-may-need-more-space.patch)
  xorg-server/repos/testing-i686/PKGBUILD
(from rev 236527, xorg-server/trunk/PKGBUILD)
  xorg-server/repos/testing-i686/autoconfig-sis.patch
(from rev 236527, xorg-server/trunk/autoconfig-sis.patch)
  xorg-server/repos/testing-i686/nvidia-drm-outputclass.conf
(from rev 236527, xorg-server/trunk/nvidia-drm-outputclass.conf)
  
xorg-server/repos/testing-i686/os-access-fix-regression-in-server-interpreted-auth.patch
(from rev 236527, 
xorg-server/trunk/os-access-fix-regression-in-server-interpreted-auth.patch)
  
xorg-server/repos/testing-i686/v2-xserver-Fix-a-crash-with-XDMCP-error-handler.patch
(from rev 236527, 
xorg-server/trunk/v2-xserver-Fix-a-crash-with-XDMCP-error-handler.patch)
  xorg-server/repos/testing-i686/xorg-server.install
(from rev 236527, xorg-server/trunk/xorg-server.install)
  xorg-server/repos/testing-i686/xvfb-run
(from rev 236527, xorg-server/trunk/xvfb-run)
  xorg-server/repos/testing-i686/xvfb-run.1
(from rev 236527, xorg-server/trunk/xvfb-run.1)
  xorg-server/repos/testing-x86_64/
  
xorg-server/repos/testing-x86_64/0001-int10-Fix-error-check-for-pci_device_map_legacy.patch
(from rev 236527, 
xorg-server/trunk/0001-int10-Fix-error-check-for-pci_device_map_legacy.patch)
  
xorg-server/repos/testing-x86_64/0001-mi-Partial-pie-slice-filled-arcs-may-need-more-space.patch
(from rev 236527, 
xorg-server/trunk/0001-mi-Partial-pie-slice-filled-arcs-may-need-more-space.patch)
  xorg-server/repos/testing-x86_64/PKGBUILD
(from rev 236527, xorg-server/trunk/PKGBUILD)
  xorg-server/repos/testing-x86_64/autoconfig-sis.patch
(from rev 236527, xorg-server/trunk/autoconfig-sis.patch)
  xorg-server/repos/testing-x86_64/nvidia-drm-outputclass.conf
(from rev 236527, xorg-server/trunk/nvidia-drm-outputclass.conf)
  
xorg-server/repos/testing-x86_64/os-access-fix-regression-in-server-interpreted-auth.patch
(from rev 236527, 
xorg-server/trunk/os-access-fix-regression-in-server-interpreted-auth.patch)
  
xorg-server/repos/testing-x86_64/v2-xserver-Fix-a-crash-with-XDMCP-error-handler.patch
(from rev 236527, 
xorg-server/trunk/v2-xserver-Fix-a-crash-with-XDMCP-error-handler.patch)
  xorg-server/repos/testing-x86_64/xorg-server.install
(from rev 236527, xorg-server/trunk/xorg-server.install)
  xorg-server/repos/testing-x86_64/xvfb-run
(from rev 236527, xorg-server/trunk/xvfb-run)
  xorg-server/repos/testing-x86_64/xvfb-run.1
(from rev 236527, xorg-server/trunk/xvfb-run.1)

+
 testing-i686/0001-int10-Fix-error-check-for-pci_device_map_legacy.patch
|   47 +
 testing-i686/0001-mi-Partial-pie-slice-filled-arcs-may-need-more-space.patch   
|   42 +
 testing-i686/PKGBUILD  
|  237 
 testing-i686/autoconfig-sis.patch  
|   21 
 testing-i686/nvidia-drm-outputclass.conf   
|6 
 testing-i686/os-access-fix-regression-in-server-interpreted-auth.patch 
|   30 +
 testing-i686/v2-xserver-Fix-a-crash-with-XDMCP-error-handler.patch 
|   23 
 testing-i686/xorg-server.install   
|   18 
 testing-i686/xvfb-run  
|  180 ++
 testing-i686/xvfb-run.1
|  282 ++
 testing-x86_64/0001-int10-Fix-error-check-for-pci_device_map_legacy.patch  
|   47 +
 testing-x86_64/0001-mi-Partial-pie-slice-filled-arcs-may-need-more-space.patch 
|   42 +
 testing-x86_64/PKGBUILD
|  237 
 testing-x86_64/autoconfig-sis.patch
|   21 
 testing-x86_64/nvidia-drm-outputclass.conf 
|6 
 testing-x86_64/os-access-fix-regression-in-server-interpreted-auth.patch   
|   30 +
 testing-x86_64/v2-xserver-Fix-a-crash-with-XDMCP-error-handler.patch   
|   23 
 testing-x86_64/xorg-server.install 
|   18 
 testing-x86_64/xvfb-run
|  180 ++
 testing-x86_64/xvfb-run.1  
|  282 ++
 20 files changed,

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

2015-04-14 Thread Laurent Carlier
Date: Tuesday, April 14, 2015 @ 12:41:30
  Author: lcarlier
Revision: 236527

upgpkg: xorg-server 1.17.1-5

fix FS#43937

Added:
  
xorg-server/trunk/0001-mi-Partial-pie-slice-filled-arcs-may-need-more-space.patch
Modified:
  xorg-server/trunk/PKGBUILD

-+
 0001-mi-Partial-pie-slice-filled-arcs-may-need-more-space.patch |   42 
++
 PKGBUILD|   10 +-
 2 files changed, 49 insertions(+), 3 deletions(-)

Added: 0001-mi-Partial-pie-slice-filled-arcs-may-need-more-space.patch
===
--- 0001-mi-Partial-pie-slice-filled-arcs-may-need-more-space.patch 
(rev 0)
+++ 0001-mi-Partial-pie-slice-filled-arcs-may-need-more-space.patch 
2015-04-14 10:41:30 UTC (rev 236527)
@@ -0,0 +1,42 @@
+From 41932dfbc841a1adc6512d41085ea3f8ebecb42c Mon Sep 17 00:00:00 2001
+From: Keith Packard 
+Date: Wed, 8 Apr 2015 07:45:28 -0700
+Subject: [PATCH] mi: Partial pie-slice filled arcs may need more space for
+ spans
+
+The mi filled arc code estimates that a filled arc will produce no
+more spans than the arc is tall. This is true for most arcs except
+for pie-slice arcs strictly between 180 and 360 degrees where the missing
+portion of the arc faces up or down such that we get two spans on some
+scanlines.
+
+For those, we need to reserve room for another height/2 spans. This
+patch just does it for all partial pie-sliced arcs to make the test
+easier to understand; it's just over-allocating a bit of memory, so
+that's safe.
+
+Signed-off-by: Keith Packard 
+Reviewed-by: Adam Jackson 
+---
+ mi/mifillarc.c | 5 +
+ 1 file changed, 5 insertions(+)
+
+diff --git a/mi/mifillarc.c b/mi/mifillarc.c
+index 246d70f..888519e 100644
+--- a/mi/mifillarc.c
 b/mi/mifillarc.c
+@@ -660,6 +660,11 @@ miPolyFillArc(DrawablePtr pDraw, GCPtr pGC, int 
narcs_all, xArc * parcs)
+ if (narcs && nspans + arc->height > MAX_SPANS_PER_LOOP)
+ break;
+ nspans += arc->height;
++
++/* A pie-slice arc may add another pile of spans */
++if (pGC->arcMode == ArcPieSlice &&
++(-FULLCIRCLE < arc->angle2 && arc->angle2 < FULLCIRCLE))
++nspans += (arc->height + 1) >> 1;
+ }
+ 
+ pts = points = malloc (sizeof (DDXPointRec) * nspans +
+-- 
+2.3.5
+

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 10:26:17 UTC (rev 236526)
+++ PKGBUILD2015-04-14 10:41:30 UTC (rev 236527)
@@ -5,7 +5,7 @@
 pkgbase=xorg-server
 pkgname=('xorg-server' 'xorg-server-xephyr' 'xorg-server-xdmx' 
'xorg-server-xvfb' 'xorg-server-xnest' 'xorg-server-xwayland' 
'xorg-server-common' 'xorg-server-devel')
 pkgver=1.17.1
-pkgrel=4 # build first with 0.1 and then rebuild it after xf86-input-evdev 
rebuild
+pkgrel=5 # build first with 0.1 and then rebuild it after xf86-input-evdev 
rebuild
 arch=('i686' 'x86_64')
 license=('custom')
 url="http://xorg.freedesktop.org";
@@ -22,7 +22,8 @@
 xvfb-run.1
 os-access-fix-regression-in-server-interpreted-auth.patch
 v2-xserver-Fix-a-crash-with-XDMCP-error-handler.patch
-0001-int10-Fix-error-check-for-pci_device_map_legacy.patch)
+0001-int10-Fix-error-check-for-pci_device_map_legacy.patch
+0001-mi-Partial-pie-slice-filled-arcs-may-need-more-space.patch)
 validpgpkeys=('7B27A3F1A6E18CD9588B4AE8310180050905E40C'
   'C383B778255613DFDB409D91DB221A690011')
 sha256sums=('2bf8e9f6f0a710dec1d2472467bff1f4e247cb6dcd76eb469aafdc8a2d7db2ab'
@@ -32,7 +33,8 @@
 '2460adccd3362fefd4cdc5f1c70f332d7b578091fb9167bf88b5f91265bbd776'
 '8a9d76eecf8795ca645fb1ce261733965578e953f6606153ce001a0e15d036e8'
 'a73e33644682d9f430db987c192da0f7193907af50539669ebd59614a5ebd0f9'
-'2ea82cdbd695f21c935710847913ed58e22d3d5c0c18c96175a4a6cc1142c071')
+'2ea82cdbd695f21c935710847913ed58e22d3d5c0c18c96175a4a6cc1142c071'
+'ca89cc013844c5b50abfde4cc5e852ecdf4368f8b069ffd069a7100843c46e90')
 
 prepare() {
   cd "${pkgbase}-${pkgver}"
@@ -42,6 +44,8 @@
   patch -Np1 -i ../v2-xserver-Fix-a-crash-with-XDMCP-error-handler.patch
   # fix FS#43924, merged upstream
   patch -Np1 -i ../0001-int10-Fix-error-check-for-pci_device_map_legacy.patch
+  # fix FS#43937, merged upstream
+  patch -Np1 -i 
../0001-mi-Partial-pie-slice-filled-arcs-may-need-more-space.patch
 }
 
 build() {


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

2015-04-14 Thread Massimiliano Torromeo
Date: Tuesday, April 14, 2015 @ 12:29:31
  Author: mtorromeo
Revision: 131342

upgpkg: nmon 15d-1

Updated to 15d

Modified:
  nmon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 06:40:56 UTC (rev 131341)
+++ PKGBUILD2015-04-14 10:29:31 UTC (rev 131342)
@@ -2,7 +2,7 @@
 # Maintainer: Massimiliano Torromeo 
 
 pkgname=nmon
-pkgver=15c
+pkgver=15d
 pkgrel=1
 pkgdesc="AIX & Linux Performance Monitoring tool"
 arch=('i686' 'x86_64')
@@ -9,7 +9,7 @@
 url="http://nmon.sourceforge.net";
 license=('GPL')
 source=("http://downloads.sourceforge.net/${pkgname}/lmon$pkgver.c";)
-sha256sums=('0f8d2aa6047dddf4680f4270b47f9a7ea0008844d192d5ff5940e2bcef8fa5a7')
+sha256sums=('2ccdd7448be35c2305254dc5b2e6a2a10f3fc0ca132269cf6669ebe6ea64ffea')
 
 build() {
   cd ${srcdir}


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

2015-04-14 Thread Massimiliano Torromeo
Date: Tuesday, April 14, 2015 @ 12:29:48
  Author: mtorromeo
Revision: 131343

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-04-14 10:29:31 UTC (rev 131342)
+++ community-i686/PKGBUILD 2015-04-14 10:29:48 UTC (rev 131343)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-
-pkgname=nmon
-pkgver=15c
-pkgrel=1
-pkgdesc="AIX & Linux Performance Monitoring tool"
-arch=('i686' 'x86_64')
-url="http://nmon.sourceforge.net";
-license=('GPL')
-source=("http://downloads.sourceforge.net/${pkgname}/lmon$pkgver.c";)
-sha256sums=('0f8d2aa6047dddf4680f4270b47f9a7ea0008844d192d5ff5940e2bcef8fa5a7')
-
-build() {
-  cd ${srcdir}
-
-  cc -o nmon lmon$pkgver.c -g -O2 -D JFS -D GETUSER -Wall -D LARGEMEM 
-lncurses -g -D X86
-}
-
-package() {
-  cd ${srcdir}
-
-  install -D -m 0755 nmon "${pkgdir}/usr/bin/nmon"
-}

Copied: nmon/repos/community-i686/PKGBUILD (from rev 131342, 
nmon/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-04-14 10:29:48 UTC (rev 131343)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nmon
+pkgver=15d
+pkgrel=1
+pkgdesc="AIX & Linux Performance Monitoring tool"
+arch=('i686' 'x86_64')
+url="http://nmon.sourceforge.net";
+license=('GPL')
+source=("http://downloads.sourceforge.net/${pkgname}/lmon$pkgver.c";)
+sha256sums=('2ccdd7448be35c2305254dc5b2e6a2a10f3fc0ca132269cf6669ebe6ea64ffea')
+
+build() {
+  cd ${srcdir}
+
+  cc -o nmon lmon$pkgver.c -g -O2 -D JFS -D GETUSER -Wall -D LARGEMEM 
-lncurses -g -D X86
+}
+
+package() {
+  cd ${srcdir}
+
+  install -D -m 0755 nmon "${pkgdir}/usr/bin/nmon"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-04-14 10:29:31 UTC (rev 131342)
+++ community-x86_64/PKGBUILD   2015-04-14 10:29:48 UTC (rev 131343)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-
-pkgname=nmon
-pkgver=15c
-pkgrel=1
-pkgdesc="AIX & Linux Performance Monitoring tool"
-arch=('i686' 'x86_64')
-url="http://nmon.sourceforge.net";
-license=('GPL')
-source=("http://downloads.sourceforge.net/${pkgname}/lmon$pkgver.c";)
-sha256sums=('0f8d2aa6047dddf4680f4270b47f9a7ea0008844d192d5ff5940e2bcef8fa5a7')
-
-build() {
-  cd ${srcdir}
-
-  cc -o nmon lmon$pkgver.c -g -O2 -D JFS -D GETUSER -Wall -D LARGEMEM 
-lncurses -g -D X86
-}
-
-package() {
-  cd ${srcdir}
-
-  install -D -m 0755 nmon "${pkgdir}/usr/bin/nmon"
-}

Copied: nmon/repos/community-x86_64/PKGBUILD (from rev 131342, 
nmon/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-04-14 10:29:48 UTC (rev 131343)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nmon
+pkgver=15d
+pkgrel=1
+pkgdesc="AIX & Linux Performance Monitoring tool"
+arch=('i686' 'x86_64')
+url="http://nmon.sourceforge.net";
+license=('GPL')
+source=("http://downloads.sourceforge.net/${pkgname}/lmon$pkgver.c";)
+sha256sums=('2ccdd7448be35c2305254dc5b2e6a2a10f3fc0ca132269cf6669ebe6ea64ffea')
+
+build() {
+  cd ${srcdir}
+
+  cc -o nmon lmon$pkgver.c -g -O2 -D JFS -D GETUSER -Wall -D LARGEMEM 
-lncurses -g -D X86
+}
+
+package() {
+  cd ${srcdir}
+
+  install -D -m 0755 nmon "${pkgdir}/usr/bin/nmon"
+}


[arch-commits] Commit in plasma-mediacenter/kde-unstable (PKGBUILD)

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 12:26:17
  Author: arojas
Revision: 236526

New tarball

Modified:
  plasma-mediacenter/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-14 08:19:03 UTC (rev 236525)
+++ PKGBUILD2015-04-14 10:26:17 UTC (rev 236526)
@@ -13,7 +13,7 @@
 makedepends=(extra-cmake-modules)
 groups=(plasma)
 
source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";)
-md5sums=('27dbce5f7d428e7904733ab57c21bb28')
+md5sums=('aae7624fb04a608653e37cd1eae4e9f0')
 
 prepare() {
   mkdir -p build


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

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 10:19:03
  Author: arojas
Revision: 236525

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

Added:
  kwrited/repos/kde-unstable-i686/PKGBUILD
(from rev 236524, kwrited/kde-unstable/PKGBUILD)
  kwrited/repos/kde-unstable-x86_64/
  kwrited/repos/kde-unstable-x86_64/PKGBUILD
(from rev 236524, kwrited/kde-unstable/PKGBUILD)
Deleted:
  kwrited/repos/kde-unstable-i686/PKGBUILD

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

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2015-04-14 07:54:23 UTC (rev 236524)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 08:19:03 UTC (rev 236525)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=kwrited
-pkgver=5.2.95
-pkgrel=1
-pkgdesc='Kwrited'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/kwrited'
-license=('LGPL')
-depends=('kpty' 'knotifications')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-groups=('plasma')
-source=("http://download.kde.org/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz";)
-md5sums=('6d3edd20bf651ae3d0bf626bb8f1f314')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DLIB_INSTALL_DIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kwrited/repos/kde-unstable-i686/PKGBUILD (from rev 236524, 
kwrited/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 08:19:03 UTC (rev 236525)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=kwrited
+pkgver=5.2.95
+pkgrel=1
+pkgdesc='Kwrited'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kwrited'
+license=('LGPL')
+depends=('kpty' 'knotifications')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+groups=('plasma')
+source=("http://download.kde.org/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz";)
+md5sums=('6d3edd20bf651ae3d0bf626bb8f1f314')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DLIB_INSTALL_DIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kwrited/repos/kde-unstable-x86_64/PKGBUILD (from rev 236524, 
kwrited/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2015-04-14 08:19:03 UTC (rev 236525)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=kwrited
+pkgver=5.2.95
+pkgrel=1
+pkgdesc='Kwrited'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kwrited'
+license=('LGPL')
+depends=('kpty' 'knotifications')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+groups=('plasma')
+source=("http://download.kde.org/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz";)
+md5sums=('6d3edd20bf651ae3d0bf626bb8f1f314')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DLIB_INSTALL_DIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in plasma-mediacenter (5 files)

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 09:54:07
  Author: arojas
Revision: 236523

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

Added:
  plasma-mediacenter/repos/
  plasma-mediacenter/repos/kde-unstable-i686/
  plasma-mediacenter/repos/kde-unstable-i686/PKGBUILD
(from rev 236522, plasma-mediacenter/kde-unstable/PKGBUILD)
  plasma-mediacenter/repos/kde-unstable-x86_64/
  plasma-mediacenter/repos/kde-unstable-x86_64/PKGBUILD
(from rev 236522, plasma-mediacenter/kde-unstable/PKGBUILD)

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

Copied: plasma-mediacenter/repos/kde-unstable-i686/PKGBUILD (from rev 236522, 
plasma-mediacenter/kde-unstable/PKGBUILD)
===
--- repos/kde-unstable-i686/PKGBUILD(rev 0)
+++ repos/kde-unstable-i686/PKGBUILD2015-04-14 07:54:07 UTC (rev 236523)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Bhushan Shah 
+
+pkgname=plasma-mediacenter
+pkgver=5.2.95
+pkgrel=1
+pkgdesc="A mediacenter user interface based on KDE Plasma components"
+arch=(i686 x86_64)
+url="http://community.kde.org/Plasma/Plasma_Media_Center/";
+license=(GPL3)
+depends=(plasma-workspace baloo)
+makedepends=(extra-cmake-modules)
+groups=(plasma)
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";)
+md5sums=('27dbce5f7d428e7904733ab57c21bb28')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: plasma-mediacenter/repos/kde-unstable-x86_64/PKGBUILD (from rev 236522, 
plasma-mediacenter/kde-unstable/PKGBUILD)
===
--- repos/kde-unstable-x86_64/PKGBUILD  (rev 0)
+++ repos/kde-unstable-x86_64/PKGBUILD  2015-04-14 07:54:07 UTC (rev 236523)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Bhushan Shah 
+
+pkgname=plasma-mediacenter
+pkgver=5.2.95
+pkgrel=1
+pkgdesc="A mediacenter user interface based on KDE Plasma components"
+arch=(i686 x86_64)
+url="http://community.kde.org/Plasma/Plasma_Media_Center/";
+license=(GPL3)
+depends=(plasma-workspace baloo)
+makedepends=(extra-cmake-modules)
+groups=(plasma)
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";)
+md5sums=('27dbce5f7d428e7904733ab57c21bb28')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in plasma-sdk (5 files)

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 09:54:23
  Author: arojas
Revision: 236524

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

Added:
  plasma-sdk/repos/
  plasma-sdk/repos/kde-unstable-i686/
  plasma-sdk/repos/kde-unstable-i686/PKGBUILD
(from rev 236523, plasma-sdk/kde-unstable/PKGBUILD)
  plasma-sdk/repos/kde-unstable-x86_64/
  plasma-sdk/repos/kde-unstable-x86_64/PKGBUILD
(from rev 236523, plasma-sdk/kde-unstable/PKGBUILD)

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

Copied: plasma-sdk/repos/kde-unstable-i686/PKGBUILD (from rev 236523, 
plasma-sdk/kde-unstable/PKGBUILD)
===
--- repos/kde-unstable-i686/PKGBUILD(rev 0)
+++ repos/kde-unstable-i686/PKGBUILD2015-04-14 07:54:23 UTC (rev 236524)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=plasma-sdk
+pkgver=5.2.95
+pkgrel=1
+pkgdesc="Applications useful for Plasma development"
+arch=(i686 x86_64)
+url='https://projects.kde.org/projects/extragear/sdk/plasma-sdk'
+license=(LGPL)
+depends=(plasma-framework ktexteditor)
+makedepends=(extra-cmake-modules)
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";)
+md5sums=('d2ae70ecde0b39a133c11b71debe35f0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: plasma-sdk/repos/kde-unstable-x86_64/PKGBUILD (from rev 236523, 
plasma-sdk/kde-unstable/PKGBUILD)
===
--- repos/kde-unstable-x86_64/PKGBUILD  (rev 0)
+++ repos/kde-unstable-x86_64/PKGBUILD  2015-04-14 07:54:23 UTC (rev 236524)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=plasma-sdk
+pkgver=5.2.95
+pkgrel=1
+pkgdesc="Applications useful for Plasma development"
+arch=(i686 x86_64)
+url='https://projects.kde.org/projects/extragear/sdk/plasma-sdk'
+license=(LGPL)
+depends=(plasma-framework ktexteditor)
+makedepends=(extra-cmake-modules)
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";)
+md5sums=('d2ae70ecde0b39a133c11b71debe35f0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 09:53:51
  Author: arojas
Revision: 236522

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

Added:
  sddm-kcm/repos/kde-unstable-i686/
  sddm-kcm/repos/kde-unstable-i686/PKGBUILD
(from rev 236521, sddm-kcm/kde-unstable/PKGBUILD)
  sddm-kcm/repos/kde-unstable-x86_64/
  sddm-kcm/repos/kde-unstable-x86_64/PKGBUILD
(from rev 236521, sddm-kcm/kde-unstable/PKGBUILD)

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

Copied: sddm-kcm/repos/kde-unstable-i686/PKGBUILD (from rev 236521, 
sddm-kcm/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 07:53:51 UTC (rev 236522)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Maintainer: Antonio Rojas
+
+pkgname=sddm-kcm
+pkgver=5.2.95
+pkgrel=1
+pkgdesc='KDE Config Module for SDDM'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/sddm-kcm'
+license=('GPL')
+depends=('sddm' 'libxcursor' 'kio')
+makedepends=('extra-cmake-modules' 'kdoctools' 'qt5-tools')
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";)
+md5sums=('0787fc39fa0d53941f30deca7ccbb797')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DSYSCONF_INSTALL_DIR=/etc \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}
+

Copied: sddm-kcm/repos/kde-unstable-x86_64/PKGBUILD (from rev 236521, 
sddm-kcm/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2015-04-14 07:53:51 UTC (rev 236522)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Maintainer: Antonio Rojas
+
+pkgname=sddm-kcm
+pkgver=5.2.95
+pkgrel=1
+pkgdesc='KDE Config Module for SDDM'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/sddm-kcm'
+license=('GPL')
+depends=('sddm' 'libxcursor' 'kio')
+makedepends=('extra-cmake-modules' 'kdoctools' 'qt5-tools')
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";)
+md5sums=('0787fc39fa0d53941f30deca7ccbb797')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DSYSCONF_INSTALL_DIR=/etc \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}
+


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

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 09:53:35
  Author: arojas
Revision: 236521

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

Added:
  ksshaskpass/repos/kde-unstable-i686/
  ksshaskpass/repos/kde-unstable-i686/PKGBUILD
(from rev 236520, ksshaskpass/kde-unstable/PKGBUILD)
  ksshaskpass/repos/kde-unstable-i686/ksshaskpass.sh
(from rev 236520, ksshaskpass/kde-unstable/ksshaskpass.sh)
  ksshaskpass/repos/kde-unstable-x86_64/
  ksshaskpass/repos/kde-unstable-x86_64/PKGBUILD
(from rev 236520, ksshaskpass/kde-unstable/PKGBUILD)
  ksshaskpass/repos/kde-unstable-x86_64/ksshaskpass.sh
(from rev 236520, ksshaskpass/kde-unstable/ksshaskpass.sh)

+
 kde-unstable-i686/PKGBUILD |   43 +++
 kde-unstable-i686/ksshaskpass.sh   |1 
 kde-unstable-x86_64/PKGBUILD   |   43 +++
 kde-unstable-x86_64/ksshaskpass.sh |1 
 4 files changed, 88 insertions(+)

Copied: ksshaskpass/repos/kde-unstable-i686/PKGBUILD (from rev 236520, 
ksshaskpass/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 07:53:35 UTC (rev 236521)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: schuay 
+
+pkgname=ksshaskpass
+pkgver=5.2.95
+pkgrel=1
+pkgdesc='ssh-add helper that uses kwallet and kpassworddialog'
+url='https://projects.kde.org/projects/kde/workspace/ksshaskpass'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('kwallet')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+provides=('x11-ssh-askpass' 'ksshaskpass-frameworks')
+conflicts=('x11-ssh-askpass' 'ksshaskpass-frameworks')
+replaces=('ksshaskpass-frameworks')
+groups=('plasma')
+source=("http://download.kde.org/unstable/plasma/${pkgver}/${pkgname}-${pkgver}.tar.xz";
+"$pkgname.sh")
+md5sums=('834907306999c0a3f04d913b62d1b674'
+ '70396ba019ae05cc91502456f548caff')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../ksshaskpass-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  install -Dm755 "$srcdir"/ksshaskpass.sh \
+"${pkgdir}"/etc/profile.d/ksshaskpass.sh
+}

Copied: ksshaskpass/repos/kde-unstable-i686/ksshaskpass.sh (from rev 236520, 
ksshaskpass/kde-unstable/ksshaskpass.sh)
===
--- kde-unstable-i686/ksshaskpass.sh(rev 0)
+++ kde-unstable-i686/ksshaskpass.sh2015-04-14 07:53:35 UTC (rev 236521)
@@ -0,0 +1 @@
+test -f /usr/bin/ksshaskpass && export SSH_ASKPASS="/usr/bin/ksshaskpass"

Copied: ksshaskpass/repos/kde-unstable-x86_64/PKGBUILD (from rev 236520, 
ksshaskpass/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2015-04-14 07:53:35 UTC (rev 236521)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: schuay 
+
+pkgname=ksshaskpass
+pkgver=5.2.95
+pkgrel=1
+pkgdesc='ssh-add helper that uses kwallet and kpassworddialog'
+url='https://projects.kde.org/projects/kde/workspace/ksshaskpass'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('kwallet')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+provides=('x11-ssh-askpass' 'ksshaskpass-frameworks')
+conflicts=('x11-ssh-askpass' 'ksshaskpass-frameworks')
+replaces=('ksshaskpass-frameworks')
+groups=('plasma')
+source=("http://download.kde.org/unstable/plasma/${pkgver}/${pkgname}-${pkgver}.tar.xz";
+"$pkgname.sh")
+md5sums=('834907306999c0a3f04d913b62d1b674'
+ '70396ba019ae05cc91502456f548caff')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../ksshaskpass-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  install -Dm755 "$srcdir"/ksshaskpass.sh \
+"${pkgdir}"/etc/profile.d/ksshaskpass.sh
+}

Copied: ksshaskpass/repos/kde-unstable-x86_64/ksshaskpass.sh (from rev 236520, 
ksshaskpass/kde-unstable/ksshaskpass.sh)
===
--- kde-unstable-x86_64/ksshaskpass.sh  (rev 0)
+++ kde-unstable-x86_64/ksshaskpass.sh  2015-04-14 07:53:35 UTC (rev 236521)
@@ -0,0 +1 @@
+test -f /usr/bin/ksshaskpass && export SSH_ASKPASS="/usr/bin/ksshaskpass"


[arch-commits] Commit in kde-gtk-config/repos (6 files)

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 09:53:03
  Author: arojas
Revision: 236519

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

Added:
  kde-gtk-config/repos/kde-unstable-i686/
  kde-gtk-config/repos/kde-unstable-i686/PKGBUILD
(from rev 236518, kde-gtk-config/kde-unstable/PKGBUILD)
  kde-gtk-config/repos/kde-unstable-i686/kde-gtk-config.install
(from rev 236518, kde-gtk-config/kde-unstable/kde-gtk-config.install)
  kde-gtk-config/repos/kde-unstable-x86_64/
  kde-gtk-config/repos/kde-unstable-x86_64/PKGBUILD
(from rev 236518, kde-gtk-config/kde-unstable/PKGBUILD)
  kde-gtk-config/repos/kde-unstable-x86_64/kde-gtk-config.install
(from rev 236518, kde-gtk-config/kde-unstable/kde-gtk-config.install)

+
 kde-unstable-i686/PKGBUILD |   44 +++
 kde-unstable-i686/kde-gtk-config.install   |   12 +++
 kde-unstable-x86_64/PKGBUILD   |   44 +++
 kde-unstable-x86_64/kde-gtk-config.install |   12 +++
 4 files changed, 112 insertions(+)

Copied: kde-gtk-config/repos/kde-unstable-i686/PKGBUILD (from rev 236518, 
kde-gtk-config/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 07:53:03 UTC (rev 236519)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=kde-gtk-config
+pkgver=5.2.95
+pkgrel=1
+pkgdesc='GTK2 and GTK3 Configurator for KDE'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kde-gtk-config'
+license=('LGPL')
+depends=('knewstuff' 'kcmutils')
+makedepends=('extra-cmake-modules' 'gtk2' 'gtk3')
+optdepends=('gtk2: GTK2 apps support'
+'gtk3: GTK3 apps support')
+conflicts=('kde-gtk-config-frameworks')
+replaces=('kde-gtk-config-frameworks')
+groups=('plasma')
+install=$pkgname.install
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";)
+md5sums=('01b41c656a21b43ff5fea227be4c34b7')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib \
+-DSYSCONF_INSTALL_DIR=/etc \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: kde-gtk-config/repos/kde-unstable-i686/kde-gtk-config.install (from rev 
236518, kde-gtk-config/kde-unstable/kde-gtk-config.install)
===
--- kde-unstable-i686/kde-gtk-config.install(rev 0)
+++ kde-unstable-i686/kde-gtk-config.install2015-04-14 07:53:03 UTC (rev 
236519)
@@ -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: kde-gtk-config/repos/kde-unstable-x86_64/PKGBUILD (from rev 236518, 
kde-gtk-config/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2015-04-14 07:53:03 UTC (rev 236519)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=kde-gtk-config
+pkgver=5.2.95
+pkgrel=1
+pkgdesc='GTK2 and GTK3 Configurator for KDE'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kde-gtk-config'
+license=('LGPL')
+depends=('knewstuff' 'kcmutils')
+makedepends=('extra-cmake-modules' 'gtk2' 'gtk3')
+optdepends=('gtk2: GTK2 apps support'
+'gtk3: GTK3 apps support')
+conflicts=('kde-gtk-config-frameworks')
+replaces=('kde-gtk-config-frameworks')
+groups=('plasma')
+install=$pkgname.install
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";)
+md5sums=('01b41c656a21b43ff5fea227be4c34b7')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib \
+-DSYSCONF_INSTALL_DIR=/etc \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: kde-gtk-config/repos/kde-unstable-x86_64/kde-gtk-config.install (from 
rev 236518, kde-gtk-config/kde-unstable/kde-gtk-config.install)
===
--- kde-unstable-x86_64/kde-gtk-config.install  (rev 0)
+++ kde-unstable-x86_64/kde-gtk-config.install  2015-04-14 07:53:03 UTC (rev 
2365

[arch-commits] Commit in kscreen (7 files)

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 09:53:19
  Author: arojas
Revision: 236520

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

Added:
  kscreen/repos/
  kscreen/repos/kde-unstable-i686/
  kscreen/repos/kde-unstable-i686/PKGBUILD
(from rev 236519, kscreen/kde-unstable/PKGBUILD)
  kscreen/repos/kde-unstable-i686/kscreen.install
(from rev 236519, kscreen/kde-unstable/kscreen.install)
  kscreen/repos/kde-unstable-x86_64/
  kscreen/repos/kde-unstable-x86_64/PKGBUILD
(from rev 236519, kscreen/kde-unstable/PKGBUILD)
  kscreen/repos/kde-unstable-x86_64/kscreen.install
(from rev 236519, kscreen/kde-unstable/kscreen.install)

-+
 kde-unstable-i686/PKGBUILD  |   40 ++
 kde-unstable-i686/kscreen.install   |   11 +
 kde-unstable-x86_64/PKGBUILD|   40 ++
 kde-unstable-x86_64/kscreen.install |   11 +
 4 files changed, 102 insertions(+)

Copied: kscreen/repos/kde-unstable-i686/PKGBUILD (from rev 236519, 
kscreen/kde-unstable/PKGBUILD)
===
--- repos/kde-unstable-i686/PKGBUILD(rev 0)
+++ repos/kde-unstable-i686/PKGBUILD2015-04-14 07:53:19 UTC (rev 236520)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=kscreen
+pkgver=5.2.95
+pkgrel=1
+pkgdesc="KDE's screen management software"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kscreen'
+license=('LGPL')
+depends=('kxmlgui' 'libkscreen' 'qt5-graphicaleffects')
+makedepends=('extra-cmake-modules' 'python')
+conflicts=('kscreen-frameworks')
+replaces=('kscreen-frameworks')
+groups=('plasma')
+install=$pkgname.install
+source=("http://download.kde.org/unstable/plasma/${pkgver}/kscreen-$pkgver.tar.xz";)
+md5sums=('3d9069dd7c1fccef2535b60c12df9191')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kscreen-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: kscreen/repos/kde-unstable-i686/kscreen.install (from rev 236519, 
kscreen/kde-unstable/kscreen.install)
===
--- repos/kde-unstable-i686/kscreen.install (rev 0)
+++ repos/kde-unstable-i686/kscreen.install 2015-04-14 07:53:19 UTC (rev 
236520)
@@ -0,0 +1,11 @@
+post_install() {
+[[ -x xdg-icon-resource ]] && xdg-icon-resource forceupdate --theme 
hicolor &> /dev/null || true
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: kscreen/repos/kde-unstable-x86_64/PKGBUILD (from rev 236519, 
kscreen/kde-unstable/PKGBUILD)
===
--- repos/kde-unstable-x86_64/PKGBUILD  (rev 0)
+++ repos/kde-unstable-x86_64/PKGBUILD  2015-04-14 07:53:19 UTC (rev 236520)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=kscreen
+pkgver=5.2.95
+pkgrel=1
+pkgdesc="KDE's screen management software"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kscreen'
+license=('LGPL')
+depends=('kxmlgui' 'libkscreen' 'qt5-graphicaleffects')
+makedepends=('extra-cmake-modules' 'python')
+conflicts=('kscreen-frameworks')
+replaces=('kscreen-frameworks')
+groups=('plasma')
+install=$pkgname.install
+source=("http://download.kde.org/unstable/plasma/${pkgver}/kscreen-$pkgver.tar.xz";)
+md5sums=('3d9069dd7c1fccef2535b60c12df9191')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kscreen-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: kscreen/repos/kde-unstable-x86_64/kscreen.install (from rev 236519, 
kscreen/kde-unstable/kscreen.install)
===
--- repos/kde-unstable-x86_64/kscreen.install   (rev 0)
+++ repos/kde-unstable-x86_64/kscreen.install   2015-04-14 07:53:19 UTC (rev 
236520)
@@ -0,0 +1,11 @@
+post_install() {
+[[ -x xdg-icon-resource ]] && xdg-icon-resource forceupdate --theme 
hicolor &> /dev/null || true
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}


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

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 09:52:48
  Author: arojas
Revision: 236518

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

Added:
  bluedevil/repos/kde-unstable-i686/
  bluedevil/repos/kde-unstable-i686/PKGBUILD
(from rev 236517, bluedevil/kde-unstable/PKGBUILD)
  bluedevil/repos/kde-unstable-i686/bluedevil.install
(from rev 236517, bluedevil/kde-unstable/bluedevil.install)
  bluedevil/repos/kde-unstable-x86_64/
  bluedevil/repos/kde-unstable-x86_64/PKGBUILD
(from rev 236517, bluedevil/kde-unstable/PKGBUILD)
  bluedevil/repos/kde-unstable-x86_64/bluedevil.install
(from rev 236517, bluedevil/kde-unstable/bluedevil.install)

---+
 kde-unstable-i686/PKGBUILD|   42 
 kde-unstable-i686/bluedevil.install   |   12 +
 kde-unstable-x86_64/PKGBUILD  |   42 
 kde-unstable-x86_64/bluedevil.install |   12 +
 4 files changed, 108 insertions(+)

Copied: bluedevil/repos/kde-unstable-i686/PKGBUILD (from rev 236517, 
bluedevil/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 07:52:48 UTC (rev 236518)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=bluedevil
+pkgver=5.2.95
+pkgrel=1
+epoch=1
+pkgdesc='Integrate the Bluetooth technology within KDE workspace and 
applications'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/bluedevil'
+license=('GPL2')
+depends=('bluez-qt' 'kio')
+makedepends=('extra-cmake-modules')
+conflicts=('bluedevil-frameworks')
+replaces=('bluedevil-frameworks')
+install="$pkgname.install"
+groups=('plasma')
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";)
+md5sums=('85953cbefdec95e0fb97c0fdc873b0e5')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: bluedevil/repos/kde-unstable-i686/bluedevil.install (from rev 236517, 
bluedevil/kde-unstable/bluedevil.install)
===
--- kde-unstable-i686/bluedevil.install (rev 0)
+++ kde-unstable-i686/bluedevil.install 2015-04-14 07:52:48 UTC (rev 236518)
@@ -0,0 +1,12 @@
+post_install() {
+  update-mime-database usr/share/mime &> /dev/null
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: bluedevil/repos/kde-unstable-x86_64/PKGBUILD (from rev 236517, 
bluedevil/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2015-04-14 07:52:48 UTC (rev 236518)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=bluedevil
+pkgver=5.2.95
+pkgrel=1
+epoch=1
+pkgdesc='Integrate the Bluetooth technology within KDE workspace and 
applications'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/bluedevil'
+license=('GPL2')
+depends=('bluez-qt' 'kio')
+makedepends=('extra-cmake-modules')
+conflicts=('bluedevil-frameworks')
+replaces=('bluedevil-frameworks')
+install="$pkgname.install"
+groups=('plasma')
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";)
+md5sums=('85953cbefdec95e0fb97c0fdc873b0e5')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: bluedevil/repos/kde-unstable-x86_64/bluedevil.install (from rev 236517, 
bluedevil/kde-unstable/bluedevil.install)
===
--- kde-unstable-x86_64/bluedevil.install   (rev 0)
+++ kde-unstable-x86_64/bluedevil.install   2015-04-14 07:52:48 UTC (rev 
236518)
@@ -0,0 +1,12 @@
+post_install() {
+  update-mime-database usr/share/mime &> /dev/null
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


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

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 09:52:09
  Author: arojas
Revision: 236516

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

Added:
  khelpcenter/repos/kde-unstable-i686/PKGBUILD
(from rev 236515, khelpcenter/kde-unstable/PKGBUILD)
  khelpcenter/repos/kde-unstable-x86_64/PKGBUILD
(from rev 236515, khelpcenter/kde-unstable/PKGBUILD)
Deleted:
  khelpcenter/repos/kde-unstable-i686/PKGBUILD
  khelpcenter/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2015-04-14 07:51:50 UTC (rev 236515)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 07:52:09 UTC (rev 236516)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=khelpcenter
-pkgver=5.2.2
-pkgrel=3
-pkgdesc="Application to show KDE Applications' documentation"
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/khelpcenter'
-license=('LGPL')
-depends=('khtml' 'kdelibs4support' 'kcmutils' 'kdoctools')
-makedepends=('extra-cmake-modules')
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz";)
-md5sums=('e1fe62c0df75e99cdd91de86709727ca')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: khelpcenter/repos/kde-unstable-i686/PKGBUILD (from rev 236515, 
khelpcenter/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 07:52:09 UTC (rev 236516)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=khelpcenter
+pkgver=5.2.95
+pkgrel=1
+pkgdesc="Application to show KDE Applications' documentation"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/khelpcenter'
+license=('LGPL')
+depends=('khtml' 'kdelibs4support' 'kcmutils' 'kdoctools')
+makedepends=('extra-cmake-modules')
+source=("http://download.kde.org/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz";)
+md5sums=('12b712aa2ccd3f9a02d0a5b9f820c35c')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2015-04-14 07:51:50 UTC (rev 236515)
+++ kde-unstable-x86_64/PKGBUILD2015-04-14 07:52:09 UTC (rev 236516)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=khelpcenter
-pkgver=5.2.2
-pkgrel=3
-pkgdesc="Application to show KDE Applications' documentation"
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/khelpcenter'
-license=('LGPL')
-depends=('khtml' 'kdelibs4support' 'kcmutils' 'kdoctools')
-makedepends=('extra-cmake-modules')
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz";)
-md5sums=('e1fe62c0df75e99cdd91de86709727ca')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: khelpcenter/repos/kde-unstable-x86_64/PKGBUILD (from rev 236515, 
khelpcenter/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2015-04-14 07:52:09 UTC (rev 236516)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=khelpcenter
+pkgver=5.2.95
+pkgrel=1
+pkgdesc="Application to show KDE Applications' documentation"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/khelpcenter'

[arch-commits] Commit in kdeplasma-addons (7 files)

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 09:52:30
  Author: arojas
Revision: 236517

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

Added:
  kdeplasma-addons/repos/
  kdeplasma-addons/repos/kde-unstable-i686/
  kdeplasma-addons/repos/kde-unstable-i686/PKGBUILD
(from rev 236516, kdeplasma-addons/kde-unstable/PKGBUILD)
  kdeplasma-addons/repos/kde-unstable-i686/kdeplasma-addons.install
(from rev 236516, kdeplasma-addons/kde-unstable/kdeplasma-addons.install)
  kdeplasma-addons/repos/kde-unstable-x86_64/
  kdeplasma-addons/repos/kde-unstable-x86_64/PKGBUILD
(from rev 236516, kdeplasma-addons/kde-unstable/PKGBUILD)
  kdeplasma-addons/repos/kde-unstable-x86_64/kdeplasma-addons.install
(from rev 236516, kdeplasma-addons/kde-unstable/kdeplasma-addons.install)

--+
 kde-unstable-i686/PKGBUILD   |   42 +
 kde-unstable-i686/kdeplasma-addons.install   |   11 ++
 kde-unstable-x86_64/PKGBUILD |   42 +
 kde-unstable-x86_64/kdeplasma-addons.install |   11 ++
 4 files changed, 106 insertions(+)

Copied: kdeplasma-addons/repos/kde-unstable-i686/PKGBUILD (from rev 236516, 
kdeplasma-addons/kde-unstable/PKGBUILD)
===
--- repos/kde-unstable-i686/PKGBUILD(rev 0)
+++ repos/kde-unstable-i686/PKGBUILD2015-04-14 07:52:30 UTC (rev 236517)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeplasma-addons
+pkgver=5.2.95
+pkgrel=1
+pkgdesc='All kind of addons to improve your Plasma experience'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kdeplasma-addons'
+license=('LGPL')
+depends=('krunner' 'kdelibs4support' 'knewstuff' 'kross')
+makedepends=('extra-cmake-modules' 'kdoctools' 'libibus' 'scim')
+optdepends=('ibus: kimpanel IBUS support'
+'scim: kimpanel SCIM support')
+install="${pkgname}.install"
+conflicts=('kdebase-workspace' 'kdeplasma-addons-frameworks')
+replaces=('kdeplasma-addons-frameworks')
+groups=('plasma')
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";)
+md5sums=('e134c4d5b5dd7abb6ac8a688c53c61c6')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdeplasma-addons/repos/kde-unstable-i686/kdeplasma-addons.install (from 
rev 236516, kdeplasma-addons/kde-unstable/kdeplasma-addons.install)
===
--- repos/kde-unstable-i686/kdeplasma-addons.install
(rev 0)
+++ repos/kde-unstable-i686/kdeplasma-addons.install2015-04-14 07:52:30 UTC 
(rev 236517)
@@ -0,0 +1,11 @@
+post_install() {
+[[ -x xdg-icon-resource ]] && xdg-icon-resource forceupdate --theme 
hicolor &> /dev/null || true
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: kdeplasma-addons/repos/kde-unstable-x86_64/PKGBUILD (from rev 236516, 
kdeplasma-addons/kde-unstable/PKGBUILD)
===
--- repos/kde-unstable-x86_64/PKGBUILD  (rev 0)
+++ repos/kde-unstable-x86_64/PKGBUILD  2015-04-14 07:52:30 UTC (rev 236517)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeplasma-addons
+pkgver=5.2.95
+pkgrel=1
+pkgdesc='All kind of addons to improve your Plasma experience'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kdeplasma-addons'
+license=('LGPL')
+depends=('krunner' 'kdelibs4support' 'knewstuff' 'kross')
+makedepends=('extra-cmake-modules' 'kdoctools' 'libibus' 'scim')
+optdepends=('ibus: kimpanel IBUS support'
+'scim: kimpanel SCIM support')
+install="${pkgname}.install"
+conflicts=('kdebase-workspace' 'kdeplasma-addons-frameworks')
+replaces=('kdeplasma-addons-frameworks')
+groups=('plasma')
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz";)
+md5sums=('e134c4d5b5dd7abb6ac8a688c53c61c6')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdeplasma-addons/repos/kde-unstable-x86_64/kdeplasma-addons.install 
(from rev 236516, kdeplasma-addons/kde-unstable/kdeplasma-addons.install)
==

[arch-commits] Commit in kwrited/repos (kde-unstable-i686 kde-unstable-i686/PKGBUILD)

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 09:51:50
  Author: arojas
Revision: 236515

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

Added:
  kwrited/repos/kde-unstable-i686/
  kwrited/repos/kde-unstable-i686/PKGBUILD
(from rev 236514, kwrited/kde-unstable/PKGBUILD)

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

Copied: kwrited/repos/kde-unstable-i686/PKGBUILD (from rev 236514, 
kwrited/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 07:51:50 UTC (rev 236515)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=kwrited
+pkgver=5.2.95
+pkgrel=1
+pkgdesc='Kwrited'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kwrited'
+license=('LGPL')
+depends=('kpty' 'knotifications')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+groups=('plasma')
+source=("http://download.kde.org/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz";)
+md5sums=('6d3edd20bf651ae3d0bf626bb8f1f314')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DLIB_INSTALL_DIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 09:50:58
  Author: arojas
Revision: 236513

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

Added:
  plasma-desktop/repos/kde-unstable-i686/
  plasma-desktop/repos/kde-unstable-i686/PKGBUILD
(from rev 236512, plasma-desktop/kde-unstable/PKGBUILD)
  plasma-desktop/repos/kde-unstable-i686/plasma-desktop.install
(from rev 236512, plasma-desktop/kde-unstable/plasma-desktop.install)
  plasma-desktop/repos/kde-unstable-x86_64/
  plasma-desktop/repos/kde-unstable-x86_64/PKGBUILD
(from rev 236512, plasma-desktop/kde-unstable/PKGBUILD)
  plasma-desktop/repos/kde-unstable-x86_64/plasma-desktop.install
(from rev 236512, plasma-desktop/kde-unstable/plasma-desktop.install)

+
 kde-unstable-i686/PKGBUILD |   48 +++
 kde-unstable-i686/plasma-desktop.install   |   12 ++
 kde-unstable-x86_64/PKGBUILD   |   48 +++
 kde-unstable-x86_64/plasma-desktop.install |   12 ++
 4 files changed, 120 insertions(+)

Copied: plasma-desktop/repos/kde-unstable-i686/PKGBUILD (from rev 236512, 
plasma-desktop/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 07:50:58 UTC (rev 236513)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=plasma-desktop
+pkgver=5.2.95
+pkgrel=1
+pkgdesc='KDE Plasma Desktop'
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+depends=('powerdevil' 'polkit-kde-agent'
+ 'libcanberra' 'kwin' 'libusb-compat' 'libxkbfile' 'kmenuedit'
+ 'systemsettings' 'ksysguard' 'kpeople' 'baloo')
+makedepends=('extra-cmake-modules' 'kdoctools' 'boost' 'xf86-input-synaptics' 
'xorg-server-devel')
+optdepends=('plasma-nm: Network manager applet')
+conflicts=('kdebase-workspace' 'kcm-touchpad-frameworks')
+replaces=('kcm-touchpad-frameworks')
+install="${pkgname}.install"
+groups=('plasma')
+source=("http://download.kde.org/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz";)
+md5sums=('0117ad0616bc39b7ef9a43c23580f96f')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+
+# Rename kcfg files to avoid conflicting with kdebase-kdepasswd
+  mv "$pkgdir"/usr/share/config.kcfg/kcm_useraccount{,5}.kcfg
+  mv "$pkgdir"/usr/share/config.kcfg/kcm_useraccount_pass{,5}.kcfg
+}

Copied: plasma-desktop/repos/kde-unstable-i686/plasma-desktop.install (from rev 
236512, plasma-desktop/kde-unstable/plasma-desktop.install)
===
--- kde-unstable-i686/plasma-desktop.install(rev 0)
+++ kde-unstable-i686/plasma-desktop.install2015-04-14 07:50:58 UTC (rev 
236513)
@@ -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: plasma-desktop/repos/kde-unstable-x86_64/PKGBUILD (from rev 236512, 
plasma-desktop/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2015-04-14 07:50:58 UTC (rev 236513)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=plasma-desktop
+pkgver=5.2.95
+pkgrel=1
+pkgdesc='KDE Plasma Desktop'
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+depends=('powerdevil' 'polkit-kde-agent'
+ 'libcanberra' 'kwin' 'libusb-compat' 'libxkbfile' 'kmenuedit'
+ 'systemsettings' 'ksysguard' 'kpeople' 'baloo')
+makedepends=('extra-cmake-modules' 'kdoctools' 'boost' 'xf86-input-synaptics' 
'xorg-server-devel')
+optdepends=('plasma-nm: Network manager applet')
+conflicts=('kdebase-workspace' 'kcm-touchpad-frameworks')
+replaces=('kcm-touchpad-frameworks')
+install="${pkgname}.install"
+groups=('plasma')
+source=("http://download.kde.org/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz";)
+md5sums=('0117ad0616bc39b7ef9a43c23580f96f')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+pac

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

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 09:51:37
  Author: arojas
Revision: 236514

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

Added:
  plasma-nm/repos/kde-unstable-i686/
  plasma-nm/repos/kde-unstable-i686/PKGBUILD
(from rev 236513, plasma-nm/kde-unstable/PKGBUILD)
  plasma-nm/repos/kde-unstable-x86_64/
  plasma-nm/repos/kde-unstable-x86_64/PKGBUILD
(from rev 236513, plasma-nm/kde-unstable/PKGBUILD)

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

Copied: plasma-nm/repos/kde-unstable-i686/PKGBUILD (from rev 236513, 
plasma-nm/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2015-04-14 07:51:37 UTC (rev 236514)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=plasma-nm
+pkgver=5.2.95
+pkgrel=1
+pkgdesc='Plasma applet written in QML for managing network connections'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/plasma-nm'
+license=('GPL2')
+depends=('plasma-framework' 'libmm-qt5' 'networkmanager-qt' 'kdelibs4support')
+makedepends=('extra-cmake-modules' 'kdoctools' 'openconnect' 
'mobile-broadband-provider-info'
+ 'python' 'kdelibs4support')
+optdepends=('mobile-broadband-provider-info: Database of mobile broadband 
service providers'
+'openconnect: Cisco AnyConnect VPN plugin')
+groups=('plasma')
+source=("http://download.kde.org/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz";)
+md5sums=('27997aec60ec54d902999501183fa1a6')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: plasma-nm/repos/kde-unstable-x86_64/PKGBUILD (from rev 236513, 
plasma-nm/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2015-04-14 07:51:37 UTC (rev 236514)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=plasma-nm
+pkgver=5.2.95
+pkgrel=1
+pkgdesc='Plasma applet written in QML for managing network connections'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/plasma-nm'
+license=('GPL2')
+depends=('plasma-framework' 'libmm-qt5' 'networkmanager-qt' 'kdelibs4support')
+makedepends=('extra-cmake-modules' 'kdoctools' 'openconnect' 
'mobile-broadband-provider-info'
+ 'python' 'kdelibs4support')
+optdepends=('mobile-broadband-provider-info: Database of mobile broadband 
service providers'
+'openconnect: Cisco AnyConnect VPN plugin')
+groups=('plasma')
+source=("http://download.kde.org/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz";)
+md5sums=('27997aec60ec54d902999501183fa1a6')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in polkit-kde-agent (5 files)

2015-04-14 Thread Antonio Rojas
Date: Tuesday, April 14, 2015 @ 09:49:07
  Author: arojas
Revision: 236510

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

Added:
  polkit-kde-agent/repos/
  polkit-kde-agent/repos/kde-unstable-i686/
  polkit-kde-agent/repos/kde-unstable-i686/PKGBUILD
(from rev 236509, polkit-kde-agent/kde-unstable/PKGBUILD)
  polkit-kde-agent/repos/kde-unstable-x86_64/
  polkit-kde-agent/repos/kde-unstable-x86_64/PKGBUILD
(from rev 236509, polkit-kde-agent/kde-unstable/PKGBUILD)

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

Copied: polkit-kde-agent/repos/kde-unstable-i686/PKGBUILD (from rev 236509, 
polkit-kde-agent/kde-unstable/PKGBUILD)
===
--- repos/kde-unstable-i686/PKGBUILD(rev 0)
+++ repos/kde-unstable-i686/PKGBUILD2015-04-14 07:49:07 UTC (rev 236510)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=polkit-kde-agent
+pkgver=5.2.95
+pkgrel=1
+pkgdesc='Daemon providing a polkit authentication UI for KDE'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/polkit-kde-agent-1'
+license=('LGPL')
+depends=('knotifications')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+conflicts=('polkit-kde-frameworks')
+replaces=('polkit-kde-frameworks')
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-1-$pkgver.tar.xz";)
+md5sums=('66a4dae5bf7033758870a991e8489442')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-1-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib/polkit-kde \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: polkit-kde-agent/repos/kde-unstable-x86_64/PKGBUILD (from rev 236509, 
polkit-kde-agent/kde-unstable/PKGBUILD)
===
--- repos/kde-unstable-x86_64/PKGBUILD  (rev 0)
+++ repos/kde-unstable-x86_64/PKGBUILD  2015-04-14 07:49:07 UTC (rev 236510)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=polkit-kde-agent
+pkgver=5.2.95
+pkgrel=1
+pkgdesc='Daemon providing a polkit authentication UI for KDE'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/polkit-kde-agent-1'
+license=('LGPL')
+depends=('knotifications')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+conflicts=('polkit-kde-frameworks')
+replaces=('polkit-kde-frameworks')
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-1-$pkgver.tar.xz";)
+md5sums=('66a4dae5bf7033758870a991e8489442')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-1-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib/polkit-kde \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


  1   2   >