[arch-commits] Commit in python-requests/trunk (PKGBUILD certs.patch)

2014-09-04 Thread Massimiliano Torromeo
Date: Thursday, September 4, 2014 @ 09:22:47
  Author: mtorromeo
Revision: 118233

upgpkg: python-requests 2.4.0-2

Remove certifi hard-dependency

Modified:
  python-requests/trunk/PKGBUILD
  python-requests/trunk/certs.patch

-+
 PKGBUILD|4 ++--
 certs.patch |   13 +
 2 files changed, 15 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 01:02:19 UTC (rev 118232)
+++ PKGBUILD2014-09-04 07:22:47 UTC (rev 118233)
@@ -4,7 +4,7 @@
 pkgbase=python-requests
 pkgname=(python-requests python2-requests)
 pkgver=2.4.0
-pkgrel=1
+pkgrel=2
 _libname=requests
 pkgdesc=Python HTTP for Humans.
 url=http://python-requests.org;
@@ -15,7 +15,7 @@
 certs.patch
 226b5c7b0aafc3cb744eb79a666d9a1bd0803a47.patch)
 sha256sums=('7007e03cbc73e357b5055c6ea0ad6e447e2afa00f1a1f843cd792a1ebaa3763e'
-'e35e779d8640f35ea2ea51112f967d927b44d59483af4cd2c0945c84e79bb7c7'
+'23bbd144905192edb23082c017292356eedbb3b41856c2a46505a2acb4ace831'
 '45cbe79fcf452eebb93444de7b78b35c679a77f268ea7286f5899bdb9ea7153a')
 
 prepare() {

Modified: certs.patch
===
--- certs.patch 2014-09-04 01:02:19 UTC (rev 118232)
+++ certs.patch 2014-09-04 07:22:47 UTC (rev 118233)
@@ -11,3 +11,16 @@
  
  if __name__ == '__main__':
  print(where())
+diff --git a/setup.py b/setup.py
+index e39d13b..3b86d3c 100755
+--- a/setup.py
 b/setup.py
+@@ -27,7 +27,7 @@ packages = [
+ 'requests.packages.urllib3.packages.ssl_match_hostname',
+ ]
+ 
+-requires = ['certifi']
++requires = []
+ 
+ with open('README.rst', 'r', 'utf-8') as f:
+ readme = f.read()



[arch-commits] Commit in python-requests/repos/community-any (PKGBUILD certs.patch)

2014-09-04 Thread Massimiliano Torromeo
Date: Thursday, September 4, 2014 @ 09:24:06
  Author: mtorromeo
Revision: 118234

archrelease: copy trunk to community-any

Deleted:
  python-requests/repos/community-any/PKGBUILD
  python-requests/repos/community-any/certs.patch

-+
 PKGBUILD|   62 --
 certs.patch |   13 
 2 files changed, 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-04 07:22:47 UTC (rev 118233)
+++ PKGBUILD2014-09-04 07:24:06 UTC (rev 118234)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-
-pkgbase=python-requests
-pkgname=(python-requests python2-requests)
-pkgver=2.4.0
-pkgrel=1
-_libname=requests
-pkgdesc=Python HTTP for Humans.
-url=http://python-requests.org;
-makedepends=('python-setuptools' 'python2-setuptools')
-license=('Apache')
-arch=('any')
-source=(http://pypi.python.org/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz
-certs.patch
-226b5c7b0aafc3cb744eb79a666d9a1bd0803a47.patch)
-sha256sums=('7007e03cbc73e357b5055c6ea0ad6e447e2afa00f1a1f843cd792a1ebaa3763e'
-'e35e779d8640f35ea2ea51112f967d927b44d59483af4cd2c0945c84e79bb7c7'
-'45cbe79fcf452eebb93444de7b78b35c679a77f268ea7286f5899bdb9ea7153a')
-
-prepare() {
-cd $srcdir/$_libname-$pkgver
-patch -p1 -i $srcdir/certs.patch
-patch -p1 -i $srcdir/226b5c7b0aafc3cb744eb79a666d9a1bd0803a47.patch
-sed -r 's#(\W|^)requests/cacert\.pem(\W|$)##' -i MANIFEST.in
-rm -f requests/cacert.pem
-}
-
-build() {
-cd $srcdir/$_libname-$pkgver
-
-rm -rf ../buildpy3; mkdir ../buildpy3
-python setup.py build -b ../buildpy3
-
-rm -rf ../buildpy2; mkdir ../buildpy2
-python2 setup.py build -b ../buildpy2
-find ../buildpy2 -name \*.py -exec sed -r 's|^#!(.*)python$|#!\1python2|' 
-i {} +
-}
-
-check() {
-cd $srcdir/$_libname-$pkgver
-test -f $(python -m requests.certs)
-}
-
-package_python-requests() {
-depends=(python)
-
-cd $srcdir/$_libname-$pkgver
-rm -rf build; ln -s ../buildpy3 build
-python setup.py install --skip-build -O1 --root=$pkgdir
-install -m0644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-requests() {
-depends=(python2)
-optdepends=('python2-ndg-httpsclient: HTTPS requests with SNI support'
-'python2-grequests: asynchronous requests with gevent')
-
-cd $srcdir/$_libname-$pkgver
-rm -rf build; ln -s ../buildpy2 build
-python2 setup.py install --skip-build -O1 --root=$pkgdir
-}

Deleted: certs.patch
===
--- certs.patch 2014-09-04 07:22:47 UTC (rev 118233)
+++ certs.patch 2014-09-04 07:24:06 UTC (rev 118234)
@@ -1,13 +0,0 @@
-diff --git a/requests/certs.py b/requests/certs.py
-index 07e6475..33db011 100644
 a/requests/certs.py
-+++ b/requests/certs.py
-@@ -19,7 +19,7 @@ except ImportError:
- def where():
- Return the preferred certificate bundle.
- # vendored bundle inside Requests
--return os.path.join(os.path.dirname(__file__), 'cacert.pem')
-+return /etc/ssl/certs/ca-certificates.crt
- 
- if __name__ == '__main__':
- print(where())



[arch-commits] Commit in python-requests/repos/community-any (3 files)

2014-09-04 Thread Massimiliano Torromeo
Date: Thursday, September 4, 2014 @ 09:26:09
  Author: mtorromeo
Revision: 118235

archrelease: copy trunk to community-any

Added:
  python-requests/repos/community-any/PKGBUILD
  python-requests/repos/community-any/certs.patch
Deleted:
  
python-requests/repos/community-any/226b5c7b0aafc3cb744eb79a666d9a1bd0803a47.patch

+
 226b5c7b0aafc3cb744eb79a666d9a1bd0803a47.patch |   34 
 PKGBUILD   |   62 +++
 certs.patch|   26 +
 3 files changed, 88 insertions(+), 34 deletions(-)

Deleted: 226b5c7b0aafc3cb744eb79a666d9a1bd0803a47.patch
===
--- 226b5c7b0aafc3cb744eb79a666d9a1bd0803a47.patch  2014-09-04 07:24:06 UTC 
(rev 118234)
+++ 226b5c7b0aafc3cb744eb79a666d9a1bd0803a47.patch  2014-09-04 07:26:09 UTC 
(rev 118235)
@@ -1,34 +0,0 @@
-From 226b5c7b0aafc3cb744eb79a666d9a1bd0803a47 Mon Sep 17 00:00:00 2001
-From: Massimiliano Torromeo massimiliano.torro...@gmail.com
-Date: Wed, 3 Sep 2014 09:40:27 +0200
-Subject: [PATCH] Open README and HISTORY as utf-8 encoded files (fixes #2196)
-

- setup.py | 6 --
- 1 file changed, 4 insertions(+), 2 deletions(-)
-
-diff --git a/setup.py b/setup.py
-index 9540a47..e39d13b 100755
 a/setup.py
-+++ b/setup.py
-@@ -5,6 +5,8 @@
- 
- import requests
- 
-+from codecs import open
-+
- try:
- from setuptools import setup
- except ImportError:
-@@ -27,9 +29,9 @@
- 
- requires = ['certifi']
- 
--with open('README.rst') as f:
-+with open('README.rst', 'r', 'utf-8') as f:
- readme = f.read()
--with open('HISTORY.rst') as f:
-+with open('HISTORY.rst', 'r', 'utf-8') as f:
- history = f.read()
- 
- setup(

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-04 07:26:09 UTC (rev 118235)
@@ -0,0 +1,62 @@
+# $Id: PKGBUILD 118233 2014-09-04 07:22:47Z mtorromeo $
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+
+pkgbase=python-requests
+pkgname=(python-requests python2-requests)
+pkgver=2.4.0
+pkgrel=2
+_libname=requests
+pkgdesc=Python HTTP for Humans.
+url=http://python-requests.org;
+makedepends=('python-setuptools' 'python2-setuptools')
+license=('Apache')
+arch=('any')
+source=(http://pypi.python.org/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz
+certs.patch
+226b5c7b0aafc3cb744eb79a666d9a1bd0803a47.patch)
+sha256sums=('7007e03cbc73e357b5055c6ea0ad6e447e2afa00f1a1f843cd792a1ebaa3763e'
+'23bbd144905192edb23082c017292356eedbb3b41856c2a46505a2acb4ace831'
+'45cbe79fcf452eebb93444de7b78b35c679a77f268ea7286f5899bdb9ea7153a')
+
+prepare() {
+cd $srcdir/$_libname-$pkgver
+patch -p1 -i $srcdir/certs.patch
+patch -p1 -i $srcdir/226b5c7b0aafc3cb744eb79a666d9a1bd0803a47.patch
+sed -r 's#(\W|^)requests/cacert\.pem(\W|$)##' -i MANIFEST.in
+rm -f requests/cacert.pem
+}
+
+build() {
+cd $srcdir/$_libname-$pkgver
+
+rm -rf ../buildpy3; mkdir ../buildpy3
+python setup.py build -b ../buildpy3
+
+rm -rf ../buildpy2; mkdir ../buildpy2
+python2 setup.py build -b ../buildpy2
+find ../buildpy2 -name \*.py -exec sed -r 's|^#!(.*)python$|#!\1python2|' 
-i {} +
+}
+
+check() {
+cd $srcdir/$_libname-$pkgver
+test -f $(python -m requests.certs)
+}
+
+package_python-requests() {
+depends=(python)
+
+cd $srcdir/$_libname-$pkgver
+rm -rf build; ln -s ../buildpy3 build
+python setup.py install --skip-build -O1 --root=$pkgdir
+install -m0644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-requests() {
+depends=(python2)
+optdepends=('python2-ndg-httpsclient: HTTPS requests with SNI support'
+'python2-grequests: asynchronous requests with gevent')
+
+cd $srcdir/$_libname-$pkgver
+rm -rf build; ln -s ../buildpy2 build
+python2 setup.py install --skip-build -O1 --root=$pkgdir
+}

Added: certs.patch
===
--- certs.patch (rev 0)
+++ certs.patch 2014-09-04 07:26:09 UTC (rev 118235)
@@ -0,0 +1,26 @@
+diff --git a/requests/certs.py b/requests/certs.py
+index 07e6475..33db011 100644
+--- a/requests/certs.py
 b/requests/certs.py
+@@ -19,7 +19,7 @@ except ImportError:
+ def where():
+ Return the preferred certificate bundle.
+ # vendored bundle inside Requests
+-return os.path.join(os.path.dirname(__file__), 'cacert.pem')
++return /etc/ssl/certs/ca-certificates.crt
+ 
+ if __name__ == '__main__':
+ print(where())
+diff --git a/setup.py b/setup.py
+index e39d13b..3b86d3c 100755
+--- a/setup.py
 b/setup.py
+@@ -27,7 +27,7 @@ packages = [
+ 'requests.packages.urllib3.packages.ssl_match_hostname',
+ ]
+ 
+-requires = ['certifi']

[arch-commits] Commit in python-requests/repos/community-any (1 file)

2014-09-04 Thread Massimiliano Torromeo
Date: Thursday, September 4, 2014 @ 09:30:50
  Author: mtorromeo
Revision: 118236

Copy trunk to community-any

Added:
  
python-requests/repos/community-any/226b5c7b0aafc3cb744eb79a666d9a1bd0803a47.patch

+
 226b5c7b0aafc3cb744eb79a666d9a1bd0803a47.patch |   34 +++
 1 file changed, 34 insertions(+)

Added: 226b5c7b0aafc3cb744eb79a666d9a1bd0803a47.patch
===
--- 226b5c7b0aafc3cb744eb79a666d9a1bd0803a47.patch  
(rev 0)
+++ 226b5c7b0aafc3cb744eb79a666d9a1bd0803a47.patch  2014-09-04 07:30:50 UTC 
(rev 118236)
@@ -0,0 +1,34 @@
+From 226b5c7b0aafc3cb744eb79a666d9a1bd0803a47 Mon Sep 17 00:00:00 2001
+From: Massimiliano Torromeo massimiliano.torro...@gmail.com
+Date: Wed, 3 Sep 2014 09:40:27 +0200
+Subject: [PATCH] Open README and HISTORY as utf-8 encoded files (fixes #2196)
+
+---
+ setup.py | 6 --
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/setup.py b/setup.py
+index 9540a47..e39d13b 100755
+--- a/setup.py
 b/setup.py
+@@ -5,6 +5,8 @@
+ 
+ import requests
+ 
++from codecs import open
++
+ try:
+ from setuptools import setup
+ except ImportError:
+@@ -27,9 +29,9 @@
+ 
+ requires = ['certifi']
+ 
+-with open('README.rst') as f:
++with open('README.rst', 'r', 'utf-8') as f:
+ readme = f.read()
+-with open('HISTORY.rst') as f:
++with open('HISTORY.rst', 'r', 'utf-8') as f:
+ history = f.read()
+ 
+ setup(



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

2014-09-04 Thread Massimiliano Torromeo
Date: Thursday, September 4, 2014 @ 10:15:41
  Author: mtorromeo
Revision: 118237

upgpkg: lessc 1.7.5-1

Updated to 1.7.5

Modified:
  lessc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 07:30:50 UTC (rev 118236)
+++ PKGBUILD2014-09-04 08:15:41 UTC (rev 118237)
@@ -2,7 +2,7 @@
 # Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
 
 pkgname=lessc
-pkgver=1.7.3
+pkgver=1.7.5
 pkgrel=1
 pkgdesc=A standalone compiler for the LESS CSS language.
 arch=('any')
@@ -15,4 +15,4 @@
 npm install -g --user root --prefix $pkgdir/usr 
$srcdir/less-$pkgver.tgz
 }
 
-sha256sums=('81effa656b0fee967e2762bc6afbb2cf2b5aa17f3ab1095e2768733f7f682c8c')
+sha256sums=('bfc98b72903e079757133761d01e96a69c3db43d0f90abd3ca0f795fd29444b3')



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

2014-09-04 Thread Massimiliano Torromeo
Date: Thursday, September 4, 2014 @ 10:17:01
  Author: mtorromeo
Revision: 118238

archrelease: copy trunk to community-any

Added:
  lessc/repos/community-any/PKGBUILD
(from rev 118237, lessc/trunk/PKGBUILD)
Deleted:
  lessc/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-04 08:15:41 UTC (rev 118237)
+++ PKGBUILD2014-09-04 08:17:01 UTC (rev 118238)
@@ -1,18 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-
-pkgname=lessc
-pkgver=1.7.3
-pkgrel=1
-pkgdesc=A standalone compiler for the LESS CSS language.
-arch=('any')
-url=http://lesscss.org/;
-license=('Apache')
-depends=('nodejs')
-source=(https://registry.npmjs.org/less/-/less-$pkgver.tgz;)
-
-package() {
-npm install -g --user root --prefix $pkgdir/usr 
$srcdir/less-$pkgver.tgz
-}
-
-sha256sums=('81effa656b0fee967e2762bc6afbb2cf2b5aa17f3ab1095e2768733f7f682c8c')

Copied: lessc/repos/community-any/PKGBUILD (from rev 118237, 
lessc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-04 08:17:01 UTC (rev 118238)
@@ -0,0 +1,18 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+
+pkgname=lessc
+pkgver=1.7.5
+pkgrel=1
+pkgdesc=A standalone compiler for the LESS CSS language.
+arch=('any')
+url=http://lesscss.org/;
+license=('Apache')
+depends=('nodejs')
+source=(https://registry.npmjs.org/less/-/less-$pkgver.tgz;)
+
+package() {
+npm install -g --user root --prefix $pkgdir/usr 
$srcdir/less-$pkgver.tgz
+}
+
+sha256sums=('bfc98b72903e079757133761d01e96a69c3db43d0f90abd3ca0f795fd29444b3')



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

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 10:21:32
  Author: aginiewicz
Revision: 118239

upgpkg: python2-fonttools 2.4-3

python2-fonttools: fix mtime

Modified:
  python2-fonttools/trunk/PKGBUILD

--+
 PKGBUILD |   15 ++-
 1 file changed, 10 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 08:17:01 UTC (rev 118238)
+++ PKGBUILD2014-09-04 08:21:32 UTC (rev 118239)
@@ -4,7 +4,7 @@
 
 pkgname=python2-fonttools
 pkgver=2.4
-pkgrel=2
+pkgrel=3
 pkgdesc=Converts OpenType and TrueType fonts to and from XML
 url=http://sourceforge.net/projects/fonttools/;
 license=(BSD)
@@ -11,11 +11,18 @@
 arch=('i686' 'x86_64')
 depends=(python2-numpy)
 makedepends=(python2-setuptools)
-provides=('fonttools') # temporary compatibility because of rename
-replaces=('fonttools')
 source=(http://downloads.sourceforge.net/fonttools/fonttools-$pkgver.tar.gz)
 md5sums=('41b2d2be48214d2af848e04fded54689')
 
+prepare() {
+  cd $srcdir/fonttools-$pkgver
+
+  sed -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
+  -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
+  -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
+  -i $(find . -name '*.py')
+}
+
 build() {
   cd $srcdir/fonttools-$pkgver
 
@@ -29,7 +36,5 @@
 
   install -D -m755 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
   chmod oga+r $pkgdir/usr/share/man/man1/ttx.1
-  sed -i -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
-$(find ${pkgdir} -name '*.py')
 }
 



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

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 10:21:43
  Author: aginiewicz
Revision: 118240

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

Added:
  python2-fonttools/repos/community-i686/PKGBUILD
(from rev 118239, python2-fonttools/trunk/PKGBUILD)
  python2-fonttools/repos/community-x86_64/PKGBUILD
(from rev 118239, python2-fonttools/trunk/PKGBUILD)
Deleted:
  python2-fonttools/repos/community-i686/PKGBUILD
  python2-fonttools/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-04 08:21:32 UTC (rev 118239)
+++ community-i686/PKGBUILD 2014-09-04 08:21:43 UTC (rev 118240)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-# Contributor: Firmicus firmicus āt gmx dōt net
-
-pkgname=python2-fonttools
-pkgver=2.4
-pkgrel=2
-pkgdesc=Converts OpenType and TrueType fonts to and from XML
-url=http://sourceforge.net/projects/fonttools/;
-license=(BSD)
-arch=('i686' 'x86_64')
-depends=(python2-numpy)
-makedepends=(python2-setuptools)
-provides=('fonttools') # temporary compatibility because of rename
-replaces=('fonttools')
-source=(http://downloads.sourceforge.net/fonttools/fonttools-$pkgver.tar.gz)
-md5sums=('41b2d2be48214d2af848e04fded54689')
-
-build() {
-  cd $srcdir/fonttools-$pkgver
-
-  python2 setup.py build
-}
-
-package() {
-  cd $srcdir/fonttools-$pkgver
-
-  python2 setup.py install --root=$pkgdir --optimize=1
-
-  install -D -m755 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-  chmod oga+r $pkgdir/usr/share/man/man1/ttx.1
-  sed -i -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
-$(find ${pkgdir} -name '*.py')
-}
-

Copied: python2-fonttools/repos/community-i686/PKGBUILD (from rev 118239, 
python2-fonttools/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-04 08:21:43 UTC (rev 118240)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz ggi...@gmail.com
+# Contributor: Firmicus firmicus āt gmx dōt net
+
+pkgname=python2-fonttools
+pkgver=2.4
+pkgrel=3
+pkgdesc=Converts OpenType and TrueType fonts to and from XML
+url=http://sourceforge.net/projects/fonttools/;
+license=(BSD)
+arch=('i686' 'x86_64')
+depends=(python2-numpy)
+makedepends=(python2-setuptools)
+source=(http://downloads.sourceforge.net/fonttools/fonttools-$pkgver.tar.gz)
+md5sums=('41b2d2be48214d2af848e04fded54689')
+
+prepare() {
+  cd $srcdir/fonttools-$pkgver
+
+  sed -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
+  -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
+  -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  cd $srcdir/fonttools-$pkgver
+
+  python2 setup.py build
+}
+
+package() {
+  cd $srcdir/fonttools-$pkgver
+
+  python2 setup.py install --root=$pkgdir --optimize=1
+
+  install -D -m755 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  chmod oga+r $pkgdir/usr/share/man/man1/ttx.1
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-09-04 08:21:32 UTC (rev 118239)
+++ community-x86_64/PKGBUILD   2014-09-04 08:21:43 UTC (rev 118240)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-# Contributor: Firmicus firmicus āt gmx dōt net
-
-pkgname=python2-fonttools
-pkgver=2.4
-pkgrel=2
-pkgdesc=Converts OpenType and TrueType fonts to and from XML
-url=http://sourceforge.net/projects/fonttools/;
-license=(BSD)
-arch=('i686' 'x86_64')
-depends=(python2-numpy)
-makedepends=(python2-setuptools)
-provides=('fonttools') # temporary compatibility because of rename
-replaces=('fonttools')
-source=(http://downloads.sourceforge.net/fonttools/fonttools-$pkgver.tar.gz)
-md5sums=('41b2d2be48214d2af848e04fded54689')
-
-build() {
-  cd $srcdir/fonttools-$pkgver
-
-  python2 setup.py build
-}
-
-package() {
-  cd $srcdir/fonttools-$pkgver
-
-  python2 setup.py install --root=$pkgdir --optimize=1
-
-  install -D -m755 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-  chmod oga+r $pkgdir/usr/share/man/man1/ttx.1
-  sed -i -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
-$(find ${pkgdir} -name '*.py')
-}
-

Copied: python2-fonttools/repos/community-x86_64/PKGBUILD (from rev 118239, 
python2-fonttools/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-09-04 08:21:43 UTC (rev 118240)
@@ -0,0 +1,40 @@
+# 

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

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 10:26:00
  Author: aginiewicz
Revision: 118241

upgpkg: python-numexpr 2.4-1

python-numexpr: fix mtime

Modified:
  python-numexpr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 08:21:43 UTC (rev 118240)
+++ PKGBUILD2014-09-04 08:26:00 UTC (rev 118241)
@@ -14,10 +14,18 @@
 source=(https://github.com/pydata/numexpr/archive/v$pkgver.tar.gz)
 md5sums=('c9357862a304b9ad614afaf9e9c8dc78')
 
-build() {
+prepare() {
   cd $srcdir
   cp -a numexpr-$pkgver numexpr-py2-$pkgver
+  cd numexpr-py2-$pkgver
 
+  sed -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
+  -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
+  -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
+  -i $(find . -name '*.py')
+}
+
+build() {
   msg Building Python2
   cd $srcdir/numexpr-py2-$pkgver
   python2 setup.py build
@@ -34,9 +42,6 @@
 
   python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
 
-  sed -i -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/python2| \
-$(find ${pkgdir} -name '*.py')
-
   install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 



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

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 10:26:05
  Author: aginiewicz
Revision: 118242

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

Added:
  python-numexpr/repos/community-i686/PKGBUILD
(from rev 118241, python-numexpr/trunk/PKGBUILD)
  python-numexpr/repos/community-x86_64/PKGBUILD
(from rev 118241, python-numexpr/trunk/PKGBUILD)
Deleted:
  python-numexpr/repos/community-i686/PKGBUILD
  python-numexpr/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-04 08:26:00 UTC (rev 118241)
+++ community-i686/PKGBUILD 2014-09-04 08:26:05 UTC (rev 118242)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-# Contributor: Sebastien Binet binet@lblbox
-
-pkgbase=python-numexpr
-pkgname=('python2-numexpr' 'python-numexpr')
-pkgver=2.4
-pkgrel=1
-pkgdesc=Fast numerical array expression evaluator for Python, NumPy, 
PyTables, pandas
-url=https://github.com/pydata/numexpr;
-arch=('i686' 'x86_64')
-license=('MIT')
-makedepends=('python2-setuptools' 'python-setuptools' 'python-numpy' 
'python2-numpy')
-source=(https://github.com/pydata/numexpr/archive/v$pkgver.tar.gz)
-md5sums=('c9357862a304b9ad614afaf9e9c8dc78')
-
-build() {
-  cd $srcdir
-  cp -a numexpr-$pkgver numexpr-py2-$pkgver
-
-  msg Building Python2
-  cd $srcdir/numexpr-py2-$pkgver
-  python2 setup.py build
-
-  msg Building Python3
-  cd $srcdir/numexpr-$pkgver
-  python setup.py build
-}
-
-package_python2-numexpr() {
-  depends=('python2-numpy')
-
-  cd $srcdir/numexpr-py2-$pkgver
-
-  python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-
-  sed -i -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/python2| \
-$(find ${pkgdir} -name '*.py')
-
-  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python-numexpr() {
-  depends=('python-numpy')
-
-  cd $srcdir/numexpr-$pkgver
-
-  python setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-
-  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: python-numexpr/repos/community-i686/PKGBUILD (from rev 118241, 
python-numexpr/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-04 08:26:05 UTC (rev 118242)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz ggi...@gmail.com
+# Contributor: Sebastien Binet binet@lblbox
+
+pkgbase=python-numexpr
+pkgname=('python2-numexpr' 'python-numexpr')
+pkgver=2.4
+pkgrel=1
+pkgdesc=Fast numerical array expression evaluator for Python, NumPy, 
PyTables, pandas
+url=https://github.com/pydata/numexpr;
+arch=('i686' 'x86_64')
+license=('MIT')
+makedepends=('python2-setuptools' 'python-setuptools' 'python-numpy' 
'python2-numpy')
+source=(https://github.com/pydata/numexpr/archive/v$pkgver.tar.gz)
+md5sums=('c9357862a304b9ad614afaf9e9c8dc78')
+
+prepare() {
+  cd $srcdir
+  cp -a numexpr-$pkgver numexpr-py2-$pkgver
+  cd numexpr-py2-$pkgver
+
+  sed -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
+  -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
+  -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  msg Building Python2
+  cd $srcdir/numexpr-py2-$pkgver
+  python2 setup.py build
+
+  msg Building Python3
+  cd $srcdir/numexpr-$pkgver
+  python setup.py build
+}
+
+package_python2-numexpr() {
+  depends=('python2-numpy')
+
+  cd $srcdir/numexpr-py2-$pkgver
+
+  python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
+
+  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python-numexpr() {
+  depends=('python-numpy')
+
+  cd $srcdir/numexpr-$pkgver
+
+  python setup.py install --prefix=/usr --root=$pkgdir --optimize=1
+
+  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-09-04 08:26:00 UTC (rev 118241)
+++ community-x86_64/PKGBUILD   2014-09-04 08:26:05 UTC (rev 118242)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-# Contributor: Sebastien Binet binet@lblbox
-
-pkgbase=python-numexpr
-pkgname=('python2-numexpr' 'python-numexpr')
-pkgver=2.4
-pkgrel=1
-pkgdesc=Fast numerical array expression evaluator for Python, NumPy, 
PyTables, pandas
-url=https://github.com/pydata/numexpr;
-arch=('i686' 'x86_64')
-license=('MIT')
-makedepends=('python2-setuptools' 'python-setuptools' 'python-numpy' 
'python2-numpy')

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

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 10:27:25
  Author: aginiewicz
Revision: 118244

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

Added:
  python-numexpr/repos/community-i686/PKGBUILD
(from rev 118243, python-numexpr/trunk/PKGBUILD)
  python-numexpr/repos/community-x86_64/PKGBUILD
(from rev 118243, python-numexpr/trunk/PKGBUILD)
Deleted:
  python-numexpr/repos/community-i686/PKGBUILD
  python-numexpr/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-04 08:27:19 UTC (rev 118243)
+++ community-i686/PKGBUILD 2014-09-04 08:27:25 UTC (rev 118244)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-# Contributor: Sebastien Binet binet@lblbox
-
-pkgbase=python-numexpr
-pkgname=('python2-numexpr' 'python-numexpr')
-pkgver=2.4
-pkgrel=1
-pkgdesc=Fast numerical array expression evaluator for Python, NumPy, 
PyTables, pandas
-url=https://github.com/pydata/numexpr;
-arch=('i686' 'x86_64')
-license=('MIT')
-makedepends=('python2-setuptools' 'python-setuptools' 'python-numpy' 
'python2-numpy')
-source=(https://github.com/pydata/numexpr/archive/v$pkgver.tar.gz)
-md5sums=('c9357862a304b9ad614afaf9e9c8dc78')
-
-prepare() {
-  cd $srcdir
-  cp -a numexpr-$pkgver numexpr-py2-$pkgver
-  cd numexpr-py2-$pkgver
-
-  sed -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
-  -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
-  -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
-  -i $(find . -name '*.py')
-}
-
-build() {
-  msg Building Python2
-  cd $srcdir/numexpr-py2-$pkgver
-  python2 setup.py build
-
-  msg Building Python3
-  cd $srcdir/numexpr-$pkgver
-  python setup.py build
-}
-
-package_python2-numexpr() {
-  depends=('python2-numpy')
-
-  cd $srcdir/numexpr-py2-$pkgver
-
-  python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-
-  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python-numexpr() {
-  depends=('python-numpy')
-
-  cd $srcdir/numexpr-$pkgver
-
-  python setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-
-  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: python-numexpr/repos/community-i686/PKGBUILD (from rev 118243, 
python-numexpr/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-04 08:27:25 UTC (rev 118244)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz ggi...@gmail.com
+# Contributor: Sebastien Binet binet@lblbox
+
+pkgbase=python-numexpr
+pkgname=('python2-numexpr' 'python-numexpr')
+pkgver=2.4
+pkgrel=2
+pkgdesc=Fast numerical array expression evaluator for Python, NumPy, 
PyTables, pandas
+url=https://github.com/pydata/numexpr;
+arch=('i686' 'x86_64')
+license=('MIT')
+makedepends=('python2-setuptools' 'python-setuptools' 'python-numpy' 
'python2-numpy')
+source=(https://github.com/pydata/numexpr/archive/v$pkgver.tar.gz)
+md5sums=('c9357862a304b9ad614afaf9e9c8dc78')
+
+prepare() {
+  cd $srcdir
+  cp -a numexpr-$pkgver numexpr-py2-$pkgver
+  cd numexpr-py2-$pkgver
+
+  sed -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
+  -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
+  -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  msg Building Python2
+  cd $srcdir/numexpr-py2-$pkgver
+  python2 setup.py build
+
+  msg Building Python3
+  cd $srcdir/numexpr-$pkgver
+  python setup.py build
+}
+
+package_python2-numexpr() {
+  depends=('python2-numpy')
+
+  cd $srcdir/numexpr-py2-$pkgver
+
+  python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
+
+  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python-numexpr() {
+  depends=('python-numpy')
+
+  cd $srcdir/numexpr-$pkgver
+
+  python setup.py install --prefix=/usr --root=$pkgdir --optimize=1
+
+  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-09-04 08:27:19 UTC (rev 118243)
+++ community-x86_64/PKGBUILD   2014-09-04 08:27:25 UTC (rev 118244)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-# Contributor: Sebastien Binet binet@lblbox
-
-pkgbase=python-numexpr
-pkgname=('python2-numexpr' 'python-numexpr')
-pkgver=2.4
-pkgrel=1
-pkgdesc=Fast numerical array expression evaluator for Python, NumPy, 
PyTables, pandas

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

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 10:27:19
  Author: aginiewicz
Revision: 118243

upgpkg: python-numexpr 2.4-2

python-numexpr: version bump

Modified:
  python-numexpr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 08:26:05 UTC (rev 118242)
+++ PKGBUILD2014-09-04 08:27:19 UTC (rev 118243)
@@ -5,7 +5,7 @@
 pkgbase=python-numexpr
 pkgname=('python2-numexpr' 'python-numexpr')
 pkgver=2.4
-pkgrel=1
+pkgrel=2
 pkgdesc=Fast numerical array expression evaluator for Python, NumPy, 
PyTables, pandas
 url=https://github.com/pydata/numexpr;
 arch=('i686' 'x86_64')



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

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 10:31:58
  Author: aginiewicz
Revision: 118245

upgpkg: python-openpyxl1 1.8.6-2

python2-openpyxl1: fix mtime

Modified:
  python-openpyxl1/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 08:27:25 UTC (rev 118244)
+++ PKGBUILD2014-09-04 08:31:58 UTC (rev 118245)
@@ -6,7 +6,7 @@
 pkgbase=python-openpyxl1
 pkgname=('python2-openpyxl1' 'python-openpyxl1')
 pkgver=1.8.6
-pkgrel=1
+pkgrel=2
 pkgdesc=A Python library to read/write Excel 2007 xlsx/xlsm files, 1.x branch
 arch=('any')
 url=http://openpyxl.readthedocs.org/en/1.8.6;
@@ -17,10 +17,18 @@
 md5sums=('a610d32ca5460eb78df4eb83c896ba34'
  'd5feddd06c61a04aea40b7aa1707e625')
 
-build() {
+prepare() {
   cd $srcdir
   cp -a openpyxl-${pkgver} openpyxl-py2-${pkgver}
+  cd openpyxl-py2-${pkgver}
 
+  sed -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
+  -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
+  -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
+  -i $(find . -name '*.py')
+}
+
+build() {
   msg Building Python2
   cd $srcdir/openpyxl-py2-${pkgver}
   python2 setup.py build
@@ -40,8 +48,6 @@
 
   python2 setup.py install --skip-build --root=$pkgdir --optimize=1
 
-  sed -i -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| $(find 
${pkgdir} -name '*.py')
-
   install -Dm644 $srcdir/LICENCE 
$pkgdir/usr/share/licenses/$pkgname/LICENCE
 }
 



[arch-commits] Commit in python-openpyxl1/repos/community-any (4 files)

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 10:32:01
  Author: aginiewicz
Revision: 118246

archrelease: copy trunk to community-any

Added:
  python-openpyxl1/repos/community-any/LICENCE
(from rev 118245, python-openpyxl1/trunk/LICENCE)
  python-openpyxl1/repos/community-any/PKGBUILD
(from rev 118245, python-openpyxl1/trunk/PKGBUILD)
Deleted:
  python-openpyxl1/repos/community-any/LICENCE
  python-openpyxl1/repos/community-any/PKGBUILD

--+
 LICENCE  |   70 -
 PKGBUILD |  126 +++--
 2 files changed, 101 insertions(+), 95 deletions(-)

Deleted: LICENCE
===
--- LICENCE 2014-09-04 08:31:58 UTC (rev 118245)
+++ LICENCE 2014-09-04 08:32:01 UTC (rev 118246)
@@ -1,35 +0,0 @@
-This software is under the MIT Licence
-==
-
-Copyright (c) 2010 openpyxl
-
-Permission is hereby granted, free of charge, to any person obtaining a
-copy of this software and associated documentation files (the
-Software), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Software, and to
-permit persons to whom the Software is furnished to do so, subject to
-the following conditions:
-
-The above copyright notice and this permission notice shall be included
-in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS
-OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
-IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
-CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
-TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
-SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-Odict implementation in openpyxl/writer/odict.py uses the following licence:
-
-Copyright (c) 2001-2011 Python Software Foundation
-  2011 Raymond Hettinger
-License: PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
- See http://www.opensource.org/licenses/Python-2.0 for full terms
-Note: backport changes by Raymond were originally distributed under MIT
-  license, but since the original license for Python is more 
-  restrictive than MIT, code cannot be released under its terms and
-  still adheres to the limitations of Python license.
-

Copied: python-openpyxl1/repos/community-any/LICENCE (from rev 118245, 
python-openpyxl1/trunk/LICENCE)
===
--- LICENCE (rev 0)
+++ LICENCE 2014-09-04 08:32:01 UTC (rev 118246)
@@ -0,0 +1,35 @@
+This software is under the MIT Licence
+==
+
+Copyright (c) 2010 openpyxl
+
+Permission is hereby granted, free of charge, to any person obtaining a
+copy of this software and associated documentation files (the
+Software), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be included
+in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS
+OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+Odict implementation in openpyxl/writer/odict.py uses the following licence:
+
+Copyright (c) 2001-2011 Python Software Foundation
+  2011 Raymond Hettinger
+License: PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
+ See http://www.opensource.org/licenses/Python-2.0 for full terms
+Note: backport changes by Raymond were originally distributed under MIT
+  license, but since the original license for Python is more 
+  restrictive than MIT, code cannot be released under its terms and
+  still adheres to the limitations of Python license.
+

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-04 08:31:58 UTC (rev 118245)
+++ PKGBUILD2014-09-04 08:32:01 UTC (rev 118246)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-# Contributor: Nishit Joseph (reachjlight at gmail dot com)
-# Contributor: Martin Corley martin.cor...@ed.ac.uk
-

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

2014-09-04 Thread Maxime Gauduin
Date: Thursday, September 4, 2014 @ 10:37:33
  Author: alucryd
Revision: 118248

archrelease: copy trunk to community-any

Added:
  firewalld/repos/community-any/PKGBUILD
(from rev 118247, firewalld/trunk/PKGBUILD)
  firewalld/repos/community-any/firewalld-paths.patch
(from rev 118247, firewalld/trunk/firewalld-paths.patch)
  firewalld/repos/community-any/firewalld-syntax.patch
(from rev 118247, firewalld/trunk/firewalld-syntax.patch)
  firewalld/repos/community-any/firewalld.install
(from rev 118247, firewalld/trunk/firewalld.install)
Deleted:
  firewalld/repos/community-any/PKGBUILD
  firewalld/repos/community-any/firewalld-paths.patch
  firewalld/repos/community-any/firewalld-syntax.patch
  firewalld/repos/community-any/firewalld.install

+
 PKGBUILD   |   90 +-
 firewalld-paths.patch  |  234 +++
 firewalld-syntax.patch |   46 -
 firewalld.install  |   28 ++---
 4 files changed, 199 insertions(+), 199 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-04 08:37:25 UTC (rev 118247)
+++ PKGBUILD2014-09-04 08:37:33 UTC (rev 118248)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@gmail.com
-# Contributor: unikum unikum...@gmail.com
-# Contributor: speed145a jonat...@tagchapter.com
-
-pkgname=firewalld
-pkgver=0.3.10
-pkgrel=1
-pkgdesc='A dynamic firewall daemon with a D-BUS interface'
-arch=('any')
-url=http://fedorahosted.org/${pkgname};
-license=('GPL2')
-depends=('ebtables' 'gtk3' 'iptables' 'libnotify' 'networkmanager' 
'python-slip')
-makedepends=('intltool' 'docbook-xsl')
-backup=('etc/conf.d/firewalld'
-'etc/firewalld/firewalld.conf')
-install=${pkgname}.install
-source=(http://fedorahosted.org/released/${pkgname}/${pkgname}-${pkgver}.tar.bz2;
-${pkgname}-paths.patch
-${pkgname}-syntax.patch)
-sha256sums=('0f5e051655fc06690f5ab72b1b38cb57b4368e49bd5ad98a27e2f88c79e82f2b'
-'41591c5358c5ad8d43b29d72f42c331fcfc25e3d38c0ba5b3c818fc757ceef2f'
-'42f0e4dbf574ac7b87df77117816dbc4a2ac17f709a22990eeeb973950cc6322')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  patch -Np1 -i ../${pkgname}-paths.patch
-  patch -Np1 -i ../${pkgname}-syntax.patch
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  ./configure --prefix='/usr' --sbindir='/usr/bin' --sysconfdir='/etc' 
--disable-schemas-compile
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-}
-
-# vim: ts=2 sw=2 et:

Copied: firewalld/repos/community-any/PKGBUILD (from rev 118247, 
firewalld/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-04 08:37:33 UTC (rev 118248)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: unikum unikum...@gmail.com
+# Contributor: speed145a jonat...@tagchapter.com
+
+pkgname=firewalld
+pkgver=0.3.11
+pkgrel=1
+pkgdesc='A dynamic firewall daemon with a D-BUS interface'
+arch=('any')
+url=http://fedorahosted.org/${pkgname};
+license=('GPL2')
+depends=('ebtables' 'gtk3' 'iptables' 'libnotify' 'networkmanager' 
'python-slip')
+makedepends=('intltool' 'docbook-xsl')
+backup=('etc/conf.d/firewalld'
+'etc/firewalld/firewalld.conf')
+install=${pkgname}.install
+source=(http://fedorahosted.org/released/${pkgname}/${pkgname}-${pkgver}.tar.bz2;
+${pkgname}-paths.patch
+${pkgname}-syntax.patch)
+sha256sums=('02aeea580954d62abe7ad9ec053c2d943c7575d3f30e48e518a24d420b8a994f'
+'41591c5358c5ad8d43b29d72f42c331fcfc25e3d38c0ba5b3c818fc757ceef2f'
+'42f0e4dbf574ac7b87df77117816dbc4a2ac17f709a22990eeeb973950cc6322')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+  patch -Np1 -i ../${pkgname}-paths.patch
+  patch -Np1 -i ../${pkgname}-syntax.patch
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix='/usr' --sbindir='/usr/bin' --sysconfdir='/etc' 
--disable-schemas-compile
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: firewalld-paths.patch
===
--- firewalld-paths.patch   2014-09-04 08:37:25 UTC (rev 118247)
+++ firewalld-paths.patch   2014-09-04 08:37:33 UTC (rev 118248)
@@ -1,117 +0,0 @@
-diff -rupN firewalld-0.3.10.orig/config/firewalld.service.in 
firewalld-0.3.10/config/firewalld.service.in
 firewalld-0.3.10.orig/config/firewalld.service.in  2014-06-10 
11:07:27.864758482 +0200
-+++ firewalld-0.3.10/config/firewalld.service.in   2014-06-10 
11:07:39.582420959 +0200
-@@ -6,7 +6,7 @@ Before=NetworkManager.service
- Conflicts=iptables.service ip6tables.service ebtables.service
- 
- [Service]
--EnvironmentFile=-/etc/sysconfig/firewalld
-+EnvironmentFile=-/etc/conf.d/firewalld
- 

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

2014-09-04 Thread Maxime Gauduin
Date: Thursday, September 4, 2014 @ 10:37:25
  Author: alucryd
Revision: 118247

upgpkg: firewalld 0.3.11-1

Modified:
  firewalld/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 08:32:01 UTC (rev 118246)
+++ PKGBUILD2014-09-04 08:37:25 UTC (rev 118247)
@@ -4,7 +4,7 @@
 # Contributor: speed145a jonat...@tagchapter.com
 
 pkgname=firewalld
-pkgver=0.3.10
+pkgver=0.3.11
 pkgrel=1
 pkgdesc='A dynamic firewall daemon with a D-BUS interface'
 arch=('any')
@@ -18,7 +18,7 @@
 
source=(http://fedorahosted.org/released/${pkgname}/${pkgname}-${pkgver}.tar.bz2;
 ${pkgname}-paths.patch
 ${pkgname}-syntax.patch)
-sha256sums=('0f5e051655fc06690f5ab72b1b38cb57b4368e49bd5ad98a27e2f88c79e82f2b'
+sha256sums=('02aeea580954d62abe7ad9ec053c2d943c7575d3f30e48e518a24d420b8a994f'
 '41591c5358c5ad8d43b29d72f42c331fcfc25e3d38c0ba5b3c818fc757ceef2f'
 '42f0e4dbf574ac7b87df77117816dbc4a2ac17f709a22990eeeb973950cc6322')
 



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

2014-09-04 Thread Maxime Gauduin
Date: Thursday, September 4, 2014 @ 10:42:40
  Author: alucryd
Revision: 118250

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

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

+
 /PKGBUILD  |   76 +++
 /geary.install |   34 +
 community-i686/PKGBUILD|   38 ---
 community-i686/geary.install   |   17 
 community-x86_64/PKGBUILD  |   38 ---
 community-x86_64/geary.install |   17 
 6 files changed, 110 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-04 08:42:32 UTC (rev 118249)
+++ community-i686/PKGBUILD 2014-09-04 08:42:40 UTC (rev 118250)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@gmail.com
-# Contributor : sebikul sebi...@gmail.com
-# Contributor : Massimiliano Torromeo massimiliano.torro...@gmail.com
-
-pkgname=geary
-pkgver=0.6.2
-pkgrel=1
-pkgdesc='A lightweight email client for the GNOME desktop'
-arch=('i686' 'x86_64')
-url='http://www.yorba.org/projects/geary/'
-license=('GPL3')
-depends=('gnome-keyring' 'gmime' 'libcanberra' 'libgee' 'libnotify' 
'webkitgtk')
-makedepends=('cmake' 'gnome-doc-utils' 'gobject-introspection' 'intltool' 
'vala')
-install=${pkgname}.install
-source=(https://download.gnome.org/sources/${pkgname}/${pkgver%.?}/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('efe6532d78bcb08f74da117a7096d0930c7ce34b14d2cea6405d27246f05e42a')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build  cd build
-
-  cmake .. -DCMAKE_INSTALL_PREFIX='/usr' \
-   -D{DESKTOP_UPDATE,GSETTINGS_COMPILE{,_IN_PLACE},ICON_UPDATE}='FALSE'
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-}
-
-# vim: ts=2 sw=2 et:

Copied: geary/repos/community-i686/PKGBUILD (from rev 118249, 
geary/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-04 08:42:40 UTC (rev 118250)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor : sebikul sebi...@gmail.com
+# Contributor : Massimiliano Torromeo massimiliano.torro...@gmail.com
+
+pkgname=geary
+pkgver=0.6.3
+pkgrel=1
+pkgdesc='A lightweight email client for the GNOME desktop'
+arch=('i686' 'x86_64')
+url='http://www.yorba.org/projects/geary/'
+license=('GPL3')
+depends=('gnome-keyring' 'gmime' 'libcanberra' 'libgee' 'libnotify' 
'webkitgtk')
+makedepends=('cmake' 'gnome-doc-utils' 'gobject-introspection' 'intltool' 
'vala')
+install=${pkgname}.install
+source=(https://download.gnome.org/sources/${pkgname}/${pkgver%.?}/${pkgname}-${pkgver}.tar.xz;)
+sha256sums=('2fa2612bf3821f8ff74664463a430729776f6f9bf31795156be2ca7959b52eca')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build  cd build
+
+  cmake .. -DCMAKE_INSTALL_PREFIX='/usr' \
+   -D{DESKTOP_UPDATE,GSETTINGS_COMPILE{,_IN_PLACE},ICON_UPDATE}='FALSE'
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-i686/geary.install
===
--- community-i686/geary.install2014-09-04 08:42:32 UTC (rev 118249)
+++ community-i686/geary.install2014-09-04 08:42:40 UTC (rev 118250)
@@ -1,17 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -ftq usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade()
-{
-  post_install
-}
-
-post_remove()
-{
-  post_install
-}
-
-# vim: ts=2 sw=2 et:

Copied: geary/repos/community-i686/geary.install (from rev 118249, 
geary/trunk/geary.install)
===
--- community-i686/geary.install(rev 0)
+++ community-i686/geary.install2014-09-04 08:42:40 UTC (rev 118250)
@@ -0,0 +1,17 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -ftq usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade()
+{
+  post_install
+}
+
+post_remove()
+{
+  post_install
+}
+
+# vim: ts=2 sw=2 

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

2014-09-04 Thread Maxime Gauduin
Date: Thursday, September 4, 2014 @ 10:42:32
  Author: alucryd
Revision: 118249

upgpkg: geary 0.6.3-1

Modified:
  geary/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 08:37:33 UTC (rev 118248)
+++ PKGBUILD2014-09-04 08:42:32 UTC (rev 118249)
@@ -4,7 +4,7 @@
 # Contributor : Massimiliano Torromeo massimiliano.torro...@gmail.com
 
 pkgname=geary
-pkgver=0.6.2
+pkgver=0.6.3
 pkgrel=1
 pkgdesc='A lightweight email client for the GNOME desktop'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('cmake' 'gnome-doc-utils' 'gobject-introspection' 'intltool' 
'vala')
 install=${pkgname}.install
 
source=(https://download.gnome.org/sources/${pkgname}/${pkgver%.?}/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('efe6532d78bcb08f74da117a7096d0930c7ce34b14d2cea6405d27246f05e42a')
+sha256sums=('2fa2612bf3821f8ff74664463a430729776f6f9bf31795156be2ca7959b52eca')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 10:45:12
  Author: aginiewicz
Revision: 118251

upgpkg: python-pandas 0.14.1-4

python-pandas: fix mtime

Modified:
  python-pandas/trunk/PKGBUILD

--+
 PKGBUILD |   15 ++-
 1 file changed, 10 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 08:42:40 UTC (rev 118250)
+++ PKGBUILD2014-09-04 08:45:12 UTC (rev 118251)
@@ -5,7 +5,7 @@
 pkgbase=python-pandas
 pkgname=('python2-pandas' 'python-pandas')
 pkgver=0.14.1
-pkgrel=3
+pkgrel=4
 pkgdesc=Cross-section and time series data analysis toolkit
 arch=('i686' 'x86_64')
 url=http://pandas.pydata.org/;
@@ -15,10 +15,18 @@
 
source=(https://pypi.python.org/packages/source/p/pandas/pandas-${pkgver}.tar.gz;)
 md5sums=('393dd8f35411e4022177aa64b2da46f4')
 
-build() {
+prepare() {
   cd $srcdir
   cp -a pandas-${pkgver} pandas-py2-${pkgver}
+  cd pandas-py2-${pkgver}
 
+  sed -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
+  -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
+  -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
+  -i $(find . -name '*.py')
+}
+
+build() {
   msg Building Python2
   cd $srcdir/pandas-py2-${pkgver}
   python2 setup.py build_ext --inplace
@@ -57,9 +65,6 @@
 
   python2 setup.py install --skip-build --root=$pkgdir --optimize=1
 
-  sed -i -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| $(find 
${pkgdir} -name '*.py')
-  sed -i -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| $(find ${pkgdir} 
-name '*.py')
-
   install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 



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

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 10:45:22
  Author: aginiewicz
Revision: 118252

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

Added:
  python-pandas/repos/community-i686/PKGBUILD
(from rev 118251, python-pandas/trunk/PKGBUILD)
  python-pandas/repos/community-x86_64/PKGBUILD
(from rev 118251, python-pandas/trunk/PKGBUILD)
Deleted:
  python-pandas/repos/community-i686/PKGBUILD
  python-pandas/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  190 
 community-i686/PKGBUILD   |   90 
 community-x86_64/PKGBUILD |   90 
 3 files changed, 190 insertions(+), 180 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-04 08:45:12 UTC (rev 118251)
+++ community-i686/PKGBUILD 2014-09-04 08:45:22 UTC (rev 118252)
@@ -1,90 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-# Contributor: Keith Hughitt khugh...@umd.edu
-
-pkgbase=python-pandas
-pkgname=('python2-pandas' 'python-pandas')
-pkgver=0.14.1
-pkgrel=3
-pkgdesc=Cross-section and time series data analysis toolkit
-arch=('i686' 'x86_64')
-url=http://pandas.pydata.org/;
-license=('BSD')
-makedepends=('python-setuptools' 'python-dateutil' 'python-numpy' 'python-pytz'
- 'python2-setuptools' 'python2-dateutil' 'python2-numpy' 
'python2-pytz')
-source=(https://pypi.python.org/packages/source/p/pandas/pandas-${pkgver}.tar.gz;)
-md5sums=('393dd8f35411e4022177aa64b2da46f4')
-
-build() {
-  cd $srcdir
-  cp -a pandas-${pkgver} pandas-py2-${pkgver}
-
-  msg Building Python2
-  cd $srcdir/pandas-py2-${pkgver}
-  python2 setup.py build_ext --inplace
-  python2 setup.py build
-
-  msg Building Python3
-  cd $srcdir/pandas-${pkgver}
-  python setup.py build_ext --inplace
-  python setup.py build
-}
-
-package_python2-pandas() {
-  depends=('python2-numpy' 'python2-dateutil' 'python2-pytz' 
'python2-setuptools')
-  optdepends=('python2-numexpr: needed for accelerating certain numerical 
operations (recommended)'
-  'python2-bottleneck: needed for accelerating certain types of 
nan evaluations (recommended)'
-  'python2-scipy: needed for miscellaneous statistical functions'
-  'python2-pytables: needed for HDF5-based storage'
-  'python2-sqlalchemy: needed for SQL database support'
-  'python2-matplotlib: needed for plotting'
-  'python2-statsmodels: needed for parts of pandas.stats'
-  'python2-openpyxl1: needed for Excel XLSX input/output'
-  'python2-xlsxwriter: alternative Excel XLSX output'
-  'python2-xlrd: needed for Excel XLS input'
-  'python2-xlwt: needed for Excel XLS output'
-  'python2-boto: needed for access to Amazon S3 storage'
-  'python2-beautifulsoup4: needed for read_html function'
-  'python2-lxml: needed for read_html function (and/or 
python2-html5lib)'
-  'python2-html5lib: needed for read_hmlt function (and/or 
python2-lxml)'
-  'python2-httplib2: needed for gbq'
-  'python2-google-api-python-client: needed for gbq'
-  'python2-gflags: needed for gbq'
-  'xsel: needed for read_clipboard function (or xclip)'
-  'xclip: needed for read_clipboard function (or xsel)')
-
-  cd $srcdir/pandas-py2-${pkgver}
-
-  python2 setup.py install --skip-build --root=$pkgdir --optimize=1
-
-  sed -i -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| $(find 
${pkgdir} -name '*.py')
-  sed -i -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| $(find ${pkgdir} 
-name '*.py')
-
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python-pandas() {
-  depends=('python-numpy' 'python-dateutil' 'python-pytz' 'python-setuptools')
-  optdepends=('python-numexpr: needed for accelerating certain numerical 
operations (recommended)'
-  'python-bottleneck: needed for accelerating certain types of nan 
evaluations (recommended)'
-  'python-scipy: needed for miscellaneous statistical functions'
-  'python-pytables: needed for HDF5-based storage'
-  'python-sqlalchemy: needed for SQL database support'
-  'python-matplotlib: needed for plotting'
-  'python-statsmodels: needed for parts of pandas.stats'
-  'python-openpyxl1: needed for Excel XLSX input/output'
-  'python-xlsxwriter: alternative Excel XLSX output'
-  'python-xlrd: needed for Excel XLS input'
-  'python-beautifulsoup4: needed for read_html function'
-  'python-lxml: needed for read_html function (and/or 
python-html5lib)'
-  'python-html5lib: needed for read_hmlt function (and/or 
python-lxml)'
-  'xsel: needed for read_clipboard 

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

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 10:48:57
  Author: aginiewicz
Revision: 118254

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-04 08:48:54 UTC (rev 118253)
+++ PKGBUILD2014-09-04 08:48:57 UTC (rev 118254)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-
-pkgbase=python-xlsxwriter
-pkgname=('python2-xlsxwriter' 'python-xlsxwriter')
-pkgver=0.5.6
-pkgrel=1
-pkgdesc=A Python module for creating Excel XLSX files
-arch=('any')
-url=https://github.com/jmcnamara/XlsxWriter;
-license=('BSD')
-makedepends=('python2-setuptools' 'python-setuptools')
-source=(https://pypi.python.org/packages/source/X/XlsxWriter/XlsxWriter-${pkgver}.tar.gz;)
-md5sums=('49321d26183341fead14440cb18777c3')
-
-build() {
-  cd $srcdir
-  cp -a XlsxWriter-${pkgver} XlsxWriter-py2-${pkgver}
-
-  msg Building Python2
-  cd $srcdir/XlsxWriter-py2-${pkgver}
-  python2 setup.py build
-
-  msg Building Python3
-  cd $srcdir/XlsxWriter-${pkgver}
-  python setup.py build
-}
-
-package_python2-xlsxwriter() {
-  depends=('python2')
-
-  cd $srcdir/XlsxWriter-py2-${pkgver}
-
-  python2 setup.py install --skip-build --root=$pkgdir --optimize=1
-
-  install -D -m644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python-xlsxwriter() {
-  depends=('python')
-
-  cd $srcdir/XlsxWriter-${pkgver}
-
-  python setup.py install --skip-build --root=$pkgdir --optimize=1
-
-  install -D -m644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: python-xlsxwriter/repos/community-any/PKGBUILD (from rev 118253, 
python-xlsxwriter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-04 08:48:57 UTC (rev 118254)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz ggi...@gmail.com
+
+pkgbase=python-xlsxwriter
+pkgname=('python2-xlsxwriter' 'python-xlsxwriter')
+pkgver=0.5.7
+pkgrel=1
+pkgdesc=A Python module for creating Excel XLSX files
+arch=('any')
+url=https://github.com/jmcnamara/XlsxWriter;
+license=('BSD')
+makedepends=('python2-setuptools' 'python-setuptools')
+source=(https://pypi.python.org/packages/source/X/XlsxWriter/XlsxWriter-${pkgver}.tar.gz;)
+md5sums=('9472d63716ad01065a1ab56fa5d7be05')
+
+prepare() {
+  cd $srcdir
+  cp -a XlsxWriter-${pkgver} XlsxWriter-py2-${pkgver}
+}
+
+build() {
+  msg Building Python2
+  cd $srcdir/XlsxWriter-py2-${pkgver}
+  python2 setup.py build
+
+  msg Building Python3
+  cd $srcdir/XlsxWriter-${pkgver}
+  python setup.py build
+}
+
+package_python2-xlsxwriter() {
+  depends=('python2')
+
+  cd $srcdir/XlsxWriter-py2-${pkgver}
+
+  python2 setup.py install --skip-build --root=$pkgdir --optimize=1
+
+  install -D -m644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python-xlsxwriter() {
+  depends=('python')
+
+  cd $srcdir/XlsxWriter-${pkgver}
+
+  python setup.py install --skip-build --root=$pkgdir --optimize=1
+
+  install -D -m644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+



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

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 10:48:54
  Author: aginiewicz
Revision: 118253

upgpkg: python-xlsxwriter 0.5.7-1

python-xlsxwriter: new release

Modified:
  python-xlsxwriter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 08:45:22 UTC (rev 118252)
+++ PKGBUILD2014-09-04 08:48:54 UTC (rev 118253)
@@ -3,7 +3,7 @@
 
 pkgbase=python-xlsxwriter
 pkgname=('python2-xlsxwriter' 'python-xlsxwriter')
-pkgver=0.5.6
+pkgver=0.5.7
 pkgrel=1
 pkgdesc=A Python module for creating Excel XLSX files
 arch=('any')
@@ -11,12 +11,14 @@
 license=('BSD')
 makedepends=('python2-setuptools' 'python-setuptools')
 
source=(https://pypi.python.org/packages/source/X/XlsxWriter/XlsxWriter-${pkgver}.tar.gz;)
-md5sums=('49321d26183341fead14440cb18777c3')
+md5sums=('9472d63716ad01065a1ab56fa5d7be05')
 
-build() {
+prepare() {
   cd $srcdir
   cp -a XlsxWriter-${pkgver} XlsxWriter-py2-${pkgver}
+}
 
+build() {
   msg Building Python2
   cd $srcdir/XlsxWriter-py2-${pkgver}
   python2 setup.py build



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

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 10:55:04
  Author: aginiewicz
Revision: 118255

upgpkg: python-scikit-learn 0.15.1-2

python-scikit-learn: fix mtime

Modified:
  python-scikit-learn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 08:48:57 UTC (rev 118254)
+++ PKGBUILD2014-09-04 08:55:04 UTC (rev 118255)
@@ -4,7 +4,7 @@
 pkgbase=python-scikit-learn
 pkgname=('python2-scikit-learn' 'python-scikit-learn')
 pkgver=0.15.1
-pkgrel=1
+pkgrel=2
 pkgdesc=A set of python modules for machine learning and data mining
 arch=('i686' 'x86_64')
 url=http://scikit-learn.sourceforge.net/;
@@ -17,10 +17,18 @@
 md5sums=('133771b23e245eeb3150940d59a3581c'
  '327083d2576cc0aad1b8f10b2bcd2974')
 
-build() {
+prepare() {
   cd $srcdir
   cp -a scikit-learn-$pkgver scikit-learn-py2-$pkgver
+  cd scikit-learn-py2-$pkgver
 
+  sed -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
+  -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
+  -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
+  -i $(find . -name '*.py')
+}
+
+build() {
   msg Building Python2
   cd $srcdir/scikit-learn-py2-$pkgver
   python2 setup.py build
@@ -36,10 +44,6 @@
 
   python2 setup.py install --root=$pkgdir/ --optimize=1
 
-  sed -i -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
- -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
-$(find ${pkgdir} -name '*.py')
-
   install -D $srcdir/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 



[arch-commits] Commit in python-scikit-learn/repos (8 files)

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 10:55:14
  Author: aginiewicz
Revision: 118256

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

Added:
  python-scikit-learn/repos/community-i686/LICENSE
(from rev 118255, python-scikit-learn/trunk/LICENSE)
  python-scikit-learn/repos/community-i686/PKGBUILD
(from rev 118255, python-scikit-learn/trunk/PKGBUILD)
  python-scikit-learn/repos/community-x86_64/LICENSE
(from rev 118255, python-scikit-learn/trunk/LICENSE)
  python-scikit-learn/repos/community-x86_64/PKGBUILD
(from rev 118255, python-scikit-learn/trunk/PKGBUILD)
Deleted:
  python-scikit-learn/repos/community-i686/LICENSE
  python-scikit-learn/repos/community-i686/PKGBUILD
  python-scikit-learn/repos/community-x86_64/LICENSE
  python-scikit-learn/repos/community-x86_64/PKGBUILD

---+
 /LICENSE  |   48 ++
 /PKGBUILD |  116 
 community-i686/LICENSE|   24 -
 community-i686/PKGBUILD   |   54 
 community-x86_64/LICENSE  |   24 -
 community-x86_64/PKGBUILD |   54 
 6 files changed, 164 insertions(+), 156 deletions(-)

Deleted: community-i686/LICENSE
===
--- community-i686/LICENSE  2014-09-04 08:55:04 UTC (rev 118255)
+++ community-i686/LICENSE  2014-09-04 08:55:14 UTC (rev 118256)
@@ -1,24 +0,0 @@
-Copyright (c) 2010–2011, scikit-learn developers
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-* Redistributions of source code must retain the above copyright
-  notice, this list of conditions and the following disclaimer.
-* Redistributions in binary form must reproduce the above copyright
-  notice, this list of conditions and the following disclaimer in the
-  documentation and/or other materials provided with the distribution.
-* Neither the name of the organization nor the
-  names of its contributors may be used to endorse or promote products
-  derived from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS AS IS AND
-ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDER BE LIABLE FOR ANY
-DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Copied: python-scikit-learn/repos/community-i686/LICENSE (from rev 118255, 
python-scikit-learn/trunk/LICENSE)
===
--- community-i686/LICENSE  (rev 0)
+++ community-i686/LICENSE  2014-09-04 08:55:14 UTC (rev 118256)
@@ -0,0 +1,24 @@
+Copyright (c) 2010–2011, scikit-learn developers
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+* Redistributions of source code must retain the above copyright
+  notice, this list of conditions and the following disclaimer.
+* Redistributions in binary form must reproduce the above copyright
+  notice, this list of conditions and the following disclaimer in the
+  documentation and/or other materials provided with the distribution.
+* Neither the name of the organization nor the
+  names of its contributors may be used to endorse or promote products
+  derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS AS IS AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDER BE LIABLE FOR ANY
+DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Deleted: community-i686/PKGBUILD
===
--- 

[arch-commits] Commit in python-statsmodels/repos/community-x86_64 (PKGBUILD PKGBUILD)

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 11:05:17
  Author: aginiewicz
Revision: 118258

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

Added:
  python-statsmodels/repos/community-x86_64/PKGBUILD
(from rev 118257, python-statsmodels/trunk/PKGBUILD)
Deleted:
  python-statsmodels/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  122 -
 1 file changed, 65 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-04 09:04:46 UTC (rev 118257)
+++ PKGBUILD2014-09-04 09:05:17 UTC (rev 118258)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-# Contributor: Oliver Sherouse oliver DOT sherouse AT gmail DOT com
-
-pkgbase=python-statsmodels
-pkgname=('python2-statsmodels' 'python-statsmodels')
-pkgver=0.5.0
-pkgrel=1
-pkgdesc=Statistical computations and models for use with SciPy
-arch=('i686' 'x86_64')
-url=http://statsmodels.sourceforge.net/;
-license=('BSD')
-makedepends=('python2-setuptools' 'python2-scipy' 'python2-pandas' 
'python2-patsy'
- 'python-setuptools' 'python-scipy' 'python-pandas' 'python-patsy' 
'cython')
-source=(https://pypi.python.org/packages/source/s/statsmodels/statsmodels-${pkgver}.tar.gz;)
-md5sums=('c65454d97f869ac0e5bb3a2757ec6bd5')
-
-build() {
-  cd $srcdir
-  cp -a statsmodels-${pkgver} statsmodels-py2-${pkgver}
-
-  msg Building Python2
-  cd $srcdir/statsmodels-py2-${pkgver}
-  python2 setup.py build
-
-  msg Building Python3
-  cd $srcdir/statsmodels-${pkgver}
-  python setup.py clean
-  python setup.py build
-}
-
-package_python2-statsmodels() {
-  depends=('python2-scipy' 'python2-pandas' 'python2-patsy')
-  optdepends=('python2-nose: needed for integrated test suite'
-  'python2-matplotlib: needed for plotting functions')
-
-  cd $srcdir/statsmodels-py2-${pkgver}
-
-  python2 setup.py install --skip-build --root=$pkgdir --optimize=1
-
-  sed -i -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| $(find 
${pkgdir} -name '*.py')
-
-  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python-statsmodels() {
-  depends=('python-scipy' 'python-pandas' 'python-patsy')
-  optdepends=('python-nose: needed for integrated test suite'
-  'python-matplotlib: needed for plotting functions')
-
-  cd $srcdir/statsmodels-${pkgver}
-
-  python setup.py install --skip-build --root=$pkgdir --optimize=1
-
-  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: python-statsmodels/repos/community-x86_64/PKGBUILD (from rev 118257, 
python-statsmodels/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-04 09:05:17 UTC (rev 118258)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz ggi...@gmail.com
+# Contributor: Oliver Sherouse oliver DOT sherouse AT gmail DOT com
+
+pkgbase=python-statsmodels
+pkgname=('python2-statsmodels' 'python-statsmodels')
+pkgver=0.5.0
+pkgrel=2
+pkgdesc=Statistical computations and models for use with SciPy
+arch=('i686' 'x86_64')
+url=http://statsmodels.sourceforge.net/;
+license=('BSD')
+makedepends=('python2-setuptools' 'python2-scipy' 'python2-pandas' 
'python2-patsy'
+ 'python-setuptools' 'python-scipy' 'python-pandas' 'python-patsy' 
'cython')
+source=(https://pypi.python.org/packages/source/s/statsmodels/statsmodels-${pkgver}.tar.gz;)
+md5sums=('c65454d97f869ac0e5bb3a2757ec6bd5')
+
+prepare() {
+  cd $srcdir
+  cp -a statsmodels-${pkgver} statsmodels-py2-${pkgver}
+  cd statsmodels-py2-${pkgver}
+
+  sed -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
+  -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
+  -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
+  -i $(find . -name '*.py')
+
+  cd $srcdir/statsmodels-${pkgver}
+  python setup.py clean
+}
+
+build() {
+  msg Building Python2
+  cd $srcdir/statsmodels-py2-${pkgver}
+  python2 setup.py build
+
+  msg Building Python3
+  cd $srcdir/statsmodels-${pkgver}
+  python setup.py build
+}
+
+package_python2-statsmodels() {
+  depends=('python2-scipy' 'python2-pandas' 'python2-patsy')
+  optdepends=('python2-nose: needed for integrated test suite'
+  'python2-matplotlib: needed for plotting functions')
+
+  cd $srcdir/statsmodels-py2-${pkgver}
+
+  python2 setup.py install --skip-build --root=$pkgdir --optimize=1
+
+  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python-statsmodels() {
+  depends=('python-scipy' 'python-pandas' 'python-patsy')
+  optdepends=('python-nose: needed for integrated test suite'
+  'python-matplotlib: needed for plotting functions')
+
+  cd $srcdir/statsmodels-${pkgver}
+
+  python setup.py install --skip-build --root=$pkgdir --optimize=1
+
+  install -Dm644 LICENSE.txt 

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

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 11:04:46
  Author: aginiewicz
Revision: 118257

upgpkg: python-statsmodels 0.5.0-2

python-statsmodels: fix mtime

Modified:
  python-statsmodels/trunk/PKGBUILD

--+
 PKGBUILD |   18 +-
 1 file changed, 13 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 08:55:14 UTC (rev 118256)
+++ PKGBUILD2014-09-04 09:04:46 UTC (rev 118257)
@@ -5,7 +5,7 @@
 pkgbase=python-statsmodels
 pkgname=('python2-statsmodels' 'python-statsmodels')
 pkgver=0.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc=Statistical computations and models for use with SciPy
 arch=('i686' 'x86_64')
 url=http://statsmodels.sourceforge.net/;
@@ -15,10 +15,21 @@
 
source=(https://pypi.python.org/packages/source/s/statsmodels/statsmodels-${pkgver}.tar.gz;)
 md5sums=('c65454d97f869ac0e5bb3a2757ec6bd5')
 
-build() {
+prepare() {
   cd $srcdir
   cp -a statsmodels-${pkgver} statsmodels-py2-${pkgver}
+  cd statsmodels-py2-${pkgver}
 
+  sed -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
+  -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
+  -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
+  -i $(find . -name '*.py')
+
+  cd $srcdir/statsmodels-${pkgver}
+  python setup.py clean
+}
+
+build() {
   msg Building Python2
   cd $srcdir/statsmodels-py2-${pkgver}
   python2 setup.py build
@@ -25,7 +36,6 @@
 
   msg Building Python3
   cd $srcdir/statsmodels-${pkgver}
-  python setup.py clean
   python setup.py build
 }
 
@@ -38,8 +48,6 @@
 
   python2 setup.py install --skip-build --root=$pkgdir --optimize=1
 
-  sed -i -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| $(find 
${pkgdir} -name '*.py')
-
   install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 



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

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 11:06:57
  Author: aginiewicz
Revision: 118260

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

Added:
  python-statsmodels/repos/community-i686/PKGBUILD
(from rev 118259, python-statsmodels/trunk/PKGBUILD)
  python-statsmodels/repos/community-x86_64/PKGBUILD
(from rev 118259, python-statsmodels/trunk/PKGBUILD)
Deleted:
  python-statsmodels/repos/community-i686/PKGBUILD
  python-statsmodels/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  132 
 community-i686/PKGBUILD   |   57 ---
 community-x86_64/PKGBUILD |   65 -
 3 files changed, 132 insertions(+), 122 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-04 09:06:52 UTC (rev 118259)
+++ community-i686/PKGBUILD 2014-09-04 09:06:57 UTC (rev 118260)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-# Contributor: Oliver Sherouse oliver DOT sherouse AT gmail DOT com
-
-pkgbase=python-statsmodels
-pkgname=('python2-statsmodels' 'python-statsmodels')
-pkgver=0.5.0
-pkgrel=1
-pkgdesc=Statistical computations and models for use with SciPy
-arch=('i686' 'x86_64')
-url=http://statsmodels.sourceforge.net/;
-license=('BSD')
-makedepends=('python2-setuptools' 'python2-scipy' 'python2-pandas' 
'python2-patsy'
- 'python-setuptools' 'python-scipy' 'python-pandas' 'python-patsy' 
'cython')
-source=(https://pypi.python.org/packages/source/s/statsmodels/statsmodels-${pkgver}.tar.gz;)
-md5sums=('c65454d97f869ac0e5bb3a2757ec6bd5')
-
-build() {
-  cd $srcdir
-  cp -a statsmodels-${pkgver} statsmodels-py2-${pkgver}
-
-  msg Building Python2
-  cd $srcdir/statsmodels-py2-${pkgver}
-  python2 setup.py build
-
-  msg Building Python3
-  cd $srcdir/statsmodels-${pkgver}
-  python setup.py clean
-  python setup.py build
-}
-
-package_python2-statsmodels() {
-  depends=('python2-scipy' 'python2-pandas' 'python2-patsy')
-  optdepends=('python2-nose: needed for integrated test suite'
-  'python2-matplotlib: needed for plotting functions')
-
-  cd $srcdir/statsmodels-py2-${pkgver}
-
-  python2 setup.py install --skip-build --root=$pkgdir --optimize=1
-
-  sed -i -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| $(find 
${pkgdir} -name '*.py')
-
-  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python-statsmodels() {
-  depends=('python-scipy' 'python-pandas' 'python-patsy')
-  optdepends=('python-nose: needed for integrated test suite'
-  'python-matplotlib: needed for plotting functions')
-
-  cd $srcdir/statsmodels-${pkgver}
-
-  python setup.py install --skip-build --root=$pkgdir --optimize=1
-
-  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: python-statsmodels/repos/community-i686/PKGBUILD (from rev 118259, 
python-statsmodels/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-04 09:06:57 UTC (rev 118260)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz ggi...@gmail.com
+# Contributor: Oliver Sherouse oliver DOT sherouse AT gmail DOT com
+
+pkgbase=python-statsmodels
+pkgname=('python2-statsmodels' 'python-statsmodels')
+pkgver=0.5.0
+pkgrel=2
+pkgdesc=Statistical computations and models for use with SciPy
+arch=('i686' 'x86_64')
+url=http://statsmodels.sourceforge.net/;
+license=('BSD')
+makedepends=('python2-setuptools' 'python2-scipy' 'python2-pandas' 
'python2-patsy'
+ 'python-setuptools' 'python-scipy' 'python-pandas' 'python-patsy' 
'cython')
+source=(https://pypi.python.org/packages/source/s/statsmodels/statsmodels-${pkgver}.tar.gz;)
+md5sums=('c65454d97f869ac0e5bb3a2757ec6bd5')
+
+prepare() {
+  cd $srcdir
+  cp -a statsmodels-${pkgver} statsmodels-py2-${pkgver}
+  cd statsmodels-py2-${pkgver}
+
+  sed -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
+  -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
+  -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
+  -i $(find . -name '*.py')
+
+  # some files were generated using old cython, needs rebuild with newer one
+  cd $srcdir/statsmodels-${pkgver}
+  python setup.py clean
+}
+
+build() {
+  msg Building Python2
+  cd $srcdir/statsmodels-py2-${pkgver}
+  python2 setup.py build
+
+  msg Building Python3
+  cd $srcdir/statsmodels-${pkgver}
+  python setup.py build
+}
+
+package_python2-statsmodels() {
+  depends=('python2-scipy' 'python2-pandas' 'python2-patsy')
+  optdepends=('python2-nose: needed for integrated test suite'
+  'python2-matplotlib: needed for plotting functions')
+
+  cd $srcdir/statsmodels-py2-${pkgver}
+
+  python2 setup.py install --skip-build --root=$pkgdir --optimize=1
+
+  install 

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

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 11:06:52
  Author: aginiewicz
Revision: 118259

upgpkg: python-statsmodels 0.5.0-2

python-statsmodels: had network loss while uploading

Modified:
  python-statsmodels/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 09:05:17 UTC (rev 118258)
+++ PKGBUILD2014-09-04 09:06:52 UTC (rev 118259)
@@ -25,6 +25,7 @@
   -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
   -i $(find . -name '*.py')
 
+  # some files were generated using old cython, needs rebuild with newer one
   cd $srcdir/statsmodels-${pkgver}
   python setup.py clean
 }



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

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 11:10:08
  Author: aginiewicz
Revision: 118261

upgpkg: python2-xlwt 0.7.5-2

python2-xlwt: fix mtime

Modified:
  python2-xlwt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 09:06:57 UTC (rev 118260)
+++ PKGBUILD2014-09-04 09:10:08 UTC (rev 118261)
@@ -5,7 +5,7 @@
 
 pkgname=python2-xlwt
 pkgver=0.7.5
-pkgrel=1
+pkgrel=2
 pkgdesc=Library to create spreadsheet files compatible with MS Excel 
97/2000/XP/2003 XLS files
 arch=('any')
 url=http://www.python-excel.org/;
@@ -15,8 +15,18 @@
 source=(https://pypi.python.org/packages/source/x/xlwt/xlwt-${pkgver}.tar.gz;)
 md5sums=('59cb5efd55319465dfcd25e6a485f03c')
 
+prepare() {
+  cd $srcdir/xlwt-$pkgver
+
+  sed -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
+  -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
+  -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
+  -i $(find . -name '*.py')
+}
+
 build() {
   cd $srcdir/xlwt-$pkgver
+
   python2 setup.py build
 }
 
@@ -25,7 +35,6 @@
 
   python2 setup.py install --skip-build --root=$pkgdir --optimize=1
 
-  find $pkgdir -name *.py -exec sed -i '1s/python[[:space:]]*$/python2/' 
{} \;
   install -Dm644 licences.py $pkgdir/usr/share/licenses/$pkgname/licences.py
 }
 



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

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 11:10:16
  Author: aginiewicz
Revision: 118262

archrelease: copy trunk to community-any

Added:
  python2-xlwt/repos/community-any/PKGBUILD
(from rev 118261, python2-xlwt/trunk/PKGBUILD)
Deleted:
  python2-xlwt/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-04 09:10:08 UTC (rev 118261)
+++ PKGBUILD2014-09-04 09:10:16 UTC (rev 118262)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-# Contributor: Aaron DeVore aaron.dev...@gmail.com
-# Contributor: David Moore dav...@sjsoft.com
-
-pkgname=python2-xlwt
-pkgver=0.7.5
-pkgrel=1
-pkgdesc=Library to create spreadsheet files compatible with MS Excel 
97/2000/XP/2003 XLS files
-arch=('any')
-url=http://www.python-excel.org/;
-license=('BSD')
-depends=('python2')
-makedepends=('python2-setuptools')
-source=(https://pypi.python.org/packages/source/x/xlwt/xlwt-${pkgver}.tar.gz;)
-md5sums=('59cb5efd55319465dfcd25e6a485f03c')
-
-build() {
-  cd $srcdir/xlwt-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd $srcdir/xlwt-$pkgver
-
-  python2 setup.py install --skip-build --root=$pkgdir --optimize=1
-
-  find $pkgdir -name *.py -exec sed -i '1s/python[[:space:]]*$/python2/' 
{} \;
-  install -Dm644 licences.py $pkgdir/usr/share/licenses/$pkgname/licences.py
-}
-

Copied: python2-xlwt/repos/community-any/PKGBUILD (from rev 118261, 
python2-xlwt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-04 09:10:16 UTC (rev 118262)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz ggi...@gmail.com
+# Contributor: Aaron DeVore aaron.dev...@gmail.com
+# Contributor: David Moore dav...@sjsoft.com
+
+pkgname=python2-xlwt
+pkgver=0.7.5
+pkgrel=2
+pkgdesc=Library to create spreadsheet files compatible with MS Excel 
97/2000/XP/2003 XLS files
+arch=('any')
+url=http://www.python-excel.org/;
+license=('BSD')
+depends=('python2')
+makedepends=('python2-setuptools')
+source=(https://pypi.python.org/packages/source/x/xlwt/xlwt-${pkgver}.tar.gz;)
+md5sums=('59cb5efd55319465dfcd25e6a485f03c')
+
+prepare() {
+  cd $srcdir/xlwt-$pkgver
+
+  sed -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
+  -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
+  -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  cd $srcdir/xlwt-$pkgver
+
+  python2 setup.py build
+}
+
+package() {
+  cd $srcdir/xlwt-$pkgver
+
+  python2 setup.py install --skip-build --root=$pkgdir --optimize=1
+
+  install -Dm644 licences.py $pkgdir/usr/share/licenses/$pkgname/licences.py
+}
+



[arch-commits] Commit in python2-google-api-python-client/trunk (PKGBUILD)

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 11:15:44
  Author: aginiewicz
Revision: 118263

upgpkg: python2-google-api-python-client 1.2-2

python2-google-api-python-client: fix mtime

Modified:
  python2-google-api-python-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 09:10:16 UTC (rev 118262)
+++ PKGBUILD2014-09-04 09:15:44 UTC (rev 118263)
@@ -4,7 +4,7 @@
 
 pkgname=python2-google-api-python-client
 pkgver=1.2
-pkgrel=1
+pkgrel=2
 pkgdesc=Google API Client Library for Python
 arch=('any')
 url=https://github.com/google/google-api-python-client;
@@ -16,9 +16,20 @@
 optdepends=('python2-gflags: for oauth2client.tools.run function')
 
source=(https://pypi.python.org/packages/source/g/google-api-python-client/google-api-python-client-${pkgver}.tar.gz;)
 md5sums=('031c69eacdd25606782d045b17f54934')
- 
+
+prepare() {
+  cd $srcdir/google-api-python-client-$pkgver
+
+  sed -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
+  -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
+  -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
+  -e s|python2.[1-7]|python2| \
+  -i $(find . -name '*.py')
+}
+
 build() {
   cd $srcdir/google-api-python-client-$pkgver
+
   python2 setup.py build
 }
  
@@ -31,7 +42,5 @@
   _version=`python2 -c from sys import version_info; print 
'%d.%d'%(version_info.major,version_info.minor)`
   
_path=${pkgdir}/${_site}/google_api_python_client-${pkgver}-py${_version}.egg-info
   chmod o+r -R ${_path}
- 
-  find $pkgdir -name *.py -exec sed -i '1s/python[[:space:]]*$/python2/' 
{} \;
-  find $pkgdir -name *.py -exec sed -i 's/python2.[1-7]/python2/' {} \;
 }
+



[arch-commits] Commit in python2-google-api-python-client/repos/community-any (2 files)

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 11:15:52
  Author: aginiewicz
Revision: 118264

archrelease: copy trunk to community-any

Added:
  python2-google-api-python-client/repos/community-any/PKGBUILD
(from rev 118263, python2-google-api-python-client/trunk/PKGBUILD)
Deleted:
  python2-google-api-python-client/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-04 09:15:44 UTC (rev 118263)
+++ PKGBUILD2014-09-04 09:15:52 UTC (rev 118264)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-# Contributor: shadyabhi abhijeet.1...@gmail.com
-
-pkgname=python2-google-api-python-client
-pkgver=1.2
-pkgrel=1
-pkgdesc=Google API Client Library for Python
-arch=('any')
-url=https://github.com/google/google-api-python-client;
-license=('Apache')
-depends=('python2-httplib2')
-makedepends=('python2-setuptools')
-provides=('python2-oauth2client' 'python2-uritemplate')
-conflicts=('python2-oauth2client' 'python2-uritemplate')
-optdepends=('python2-gflags: for oauth2client.tools.run function')
-source=(https://pypi.python.org/packages/source/g/google-api-python-client/google-api-python-client-${pkgver}.tar.gz;)
-md5sums=('031c69eacdd25606782d045b17f54934')
- 
-build() {
-  cd $srcdir/google-api-python-client-$pkgver
-  python2 setup.py build
-}
- 
-package() {
-  cd $srcdir/google-api-python-client-$pkgver
- 
-  python2 setup.py install --skip-build --root=$pkgdir --optimize=1
- 
-  _site=`python2 -c from distutils.sysconfig import get_python_lib; print 
get_python_lib()`
-  _version=`python2 -c from sys import version_info; print 
'%d.%d'%(version_info.major,version_info.minor)`
-  
_path=${pkgdir}/${_site}/google_api_python_client-${pkgver}-py${_version}.egg-info
-  chmod o+r -R ${_path}
- 
-  find $pkgdir -name *.py -exec sed -i '1s/python[[:space:]]*$/python2/' 
{} \;
-  find $pkgdir -name *.py -exec sed -i 's/python2.[1-7]/python2/' {} \;
-}

Copied: python2-google-api-python-client/repos/community-any/PKGBUILD (from rev 
118263, python2-google-api-python-client/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-04 09:15:52 UTC (rev 118264)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz ggi...@gmail.com
+# Contributor: shadyabhi abhijeet.1...@gmail.com
+
+pkgname=python2-google-api-python-client
+pkgver=1.2
+pkgrel=2
+pkgdesc=Google API Client Library for Python
+arch=('any')
+url=https://github.com/google/google-api-python-client;
+license=('Apache')
+depends=('python2-httplib2')
+makedepends=('python2-setuptools')
+provides=('python2-oauth2client' 'python2-uritemplate')
+conflicts=('python2-oauth2client' 'python2-uritemplate')
+optdepends=('python2-gflags: for oauth2client.tools.run function')
+source=(https://pypi.python.org/packages/source/g/google-api-python-client/google-api-python-client-${pkgver}.tar.gz;)
+md5sums=('031c69eacdd25606782d045b17f54934')
+
+prepare() {
+  cd $srcdir/google-api-python-client-$pkgver
+
+  sed -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
+  -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
+  -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
+  -e s|python2.[1-7]|python2| \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  cd $srcdir/google-api-python-client-$pkgver
+
+  python2 setup.py build
+}
+ 
+package() {
+  cd $srcdir/google-api-python-client-$pkgver
+ 
+  python2 setup.py install --skip-build --root=$pkgdir --optimize=1
+ 
+  _site=`python2 -c from distutils.sysconfig import get_python_lib; print 
get_python_lib()`
+  _version=`python2 -c from sys import version_info; print 
'%d.%d'%(version_info.major,version_info.minor)`
+  
_path=${pkgdir}/${_site}/google_api_python_client-${pkgver}-py${_version}.egg-info
+  chmod o+r -R ${_path}
+}
+



[arch-commits] Commit in vtk/repos (28 files)

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 11:57:30
  Author: aginiewicz
Revision: 118266

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

Added:
  vtk/repos/community-i686/PKGBUILD
(from rev 118265, vtk/trunk/PKGBUILD)
  vtk/repos/community-i686/ffmpeg-0.11.diff
(from rev 118265, vtk/trunk/ffmpeg-0.11.diff)
  vtk/repos/community-i686/ffmpeg-0.8.diff
(from rev 118265, vtk/trunk/ffmpeg-0.8.diff)
  vtk/repos/community-i686/ffmpeg-2.0.diff
(from rev 118265, vtk/trunk/ffmpeg-2.0.diff)
  vtk/repos/community-i686/freetype.diff
(from rev 118265, vtk/trunk/freetype.diff)
  vtk/repos/community-i686/python-destdir.diff
(from rev 118265, vtk/trunk/python-destdir.diff)
  vtk/repos/community-i686/tcl-8.6.diff
(from rev 118265, vtk/trunk/tcl-8.6.diff)
  vtk/repos/community-x86_64/PKGBUILD
(from rev 118265, vtk/trunk/PKGBUILD)
  vtk/repos/community-x86_64/ffmpeg-0.11.diff
(from rev 118265, vtk/trunk/ffmpeg-0.11.diff)
  vtk/repos/community-x86_64/ffmpeg-0.8.diff
(from rev 118265, vtk/trunk/ffmpeg-0.8.diff)
  vtk/repos/community-x86_64/ffmpeg-2.0.diff
(from rev 118265, vtk/trunk/ffmpeg-2.0.diff)
  vtk/repos/community-x86_64/freetype.diff
(from rev 118265, vtk/trunk/freetype.diff)
  vtk/repos/community-x86_64/python-destdir.diff
(from rev 118265, vtk/trunk/python-destdir.diff)
  vtk/repos/community-x86_64/tcl-8.6.diff
(from rev 118265, vtk/trunk/tcl-8.6.diff)
Deleted:
  vtk/repos/community-i686/PKGBUILD
  vtk/repos/community-i686/ffmpeg-0.11.diff
  vtk/repos/community-i686/ffmpeg-0.8.diff
  vtk/repos/community-i686/ffmpeg-2.0.diff
  vtk/repos/community-i686/freetype.diff
  vtk/repos/community-i686/python-destdir.diff
  vtk/repos/community-i686/tcl-8.6.diff
  vtk/repos/community-x86_64/PKGBUILD
  vtk/repos/community-x86_64/ffmpeg-0.11.diff
  vtk/repos/community-x86_64/ffmpeg-0.8.diff
  vtk/repos/community-x86_64/ffmpeg-2.0.diff
  vtk/repos/community-x86_64/freetype.diff
  vtk/repos/community-x86_64/python-destdir.diff
  vtk/repos/community-x86_64/tcl-8.6.diff

--+
 /PKGBUILD|  250 +
 /ffmpeg-0.11.diff|   92 
 /ffmpeg-0.8.diff |  132 +
 /ffmpeg-2.0.diff |   42 +
 /freetype.diff   |   32 
 /python-destdir.diff |   22 ++
 /tcl-8.6.diff|   26 +++
 community-i686/PKGBUILD  |  121 ---
 community-i686/ffmpeg-0.11.diff  |   46 --
 community-i686/ffmpeg-0.8.diff   |   66 
 community-i686/ffmpeg-2.0.diff   |   21 --
 community-i686/freetype.diff |   16 --
 community-i686/python-destdir.diff   |   11 -
 community-i686/tcl-8.6.diff  |   13 -
 community-x86_64/PKGBUILD|  121 ---
 community-x86_64/ffmpeg-0.11.diff|   46 --
 community-x86_64/ffmpeg-0.8.diff |   66 
 community-x86_64/ffmpeg-2.0.diff |   21 --
 community-x86_64/freetype.diff   |   16 --
 community-x86_64/python-destdir.diff |   11 -
 community-x86_64/tcl-8.6.diff|   13 -
 21 files changed, 596 insertions(+), 588 deletions(-)

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


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

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 11:57:15
  Author: aginiewicz
Revision: 118265

upgpkg: vtk 5.10.1-12

vtk: fix mtime

Modified:
  vtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 09:15:52 UTC (rev 118264)
+++ PKGBUILD2014-09-04 09:57:15 UTC (rev 118265)
@@ -12,7 +12,7 @@
 
 pkgname=vtk
 pkgver=5.10.1
-pkgrel=11
+pkgrel=12
 pkgdesc='A software system for 3D computer graphics, image processing, and 
visualization.'
 arch=('i686' 'x86_64')
 url='http://www.vtk.org/'
@@ -37,7 +37,7 @@
  'f7aba715bcc10de93a6ecf1cd6b0c560'
  '1e45b3664b395c70017ff46d3370c84d')
 
-build() {
+prepare() {
   cd ${srcdir}/VTK$pkgver
 
   # fix compilation errors:
@@ -48,8 +48,14 @@
   patch -Np1 -i ${srcdir}/python-destdir.diff
   patch -Np1 -i ${srcdir}/freetype.diff
 
+  sed -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
+  -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
+  -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
+  -i $(find . -name '*.py')
+}
+
+build() {
   cd ${srcdir}
-
   rm -rf build
   mkdir build
   cd build
@@ -67,7 +73,7 @@
 -Wno-dev \
 -DBUILD_SHARED_LIBS:BOOL=ON \
 -DCMAKE_INSTALL_PREFIX:FILEPATH=/usr \
--DVTK_DATA_ROOT:FILEPATH=${srcdir}/VTKData$pkgver \
+-DVTK_DATA_ROOT:FILEPATH=${srcdir}/VTKData$pkgver \
 -DBUILD_DOCUMENTATION:BOOL=ON \
 -DDOCUMENTATION_HTML_HELP:BOOL=ON \
 -DDOCUMENTATION_HTML_TARZ:BOOL=ON \
@@ -115,7 +121,5 @@
   # Put an entry in /etc/ld.so.conf.d
   install -dv ${pkgdir}/etc/ld.so.conf.d
   echo /usr/lib/vtk-${pkgver:0:4}  ${pkgdir}/etc/ld.so.conf.d/vtk.conf
+}
 
-  sed -i -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
-$(find ${pkgdir} -name '*.py')
-}



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

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 12:33:12
  Author: aginiewicz
Revision: 118268

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

Added:
  mayavi/repos/community-i686/PKGBUILD
(from rev 118267, mayavi/trunk/PKGBUILD)
  mayavi/repos/community-i686/mayavi.csh
(from rev 118267, mayavi/trunk/mayavi.csh)
  mayavi/repos/community-i686/mayavi.sh
(from rev 118267, mayavi/trunk/mayavi.sh)
  mayavi/repos/community-i686/vtk-5.10.patch
(from rev 118267, mayavi/trunk/vtk-5.10.patch)
  mayavi/repos/community-x86_64/PKGBUILD
(from rev 118267, mayavi/trunk/PKGBUILD)
  mayavi/repos/community-x86_64/mayavi.csh
(from rev 118267, mayavi/trunk/mayavi.csh)
  mayavi/repos/community-x86_64/mayavi.sh
(from rev 118267, mayavi/trunk/mayavi.sh)
  mayavi/repos/community-x86_64/vtk-5.10.patch
(from rev 118267, mayavi/trunk/vtk-5.10.patch)
Deleted:
  mayavi/repos/community-i686/PKGBUILD
  mayavi/repos/community-i686/vtk-5.10.patch
  mayavi/repos/community-x86_64/PKGBUILD
  mayavi/repos/community-x86_64/vtk-5.10.patch

-+
 /PKGBUILD   |  180 ++
 /vtk-5.10.patch |  166 +++
 community-i686/PKGBUILD |   72 ---
 community-i686/mayavi.csh   |1 
 community-i686/mayavi.sh|1 
 community-i686/vtk-5.10.patch   |   83 -
 community-x86_64/PKGBUILD   |   72 ---
 community-x86_64/mayavi.csh |1 
 community-x86_64/mayavi.sh  |1 
 community-x86_64/vtk-5.10.patch |   83 -
 10 files changed, 350 insertions(+), 310 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-04 10:32:59 UTC (rev 118267)
+++ community-i686/PKGBUILD 2014-09-04 10:33:12 UTC (rev 118268)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-
-pkgname=mayavi
-pkgver=4.3.1
-pkgrel=2
-pkgdesc=A 3-dimensional visualizer of scientific data
-arch=('i686' 'x86_64')
-url=https://github.com/enthought/mayavi;
-license=('BSD')
-depends=('ipython2' 'vtk' 'python2-envisage' 'wxpython2.8')
-makedepends=('python2-setuptools' 'python2-sphinx' 'python2-twisted' 
'xorg-server-xvfb')
-replaces=('python2-mayavi')
-provides=('python2-mayavi')
-options=(!emptydirs)
-
-source=($pkgname-$pkgver.tar.gz::https://github.com/enthought/mayavi/archive/${pkgver}.tar.gz;)
-md5sums=('93677c77f0a835537bd210c493740b03')
-
-build() {
-  cd $srcdir/mayavi-$pkgver
-
-  # force selection of wxpython 2.8
-  sed -e s/wxversion.ensureMinimal('2.8')/wxversion.select('2.8')/g -i 
$(find . -name '*.py')
-
-  # Use python2-sphinx provided sphinx-build2
-  sed -i -e 's/sphinx-build/sphinx-build2/' docs/Makefile*
-
-  # Fix distutils compatibility
-  sed -i -e 's/distutils.Version/distutils.version/' mayavi/modules/text.py
-  sed -i -e 's/distutils.Version/distutils.version/' tvtk/tools/mlab.py
-
-  # set path so autodoc can find just built modules
-  echo 
sys.path.append('$srcdir/enthought-mayavi-${_githubtag}/build/lib.linux-$CARCH-2.7/')
  docs/source/mayavi/conf.py
-  mkdir -p 
build/lib.linux-$CARCH-2.7/{tvtk/plugins/scene,mayavi/preferences,mayavi/core}
-  ln -s $srcdir/enthought-mayavi-${_githubtag}/tvtk/tvtk_classes.zip \
-build/lib.linux-$CARCH-2.7/tvtk/tvtk_classes.zip
-  ln -s 
$srcdir/enthought-mayavi-${_githubtag}/mayavi/preferences/preferences.ini \
-build/lib.linux-$CARCH-2.7/mayavi/preferences/preferences.ini
-  ln -s 
$srcdir/enthought-mayavi-${_githubtag}/tvtk/plugins/scene/preferences.ini \
-build/lib.linux-$CARCH-2.7/tvtk/plugins/scene/preferences.ini
-
-  # now this is ugly, but docs do not build without X. We setup X according to:
-  # 
http://docs.enthought.com/mayavi/mayavi/tips.html#rendering-using-the-virtual-framebuffer
-  export DISPLAY=:69
-  Xvfb $DISPLAY 
-
-  # build!
-  python2 setup.py build
-
-  # have to kill the server to proceed, and do other cleanup
-  kill `cat /tmp/.X${DISPLAY/:/}-lock`
-  rm build/lib.linux-$CARCH-2.7/tvtk/tvtk_classes.zip
-  rm build/lib.linux-$CARCH-2.7/mayavi/preferences/preferences.ini
-  rm build/lib.linux-$CARCH-2.7/tvtk/plugins/scene/preferences.ini
-}
-
-package() {
-  cd $srcdir/mayavi-$pkgver
-
-  python2 setup.py install --root=$pkgdir/ --optimize=1
-
-  cp -r docs/build/* ${pkgdir}/usr/lib/python2.7/site-packages
-
-  sed -i -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
-$(find ${pkgdir} -name '*.py')
-  sed -i -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
-$pkgdir/usr/lib/python2.7/site-packages/mayavi/tests/csv_files/csv_2_py
-
-  install -D LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: mayavi/repos/community-i686/PKGBUILD (from rev 118267, 
mayavi/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD 

[arch-commits] Commit in mayavi/trunk (PKGBUILD mayavi.csh mayavi.sh)

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 12:32:59
  Author: aginiewicz
Revision: 118267

upgpkg: mayavi 4.3.1-3

mayavi: fix mtime, switch to qt4 due to FS#41791

Added:
  mayavi/trunk/mayavi.csh
  mayavi/trunk/mayavi.sh
Modified:
  mayavi/trunk/PKGBUILD

+
 PKGBUILD   |   36 +++-
 mayavi.csh |1 +
 mayavi.sh  |1 +
 3 files changed, 29 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 09:57:30 UTC (rev 118266)
+++ PKGBUILD2014-09-04 10:32:59 UTC (rev 118267)
@@ -3,21 +3,24 @@
 
 pkgname=mayavi
 pkgver=4.3.1
-pkgrel=2
+pkgrel=3
 pkgdesc=A 3-dimensional visualizer of scientific data
 arch=('i686' 'x86_64')
 url=https://github.com/enthought/mayavi;
 license=('BSD')
-depends=('ipython2' 'vtk' 'python2-envisage' 'wxpython2.8')
+depends=('ipython2' 'vtk' 'python2-envisage' 'python2-pyqt4')
 makedepends=('python2-setuptools' 'python2-sphinx' 'python2-twisted' 
'xorg-server-xvfb')
 replaces=('python2-mayavi')
 provides=('python2-mayavi')
 options=(!emptydirs)
 
-source=($pkgname-$pkgver.tar.gz::https://github.com/enthought/mayavi/archive/${pkgver}.tar.gz;)
-md5sums=('93677c77f0a835537bd210c493740b03')
+source=($pkgname-$pkgver.tar.gz::https://github.com/enthought/mayavi/archive/${pkgver}.tar.gz;
+mayavi.sh mayavi.csh)
+md5sums=('93677c77f0a835537bd210c493740b03'
+ '6d36bbfb69010e313292cfee4982487f'
+ '91eb92abc506a00c29afcb37c9600914')
 
-build() {
+prepare() {
   cd $srcdir/mayavi-$pkgver
 
   # force selection of wxpython 2.8
@@ -32,6 +35,18 @@
 
   # set path so autodoc can find just built modules
   echo 
sys.path.append('$srcdir/enthought-mayavi-${_githubtag}/build/lib.linux-$CARCH-2.7/')
  docs/source/mayavi/conf.py
+
+  # fix python-python2
+  sed -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
+  -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
+  -e s|#![ ]*/bin/env python$|#!/usr/bin/env python2| \
+  -i $(find . -name '*[\._]py')
+}
+
+build() {
+  cd $srcdir/mayavi-$pkgver
+  rm -rf build
+  mkdir build
   mkdir -p 
build/lib.linux-$CARCH-2.7/{tvtk/plugins/scene,mayavi/preferences,mayavi/core}
   ln -s $srcdir/enthought-mayavi-${_githubtag}/tvtk/tvtk_classes.zip \
 build/lib.linux-$CARCH-2.7/tvtk/tvtk_classes.zip
@@ -40,6 +55,9 @@
   ln -s 
$srcdir/enthought-mayavi-${_githubtag}/tvtk/plugins/scene/preferences.ini \
 build/lib.linux-$CARCH-2.7/tvtk/plugins/scene/preferences.ini
 
+  # force using Qt during build
+  export ETS_TOOLKIT=qt4
+
   # now this is ugly, but docs do not build without X. We setup X according to:
   # 
http://docs.enthought.com/mayavi/mayavi/tips.html#rendering-using-the-virtual-framebuffer
   export DISPLAY=:69
@@ -62,10 +80,10 @@
 
   cp -r docs/build/* ${pkgdir}/usr/lib/python2.7/site-packages
 
-  sed -i -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
-$(find ${pkgdir} -name '*.py')
-  sed -i -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
-$pkgdir/usr/lib/python2.7/site-packages/mayavi/tests/csv_files/csv_2_py
+  # switch to PyQt by default, fix FS#41791
+  install -d ${pkgdir}/etc/profile.d
+  install -Dm644 ${srcdir}/mayavi.sh ${pkgdir}/etc/profile.d/mayavi.sh
+  install -Dm644 ${srcdir}/mayavi.csh ${pkgdir}/etc/profile.d/mayavi.csh
 
   install -D LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }

Added: mayavi.csh
===
--- mayavi.csh  (rev 0)
+++ mayavi.csh  2014-09-04 10:32:59 UTC (rev 118267)
@@ -0,0 +1 @@
+setenv ETS_TOOLKIT qt4

Added: mayavi.sh
===
--- mayavi.sh   (rev 0)
+++ mayavi.sh   2014-09-04 10:32:59 UTC (rev 118267)
@@ -0,0 +1 @@
+export ETS_TOOLKIT=qt4



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

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 12:41:05
  Author: aginiewicz
Revision: 118270

archrelease: copy trunk to community-any

Added:
  hgview/repos/community-any/PKGBUILD
(from rev 118269, hgview/trunk/PKGBUILD)
Deleted:
  hgview/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-04 10:40:57 UTC (rev 118269)
+++ PKGBUILD2014-09-04 10:41:05 UTC (rev 118270)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-# Contributor: TDY t...@gmx.com
-
-pkgname=hgview
-pkgver=1.8.1
-pkgrel=1
-pkgdesc=A fast Mercurial log navigator
-arch=('any')
-url=http://www.logilab.org/project/hgview/;
-license=('GPL')
-depends=('mercurial=1.6')
-optdepends=('python2-qscintilla: for Qt interface'
-'python2-docutils: for Qt interface'
-'python2-urwid: for CLI interface'
-'python2-pyinotify: for CLI interface'
-'python2-pygments: for CLI interface')
-makedepends=('python2-pyqt' 'asciidoc' 'xmlto')
-source=(http://download.logilab.org/pub/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('0945c3cc7f98677a9268c58bc0684d01')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  python2 setup.py build
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  python2 setup.py install --root=$pkgdir/ --optimize=1
-
-  # fix man page placement
-  install -d $pkgdir/usr/share
-  mv $pkgdir/usr/man $pkgdir/usr/share/man
-}
-

Copied: hgview/repos/community-any/PKGBUILD (from rev 118269, 
hgview/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-04 10:41:05 UTC (rev 118270)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz ggi...@gmail.com
+# Contributor: TDY t...@gmx.com
+
+pkgname=hgview
+pkgver=1.8.2
+pkgrel=1
+pkgdesc=A fast Mercurial log navigator
+arch=('any')
+url=http://www.logilab.org/project/hgview/;
+license=('GPL')
+depends=('mercurial=1.6')
+optdepends=('python2-qscintilla: for Qt interface'
+'python2-docutils: for Qt interface'
+'python2-urwid: for CLI interface'
+'python2-pyinotify: for CLI interface'
+'python2-pygments: for CLI interface')
+makedepends=('python2-pyqt' 'asciidoc' 'xmlto')
+source=(http://download.logilab.org/pub/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('5f12ef8569041205c17c75f0aa78f9bf')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  python2 setup.py build
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  python2 setup.py install --root=$pkgdir/ --optimize=1
+
+  # fix man page placement
+  install -d $pkgdir/usr/share
+  mv $pkgdir/usr/man $pkgdir/usr/share/man
+}
+



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

2014-09-04 Thread Andrzej Giniewicz
Date: Thursday, September 4, 2014 @ 12:40:57
  Author: aginiewicz
Revision: 118269

upgpkg: hgview 1.8.2-1

hgview: new release

Modified:
  hgview/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 10:33:12 UTC (rev 118268)
+++ PKGBUILD2014-09-04 10:40:57 UTC (rev 118269)
@@ -3,7 +3,7 @@
 # Contributor: TDY t...@gmx.com
 
 pkgname=hgview
-pkgver=1.8.1
+pkgver=1.8.2
 pkgrel=1
 pkgdesc=A fast Mercurial log navigator
 arch=('any')
@@ -17,7 +17,7 @@
 'python2-pygments: for CLI interface')
 makedepends=('python2-pyqt' 'asciidoc' 'xmlto')
 source=(http://download.logilab.org/pub/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('0945c3cc7f98677a9268c58bc0684d01')
+md5sums=('5f12ef8569041205c17c75f0aa78f9bf')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



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

2014-09-04 Thread Florian Pritz
Date: Thursday, September 4, 2014 @ 13:02:24
  Author: bluewind
Revision: 118271

upgpkg: ack 2.14-1

upstream update

Modified:
  ack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 10:41:05 UTC (rev 118270)
+++ PKGBUILD2014-09-04 11:02:24 UTC (rev 118271)
@@ -4,7 +4,7 @@
 # Contributor: Michael S. Walker barrucadu@localhost
 
 pkgname=ack
-pkgver=2.12
+pkgver=2.14
 pkgrel=1
 pkgdesc=A Perl-based grep replacement, aimed at programmers with large trees 
of heterogeneous source code
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('perl-file-next')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/P/PE/PETDANCE/$pkgname-$pkgver.tar.gz)
-md5sums=('11e886ab0ec72173869a82e59227ddf2')
+md5sums=('43cfa05123ba0440fa3958690ee03bac')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



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

2014-09-04 Thread Florian Pritz
Date: Thursday, September 4, 2014 @ 13:02:27
  Author: bluewind
Revision: 118272

archrelease: copy trunk to community-any

Added:
  ack/repos/community-any/PKGBUILD
(from rev 118271, ack/trunk/PKGBUILD)
Deleted:
  ack/repos/community-any/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-04 11:02:24 UTC (rev 118271)
+++ PKGBUILD2014-09-04 11:02:27 UTC (rev 118272)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz f...@xinu.at
-# Contributor:  TDY t...@gmx.com
-# Contributor: Michael S. Walker barrucadu@localhost
-
-pkgname=ack
-pkgver=2.12
-pkgrel=1
-pkgdesc=A Perl-based grep replacement, aimed at programmers with large trees 
of heterogeneous source code
-arch=('any')
-url=http://betterthangrep.com/;
-license=('GPL' 'PerlArtistic')
-depends=('perl-file-next')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/P/PE/PETDANCE/$pkgname-$pkgver.tar.gz)
-md5sums=('11e886ab0ec72173869a82e59227ddf2')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd $srcdir/$pkgname-$pkgver
-  make test
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: ack/repos/community-any/PKGBUILD (from rev 118271, ack/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-04 11:02:27 UTC (rev 118272)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Florian Pritz f...@xinu.at
+# Contributor:  TDY t...@gmx.com
+# Contributor: Michael S. Walker barrucadu@localhost
+
+pkgname=ack
+pkgver=2.14
+pkgrel=1
+pkgdesc=A Perl-based grep replacement, aimed at programmers with large trees 
of heterogeneous source code
+arch=('any')
+url=http://betterthangrep.com/;
+license=('GPL' 'PerlArtistic')
+depends=('perl-file-next')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/P/PE/PETDANCE/$pkgname-$pkgver.tar.gz)
+md5sums=('43cfa05123ba0440fa3958690ee03bac')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make test
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



[arch-commits] Commit in perl-image-exiftool/repos/extra-any (PKGBUILD PKGBUILD)

2014-09-04 Thread Florian Pritz
Date: Thursday, September 4, 2014 @ 13:10:33
  Author: bluewind
Revision: 220935

archrelease: copy trunk to extra-any

Added:
  perl-image-exiftool/repos/extra-any/PKGBUILD
(from rev 220934, perl-image-exiftool/trunk/PKGBUILD)
Deleted:
  perl-image-exiftool/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-04 11:10:28 UTC (rev 220934)
+++ PKGBUILD2014-09-04 11:10:33 UTC (rev 220935)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz bluew...@xinu.at
-# Contributor: tobias tob...@archlinux.org
-# Contributor: Tobias Kieslich tob...@justdreams.de
-# Contributor: Firmicus francois.archlinux.org
-
-pkgname=perl-image-exiftool
-_srcname=Image-ExifTool
-pkgver=9.60
-pkgrel=1
-pkgdesc=Reader and rewriter of EXIF informations that supports raw files
-arch=('any')
-url=http://search.cpan.org/perldoc?exiftool;
-license=('GPL')
-depends=('perl')
-provides=(perl-exiftool=$pkgver)
-replaces=(perl-exiftool)
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/E/EX/EXIFTOOL/${_srcname}-$pkgver.tar.gz)
-md5sums=('d025ebcb4946df14f44fa991ae40a1d6')
-
-build() {
-  cd ${srcdir}/${_srcname}-${pkgver}
-  # install module in vendor directories.
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd ${srcdir}/${_srcname}-${pkgver}
-  make test
-}
-
-package() {
-  cd ${srcdir}/${_srcname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}
-

Copied: perl-image-exiftool/repos/extra-any/PKGBUILD (from rev 220934, 
perl-image-exiftool/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-04 11:10:33 UTC (rev 220935)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Florian Pritz bluew...@xinu.at
+# Contributor: tobias tob...@archlinux.org
+# Contributor: Tobias Kieslich tob...@justdreams.de
+# Contributor: Firmicus francois.archlinux.org
+
+pkgname=perl-image-exiftool
+_srcname=Image-ExifTool
+pkgver=9.70
+pkgrel=1
+pkgdesc=Reader and rewriter of EXIF informations that supports raw files
+arch=('any')
+url=http://search.cpan.org/perldoc?exiftool;
+license=('GPL')
+depends=('perl')
+provides=(perl-exiftool=$pkgver)
+replaces=(perl-exiftool)
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/E/EX/EXIFTOOL/${_srcname}-$pkgver.tar.gz)
+md5sums=('474bb4b097c8e1577067855f88e67bf8')
+
+build() {
+  cd ${srcdir}/${_srcname}-${pkgver}
+  # install module in vendor directories.
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd ${srcdir}/${_srcname}-${pkgver}
+  make test
+}
+
+package() {
+  cd ${srcdir}/${_srcname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}
+



[arch-commits] Commit in perl-image-exiftool/trunk (PKGBUILD)

2014-09-04 Thread Florian Pritz
Date: Thursday, September 4, 2014 @ 13:10:28
  Author: bluewind
Revision: 220934

upgpkg: perl-image-exiftool 9.70-1

upstream update

Modified:
  perl-image-exiftool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-03 20:08:51 UTC (rev 220933)
+++ PKGBUILD2014-09-04 11:10:28 UTC (rev 220934)
@@ -6,7 +6,7 @@
 
 pkgname=perl-image-exiftool
 _srcname=Image-ExifTool
-pkgver=9.60
+pkgver=9.70
 pkgrel=1
 pkgdesc=Reader and rewriter of EXIF informations that supports raw files
 arch=('any')
@@ -17,7 +17,7 @@
 replaces=(perl-exiftool)
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/E/EX/EXIFTOOL/${_srcname}-$pkgver.tar.gz)
-md5sums=('d025ebcb4946df14f44fa991ae40a1d6')
+md5sums=('474bb4b097c8e1577067855f88e67bf8')
 
 build() {
   cd ${srcdir}/${_srcname}-${pkgver}



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

2014-09-04 Thread Florian Pritz
Date: Thursday, September 4, 2014 @ 13:12:14
  Author: bluewind
Revision: 118274

archrelease: copy trunk to community-any

Added:
  inxi/repos/community-any/PKGBUILD
(from rev 118273, inxi/trunk/PKGBUILD)
  inxi/repos/community-any/upgpkg
(from rev 118273, inxi/trunk/upgpkg)
Deleted:
  inxi/repos/community-any/PKGBUILD
  inxi/repos/community-any/upgpkg

--+
 PKGBUILD |   72 ++---
 upgpkg   |8 +++---
 2 files changed, 40 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-04 11:12:11 UTC (rev 118273)
+++ PKGBUILD2014-09-04 11:12:14 UTC (rev 118274)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz f...@gmx.at
-pkgname=inxi
-pkgver=2.2.1
-pkgrel=1
-pkgdesc=script to get system information
-arch=('any')
-url=http://inxi.org;
-license=('GPL')
-depends=(coreutils gawk grep pciutils procps-ng sed)
-optdepends=(
-  dmidecode: inxi -M if no sys machine data
-  file: inxi -o unmounted file system
-  hddtemp: inxi -Dx show hdd temp
-  net-tools: inxi -i ip lan-deprecated
-  iproute2: inxi -i ip lan
-  lm_sensors: inxi -s sensors output
-  usbutils: inxi -A usb audio;-N usb networking
-  kmod: inxi -Ax,-Nx module version
-  systemd-sysvcompat: inxi -I runlevel
-  sudo: inxi -Dx hddtemp-user;-o file-user
-  mesa-demos: inxi -G glx info
-  xorg-xdpyinfo: inxi -G multi screen resolution
-  xorg-xprop: inxi -S desktop data
-  xorg-xrandr: inxi -G single screen resolution
-)
-source=(ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('5026101c4f1f823c9dec2e09f519a3a4')
-
-package() {
-  cd $srcdir
-  install -D -m755 inxi $pkgdir/usr/bin/inxi
-  install -D -m755 inxi.1.gz $pkgdir/usr/share/man/man1/inxi.1.gz
-}
-
-# vim:set ts=2 sw=2 et:

Copied: inxi/repos/community-any/PKGBUILD (from rev 118273, inxi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-04 11:12:14 UTC (rev 118274)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Florian Pritz f...@gmx.at
+pkgname=inxi
+pkgver=2.2.3
+pkgrel=1
+pkgdesc=script to get system information
+arch=('any')
+url=http://inxi.org;
+license=('GPL')
+depends=(coreutils gawk grep pciutils procps-ng sed)
+optdepends=(
+  dmidecode: inxi -M if no sys machine data
+  file: inxi -o unmounted file system
+  hddtemp: inxi -Dx show hdd temp
+  net-tools: inxi -i ip lan-deprecated
+  iproute2: inxi -i ip lan
+  lm_sensors: inxi -s sensors output
+  usbutils: inxi -A usb audio;-N usb networking
+  kmod: inxi -Ax,-Nx module version
+  systemd-sysvcompat: inxi -I runlevel
+  sudo: inxi -Dx hddtemp-user;-o file-user
+  mesa-demos: inxi -G glx info
+  xorg-xdpyinfo: inxi -G multi screen resolution
+  xorg-xprop: inxi -S desktop data
+  xorg-xrandr: inxi -G single screen resolution
+)
+source=(ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('574a653b3aee6590ba32f750e063bb35')
+
+package() {
+  cd $srcdir
+  install -D -m755 inxi $pkgdir/usr/bin/inxi
+  install -D -m755 inxi.1.gz $pkgdir/usr/share/man/man1/inxi.1.gz
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: upgpkg
===
--- upgpkg  2014-09-04 11:12:11 UTC (rev 118273)
+++ upgpkg  2014-09-04 11:12:14 UTC (rev 118274)
@@ -1,4 +0,0 @@
-upgpkg_pre_upgrade() {
-  wget http://inxi.googlecode.com/svn/trunk/inxi.tar.gz -O 
inxi-$_newpkgver.tar.gz
-  scp inxi-$_newpkgver.tar.gz nymeria:/srv/ftp/other/community/inxi
-}

Copied: inxi/repos/community-any/upgpkg (from rev 118273, inxi/trunk/upgpkg)
===
--- upgpkg  (rev 0)
+++ upgpkg  2014-09-04 11:12:14 UTC (rev 118274)
@@ -0,0 +1,4 @@
+upgpkg_pre_upgrade() {
+  wget http://inxi.googlecode.com/svn/trunk/inxi.tar.gz -O 
inxi-$_newpkgver.tar.gz
+  scp inxi-$_newpkgver.tar.gz nymeria:/srv/ftp/other/community/inxi
+}



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

2014-09-04 Thread Florian Pritz
Date: Thursday, September 4, 2014 @ 13:12:11
  Author: bluewind
Revision: 118273

upgpkg: inxi 2.2.3-1

upstream update

Modified:
  inxi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 11:02:27 UTC (rev 118272)
+++ PKGBUILD2014-09-04 11:12:11 UTC (rev 118273)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Florian Pritz f...@gmx.at
 pkgname=inxi
-pkgver=2.2.1
+pkgver=2.2.3
 pkgrel=1
 pkgdesc=script to get system information
 arch=('any')
@@ -25,7 +25,7 @@
   xorg-xrandr: inxi -G single screen resolution
 )
 
source=(ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('5026101c4f1f823c9dec2e09f519a3a4')
+md5sums=('574a653b3aee6590ba32f750e063bb35')
 
 package() {
   cd $srcdir



[arch-commits] Commit in thin-provisioning-tools/repos (4 files)

2014-09-04 Thread Thomas Bächler
Date: Thursday, September 4, 2014 @ 13:18:07
  Author: thomas
Revision: 220937

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

Added:
  thin-provisioning-tools/repos/testing-i686/PKGBUILD
(from rev 220936, thin-provisioning-tools/trunk/PKGBUILD)
  thin-provisioning-tools/repos/testing-x86_64/PKGBUILD
(from rev 220936, thin-provisioning-tools/trunk/PKGBUILD)
Deleted:
  thin-provisioning-tools/repos/testing-i686/PKGBUILD
  thin-provisioning-tools/repos/testing-x86_64/PKGBUILD

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

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2014-09-04 11:17:56 UTC (rev 220936)
+++ testing-i686/PKGBUILD   2014-09-04 11:18:07 UTC (rev 220937)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-# Contributor: Jason Hall cake...@gmail.com
-
-pkgname=thin-provisioning-tools
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=A suite of tools for manipulating the metadata of the dm-thin 
device-mapper target
-arch=('i686' 'x86_64')
-url=https://github.com/jthornber/thin-provisioning-tools;
-license=('GPL3')
-depends=('expat' 'gcc-libs' 'libaio')
-makedepends=('boost')
-source=(https://github.com/jthornber/${pkgname}/archive/v${pkgver}.tar.gz)
-sha1sums=('4bb74cd7043a0ea35b18d3d2ef0efa18afcc9277')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  autoconf
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} BINDIR=${pkgdir}/usr/bin MANDIR=/usr/share/man 
install 
-}
-

Copied: thin-provisioning-tools/repos/testing-i686/PKGBUILD (from rev 220936, 
thin-provisioning-tools/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-09-04 11:18:07 UTC (rev 220937)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+# Contributor: Jason Hall cake...@gmail.com
+
+pkgname=thin-provisioning-tools
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=A suite of tools for manipulating the metadata of the dm-thin 
device-mapper target
+arch=('i686' 'x86_64')
+url=https://github.com/jthornber/thin-provisioning-tools;
+license=('GPL3')
+depends=('expat' 'gcc-libs' 'libaio')
+makedepends=('boost')
+source=(https://github.com/jthornber/${pkgname}/archive/v${pkgver}.tar.gz)
+sha1sums=('af7cbaf3c7cd8f15e618bd5136afb89077afceb7')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  autoconf
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} BINDIR=${pkgdir}/usr/bin MANDIR=/usr/share/man 
install 
+}
+

Deleted: testing-x86_64/PKGBUILD
===
--- testing-x86_64/PKGBUILD 2014-09-04 11:17:56 UTC (rev 220936)
+++ testing-x86_64/PKGBUILD 2014-09-04 11:18:07 UTC (rev 220937)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-# Contributor: Jason Hall cake...@gmail.com
-
-pkgname=thin-provisioning-tools
-pkgver=0.4.0
-pkgrel=1
-pkgdesc=A suite of tools for manipulating the metadata of the dm-thin 
device-mapper target
-arch=('i686' 'x86_64')
-url=https://github.com/jthornber/thin-provisioning-tools;
-license=('GPL3')
-depends=('expat' 'gcc-libs' 'libaio')
-makedepends=('boost')
-source=(https://github.com/jthornber/${pkgname}/archive/v${pkgver}.tar.gz)
-sha1sums=('4bb74cd7043a0ea35b18d3d2ef0efa18afcc9277')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  autoconf
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} BINDIR=${pkgdir}/usr/bin MANDIR=/usr/share/man 
install 
-}
-

Copied: thin-provisioning-tools/repos/testing-x86_64/PKGBUILD (from rev 220936, 
thin-provisioning-tools/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-09-04 11:18:07 UTC (rev 220937)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+# Contributor: Jason Hall cake...@gmail.com
+
+pkgname=thin-provisioning-tools
+pkgver=0.4.1
+pkgrel=1
+pkgdesc=A suite of tools for manipulating the metadata of the dm-thin 
device-mapper target
+arch=('i686' 'x86_64')
+url=https://github.com/jthornber/thin-provisioning-tools;
+license=('GPL3')
+depends=('expat' 'gcc-libs' 'libaio')
+makedepends=('boost')
+source=(https://github.com/jthornber/${pkgname}/archive/v${pkgver}.tar.gz)
+sha1sums=('af7cbaf3c7cd8f15e618bd5136afb89077afceb7')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  autoconf
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd 

[arch-commits] Commit in thin-provisioning-tools/trunk (PKGBUILD)

2014-09-04 Thread Thomas Bächler
Date: Thursday, September 4, 2014 @ 13:17:56
  Author: thomas
Revision: 220936

upgpkg: thin-provisioning-tools 0.4.1-1

Modified:
  thin-provisioning-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 11:10:33 UTC (rev 220935)
+++ PKGBUILD2014-09-04 11:17:56 UTC (rev 220936)
@@ -3,7 +3,7 @@
 # Contributor: Jason Hall cake...@gmail.com
 
 pkgname=thin-provisioning-tools
-pkgver=0.4.0
+pkgver=0.4.1
 pkgrel=1
 pkgdesc=A suite of tools for manipulating the metadata of the dm-thin 
device-mapper target
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('expat' 'gcc-libs' 'libaio')
 makedepends=('boost')
 source=(https://github.com/jthornber/${pkgname}/archive/v${pkgver}.tar.gz)
-sha1sums=('4bb74cd7043a0ea35b18d3d2ef0efa18afcc9277')
+sha1sums=('af7cbaf3c7cd8f15e618bd5136afb89077afceb7')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2014-09-04 Thread Sergej Pupykin
Date: Thursday, September 4, 2014 @ 13:45:31
  Author: spupykin
Revision: 118275

upgpkg: libmediainfo 0.7.70-1

upd

Modified:
  libmediainfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 11:12:14 UTC (rev 118274)
+++ PKGBUILD2014-09-04 11:45:31 UTC (rev 118275)
@@ -3,7 +3,7 @@
 # Maintainer:  hydro hy...@freenet.de
 
 pkgname=libmediainfo
-pkgver=0.7.69
+pkgver=0.7.70
 pkgrel=1
 pkgdesc=shared library for mediainfo
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('libtool' 'automake' 'autoconf')
 source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2
libmediainfo-0.7.50-libmms.patch)
-md5sums=('eeff431e358720e71741ad9a8aaf08cd'
+md5sums=('1d241e049a8d6e7c647a1d2df8dadd02'
  '2f4b21cc250f663d52b497dedb963e3b')
 
 build() {



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

2014-09-04 Thread Sergej Pupykin
Date: Thursday, September 4, 2014 @ 13:45:56
  Author: spupykin
Revision: 118277

upgpkg: mediainfo 0.7.70-1

upd

Modified:
  mediainfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 11:45:51 UTC (rev 118276)
+++ PKGBUILD2014-09-04 11:45:56 UTC (rev 118277)
@@ -3,7 +3,7 @@
 # Maintainer: hydro hy...@freenet.de
 
 pkgname=mediainfo
-pkgver=0.7.69
+pkgver=0.7.70
 pkgrel=1
 pkgdesc=supplies technical and tag information about a video or audio file
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('libmediainfo')
 makedepends=('libtool' 'automake' 'autoconf')
 
source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2)
-md5sums=('ec6fd980cc02f072c8671bdef158e6eb')
+md5sums=('35c38e4e0d08232e65acec74d6bfc509')
 
 build() {
   cd $srcdir/MediaInfo/Project/GNU/CLI



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

2014-09-04 Thread Sergej Pupykin
Date: Thursday, September 4, 2014 @ 13:45:51
  Author: spupykin
Revision: 118276

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

Added:
  libmediainfo/repos/community-i686/PKGBUILD
(from rev 118275, libmediainfo/trunk/PKGBUILD)
  libmediainfo/repos/community-i686/libmediainfo-0.7.50-libmms.patch
(from rev 118275, libmediainfo/trunk/libmediainfo-0.7.50-libmms.patch)
  libmediainfo/repos/community-x86_64/PKGBUILD
(from rev 118275, libmediainfo/trunk/PKGBUILD)
  libmediainfo/repos/community-x86_64/libmediainfo-0.7.50-libmms.patch
(from rev 118275, libmediainfo/trunk/libmediainfo-0.7.50-libmms.patch)
Deleted:
  libmediainfo/repos/community-i686/PKGBUILD
  libmediainfo/repos/community-i686/libmediainfo-0.7.50-libmms.patch
  libmediainfo/repos/community-x86_64/PKGBUILD
  libmediainfo/repos/community-x86_64/libmediainfo-0.7.50-libmms.patch

---+
 /PKGBUILD |   76 +++
 /libmediainfo-0.7.50-libmms.patch |  100 
 community-i686/PKGBUILD   |   38 ---
 community-i686/libmediainfo-0.7.50-libmms.patch   |   50 --
 community-x86_64/PKGBUILD |   38 ---
 community-x86_64/libmediainfo-0.7.50-libmms.patch |   50 --
 6 files changed, 176 insertions(+), 176 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-04 11:45:31 UTC (rev 118275)
+++ community-i686/PKGBUILD 2014-09-04 11:45:51 UTC (rev 118276)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer:  hydro hy...@freenet.de
-
-pkgname=libmediainfo
-pkgver=0.7.69
-pkgrel=1
-pkgdesc=shared library for mediainfo
-arch=('i686' 'x86_64')
-url=http://mediainfo.sourceforge.net;
-license=('GPL')
-depends=( 'curl' 'libmms' 'libzen')
-makedepends=('libtool' 'automake' 'autoconf')
-source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2
-   libmediainfo-0.7.50-libmms.patch)
-md5sums=('eeff431e358720e71741ad9a8aaf08cd'
- '2f4b21cc250f663d52b497dedb963e3b')
-
-build() {
-  cd $srcdir/MediaInfoLib/Project/GNU/Library
-  sh ./autogen
-  ./configure --prefix=/usr --enable-shared --disable-static --with-libcurl 
--with-libmms
-  make clean
-  (cd ../../..  patch -p1 $srcdir/libmediainfo-0.7.50-libmms.patch)
-  make
-}
-
-package() {
-  cd $srcdir/MediaInfoLib/Project/GNU/Library
-  make DESTDIR=$pkgdir install
-  for i in MediaInfo MediaInfoDLL; do
-install -dm 755 $pkgdir/usr/include/$i
-install -m 644 $srcdir/MediaInfoLib/Source/$i/*.h $pkgdir/usr/include/$i
-  done
-  install -dm 755 $pkgdir/usr/lib/pkgconfig
-  install -m 644 $srcdir/MediaInfoLib/Project/GNU/Library/libmediainfo.pc 
$pkgdir/usr/lib/pkgconfig
-  sed -i -e 's|Version: |Version: '$pkgver'|g' 
$pkgdir/usr/lib/pkgconfig/libmediainfo.pc
-}

Copied: libmediainfo/repos/community-i686/PKGBUILD (from rev 118275, 
libmediainfo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-04 11:45:51 UTC (rev 118276)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer:  hydro hy...@freenet.de
+
+pkgname=libmediainfo
+pkgver=0.7.70
+pkgrel=1
+pkgdesc=shared library for mediainfo
+arch=('i686' 'x86_64')
+url=http://mediainfo.sourceforge.net;
+license=('GPL')
+depends=( 'curl' 'libmms' 'libzen')
+makedepends=('libtool' 'automake' 'autoconf')
+source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2
+   libmediainfo-0.7.50-libmms.patch)
+md5sums=('1d241e049a8d6e7c647a1d2df8dadd02'
+ '2f4b21cc250f663d52b497dedb963e3b')
+
+build() {
+  cd $srcdir/MediaInfoLib/Project/GNU/Library
+  sh ./autogen
+  ./configure --prefix=/usr --enable-shared --disable-static --with-libcurl 
--with-libmms
+  make clean
+  (cd ../../..  patch -p1 $srcdir/libmediainfo-0.7.50-libmms.patch)
+  make
+}
+
+package() {
+  cd $srcdir/MediaInfoLib/Project/GNU/Library
+  make DESTDIR=$pkgdir install
+  for i in MediaInfo MediaInfoDLL; do
+install -dm 755 $pkgdir/usr/include/$i
+install -m 644 $srcdir/MediaInfoLib/Source/$i/*.h $pkgdir/usr/include/$i
+  done
+  install -dm 755 $pkgdir/usr/lib/pkgconfig
+  install -m 644 $srcdir/MediaInfoLib/Project/GNU/Library/libmediainfo.pc 
$pkgdir/usr/lib/pkgconfig
+  sed -i -e 's|Version: |Version: '$pkgver'|g' 
$pkgdir/usr/lib/pkgconfig/libmediainfo.pc
+}

Deleted: community-i686/libmediainfo-0.7.50-libmms.patch
===
--- community-i686/libmediainfo-0.7.50-libmms.patch 2014-09-04 11:45:31 UTC 
(rev 118275)
+++ community-i686/libmediainfo-0.7.50-libmms.patch 2014-09-04 11:45:51 UTC 
(rev 118276)
@@ -1,50 +0,0 @@
-diff -wbBur 

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

2014-09-04 Thread Sergej Pupykin
Date: Thursday, September 4, 2014 @ 13:46:12
  Author: spupykin
Revision: 118279

upgpkg: mediainfo-gui 0.7.70-1

upd

Modified:
  mediainfo-gui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 11:46:09 UTC (rev 118278)
+++ PKGBUILD2014-09-04 11:46:12 UTC (rev 118279)
@@ -3,8 +3,8 @@
 # Maintainer: hydro hy...@freenet.de
 
 pkgname=mediainfo-gui
-pkgver=0.7.69
-pkgrel=2
+pkgver=0.7.70
+pkgrel=1
 pkgdesc=GUI for mediainfo
 arch=('i686' 'x86_64')
 url=http://mediainfo.sourceforge.net;
@@ -13,7 +13,7 @@
 makedepends=('imagemagick')
 install=mediainfo-gui.install
 source=(http://downloads.sourceforge.net/mediainfo/mediainfo_${pkgver}.tar.bz2)
-md5sums=('ec6fd980cc02f072c8671bdef158e6eb')
+md5sums=('35c38e4e0d08232e65acec74d6bfc509')
 
 build() {
   cd MediaInfo/Project/GNU/GUI



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

2014-09-04 Thread Sergej Pupykin
Date: Thursday, September 4, 2014 @ 13:46:09
  Author: spupykin
Revision: 118278

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-04 11:45:56 UTC (rev 118277)
+++ community-i686/PKGBUILD 2014-09-04 11:46:09 UTC (rev 118278)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: hydro hy...@freenet.de
-
-pkgname=mediainfo
-pkgver=0.7.69
-pkgrel=1
-pkgdesc=supplies technical and tag information about a video or audio file
-arch=('i686' 'x86_64')
-url=http://mediainfo.sourceforge.net;
-license=('GPL')
-depends=('libmediainfo')
-makedepends=('libtool' 'automake' 'autoconf')
-source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2)
-md5sums=('ec6fd980cc02f072c8671bdef158e6eb')
-
-build() {
-  cd $srcdir/MediaInfo/Project/GNU/CLI
-  sh ./autogen
-  ./configure --prefix=/usr
-  make
-}
-package() {
-  cd $srcdir/MediaInfo/Project/GNU/CLI
-  make DESTDIR=$pkgdir install
-}

Copied: mediainfo/repos/community-i686/PKGBUILD (from rev 118277, 
mediainfo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-04 11:46:09 UTC (rev 118278)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: hydro hy...@freenet.de
+
+pkgname=mediainfo
+pkgver=0.7.70
+pkgrel=1
+pkgdesc=supplies technical and tag information about a video or audio file
+arch=('i686' 'x86_64')
+url=http://mediainfo.sourceforge.net;
+license=('GPL')
+depends=('libmediainfo')
+makedepends=('libtool' 'automake' 'autoconf')
+source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2)
+md5sums=('35c38e4e0d08232e65acec74d6bfc509')
+
+build() {
+  cd $srcdir/MediaInfo/Project/GNU/CLI
+  sh ./autogen
+  ./configure --prefix=/usr
+  make
+}
+package() {
+  cd $srcdir/MediaInfo/Project/GNU/CLI
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-09-04 11:45:56 UTC (rev 118277)
+++ community-x86_64/PKGBUILD   2014-09-04 11:46:09 UTC (rev 118278)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: hydro hy...@freenet.de
-
-pkgname=mediainfo
-pkgver=0.7.69
-pkgrel=1
-pkgdesc=supplies technical and tag information about a video or audio file
-arch=('i686' 'x86_64')
-url=http://mediainfo.sourceforge.net;
-license=('GPL')
-depends=('libmediainfo')
-makedepends=('libtool' 'automake' 'autoconf')
-source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2)
-md5sums=('ec6fd980cc02f072c8671bdef158e6eb')
-
-build() {
-  cd $srcdir/MediaInfo/Project/GNU/CLI
-  sh ./autogen
-  ./configure --prefix=/usr
-  make
-}
-package() {
-  cd $srcdir/MediaInfo/Project/GNU/CLI
-  make DESTDIR=$pkgdir install
-}

Copied: mediainfo/repos/community-x86_64/PKGBUILD (from rev 118277, 
mediainfo/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-09-04 11:46:09 UTC (rev 118278)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: hydro hy...@freenet.de
+
+pkgname=mediainfo
+pkgver=0.7.70
+pkgrel=1
+pkgdesc=supplies technical and tag information about a video or audio file
+arch=('i686' 'x86_64')
+url=http://mediainfo.sourceforge.net;
+license=('GPL')
+depends=('libmediainfo')
+makedepends=('libtool' 'automake' 'autoconf')
+source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2)
+md5sums=('35c38e4e0d08232e65acec74d6bfc509')
+
+build() {
+  cd $srcdir/MediaInfo/Project/GNU/CLI
+  sh ./autogen
+  ./configure --prefix=/usr
+  make
+}
+package() {
+  cd $srcdir/MediaInfo/Project/GNU/CLI
+  make DESTDIR=$pkgdir install
+}



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

2014-09-04 Thread Sergej Pupykin
Date: Thursday, September 4, 2014 @ 13:46:25
  Author: spupykin
Revision: 118280

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

Added:
  mediainfo-gui/repos/community-i686/PKGBUILD
(from rev 118279, mediainfo-gui/trunk/PKGBUILD)
  mediainfo-gui/repos/community-i686/mediainfo-gui.install
(from rev 118279, mediainfo-gui/trunk/mediainfo-gui.install)
  mediainfo-gui/repos/community-x86_64/PKGBUILD
(from rev 118279, mediainfo-gui/trunk/PKGBUILD)
  mediainfo-gui/repos/community-x86_64/mediainfo-gui.install
(from rev 118279, mediainfo-gui/trunk/mediainfo-gui.install)
Deleted:
  mediainfo-gui/repos/community-i686/PKGBUILD
  mediainfo-gui/repos/community-i686/mediainfo-gui.install
  mediainfo-gui/repos/community-x86_64/PKGBUILD
  mediainfo-gui/repos/community-x86_64/mediainfo-gui.install

+
 /PKGBUILD  |   70 +++
 /mediainfo-gui.install |   24 ++
 community-i686/PKGBUILD|   35 ---
 community-i686/mediainfo-gui.install   |   12 -
 community-x86_64/PKGBUILD  |   35 ---
 community-x86_64/mediainfo-gui.install |   12 -
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-04 11:46:12 UTC (rev 118279)
+++ community-i686/PKGBUILD 2014-09-04 11:46:25 UTC (rev 118280)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: hydro hy...@freenet.de
-
-pkgname=mediainfo-gui
-pkgver=0.7.69
-pkgrel=2
-pkgdesc=GUI for mediainfo
-arch=('i686' 'x86_64')
-url=http://mediainfo.sourceforge.net;
-license=('GPL')
-depends=('libmediainfo' 'wxgtk' 'libsm' 'desktop-file-utils')
-makedepends=('imagemagick')
-install=mediainfo-gui.install
-source=(http://downloads.sourceforge.net/mediainfo/mediainfo_${pkgver}.tar.bz2)
-md5sums=('ec6fd980cc02f072c8671bdef158e6eb')
-
-build() {
-  cd MediaInfo/Project/GNU/GUI
-  sh ./autogen
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd MediaInfo/Project/GNU/GUI
-  make DESTDIR=$pkgdir install
-  _iconsize=`identify $srcdir/MediaInfo/Source/Resource/Image/MediaInfo.png | 
grep -oP ' \d+x\d+ ' | tr -d ' '`
-  install -D -m 644 $srcdir/MediaInfo/Source/Resource/Image/MediaInfo.png \
-
$pkgdir/usr/share/icons/hicolor/${_iconsize}/apps/mediainfo.png
-  install -D -m 644 $srcdir/MediaInfo/Source/Resource/Image/MediaInfo.png \
-$pkgdir/usr/share/pixmaps/mediainfo-gui.png
-  install -D -m 644 $srcdir/MediaInfo/Project/GNU/GUI/mediainfo-gui.desktop \
-$pkgdir/usr/share/applications/mediainfo-gui.desktop
-}

Copied: mediainfo-gui/repos/community-i686/PKGBUILD (from rev 118279, 
mediainfo-gui/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-04 11:46:25 UTC (rev 118280)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: hydro hy...@freenet.de
+
+pkgname=mediainfo-gui
+pkgver=0.7.70
+pkgrel=1
+pkgdesc=GUI for mediainfo
+arch=('i686' 'x86_64')
+url=http://mediainfo.sourceforge.net;
+license=('GPL')
+depends=('libmediainfo' 'wxgtk' 'libsm' 'desktop-file-utils')
+makedepends=('imagemagick')
+install=mediainfo-gui.install
+source=(http://downloads.sourceforge.net/mediainfo/mediainfo_${pkgver}.tar.bz2)
+md5sums=('35c38e4e0d08232e65acec74d6bfc509')
+
+build() {
+  cd MediaInfo/Project/GNU/GUI
+  sh ./autogen
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd MediaInfo/Project/GNU/GUI
+  make DESTDIR=$pkgdir install
+  _iconsize=`identify $srcdir/MediaInfo/Source/Resource/Image/MediaInfo.png | 
grep -oP ' \d+x\d+ ' | tr -d ' '`
+  install -D -m 644 $srcdir/MediaInfo/Source/Resource/Image/MediaInfo.png \
+
$pkgdir/usr/share/icons/hicolor/${_iconsize}/apps/mediainfo.png
+  install -D -m 644 $srcdir/MediaInfo/Source/Resource/Image/MediaInfo.png \
+$pkgdir/usr/share/pixmaps/mediainfo-gui.png
+  install -D -m 644 $srcdir/MediaInfo/Project/GNU/GUI/mediainfo-gui.desktop \
+$pkgdir/usr/share/applications/mediainfo-gui.desktop
+}

Deleted: community-i686/mediainfo-gui.install
===
--- community-i686/mediainfo-gui.install2014-09-04 11:46:12 UTC (rev 
118279)
+++ community-i686/mediainfo-gui.install2014-09-04 11:46:25 UTC (rev 
118280)
@@ -1,12 +0,0 @@
-post_install() {
-  which gtk-update-icon-cache /dev/null  gtk-update-icon-cache -q -t -f 
usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: mediainfo-gui/repos/community-i686/mediainfo-gui.install (from rev 

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

2014-09-04 Thread Evangelos Foutras
Date: Thursday, September 4, 2014 @ 13:56:08
  Author: foutrelis
Revision: 220938

Prepare llvm 3.5.0; can't push yet due to boost rebuild

Added:
  llvm/trunk/llvm-3.5.0-force-link-pass.o.patch
Modified:
  llvm/trunk/PKGBUILD
Deleted:
  llvm/trunk/clang-3.3-use-gold-linker.patch
  llvm/trunk/clang-3.4-fstack-protector-strong.patch
  llvm/trunk/llvm-3.4-provide-cmake-modules.patch

-+
 PKGBUILD|   89 +++-
 clang-3.3-use-gold-linker.patch |   12 -
 clang-3.4-fstack-protector-strong.patch |  165 ---
 llvm-3.4-provide-cmake-modules.patch|  319 --
 llvm-3.5.0-force-link-pass.o.patch  |   28 ++
 5 files changed, 66 insertions(+), 547 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 11:18:07 UTC (rev 220937)
+++ PKGBUILD2014-09-04 11:56:08 UTC (rev 220938)
@@ -11,73 +11,57 @@
 
 pkgname=('llvm' 'llvm-libs' 'llvm-ocaml' 'clang' 'clang-analyzer'
  'clang-tools-extra')
-pkgver=3.4.2
-_base_ver=3.4
+pkgver=3.5.0
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://llvm.org/;
 license=('custom:University of Illinois/NCSA Open Source License')
-makedepends=('libffi' 'python2' 'ocaml' 'python-sphinx')
+makedepends=('libffi' 'python2' 'ocaml' 'python-sphinx' 'chrpath')
 options=('staticlibs')
-source=(http://llvm.org/releases/$pkgver/llvm-$pkgver.src.tar.gz{,.sig}
-http://llvm.org/releases/$pkgver/cfe-$pkgver.src.tar.gz{,.sig}
-
http://llvm.org/releases/$_base_ver/clang-tools-extra-$_base_ver.src.tar.gz{,.sig}
-
http://llvm.org/releases/$_base_ver/compiler-rt-$_base_ver.src.tar.gz{,.sig}
-clang-3.3-use-gold-linker.patch
-clang-3.4-fstack-protector-strong.patch
-llvm-3.4-provide-cmake-modules.patch
+source=(http://llvm.org/releases/$pkgver/llvm-$pkgver.src.tar.xz{,.sig}
+http://llvm.org/releases/$pkgver/cfe-$pkgver.src.tar.xz{,.sig}
+
http://llvm.org/releases/$pkgver/clang-tools-extra-$pkgver.src.tar.xz{,.sig}
+http://llvm.org/releases/$pkgver/compiler-rt-$pkgver.src.tar.xz{,.sig}
+llvm-3.5.0-force-link-pass.o.patch
 llvm-Config-config.h
 llvm-Config-llvm-config.h)
-sha256sums=('17038d47069ad0700c063caed76f0c7259628b0e79651ce2b540d506f2f1efd7'
+sha256sums=('28e199f368ef0a4666708f31c7991ad3bcc3a578342b0306526dd35f07595c03'
 'SKIP'
-'5ba6f5772f8d00f445209356a7daf83c5bca2da5acd10de517ad2359ae95bc10'
+'fc80992e004b06f6c7afb612de1cdaa9ac9d25811c55f94fcf7331d9b81cdb8b'
 'SKIP'
-'ba85187551ae97fe1c8ab569903beae5ff0900e21233e5eb5389f6ceab1028b4'
+'2981beb378afb5aa5c50ed017720a42a33e77e902c7086ad2d412ef4fa931f69'
 'SKIP'
-'f37c89b1383ce462d47537a0245ac798600887a9be9f63073e16b79ed536ab5c'
+'a4b3e655832bf8d9a357ea2c771db347237460e131988cbb96cda40ff39a8136'
 'SKIP'
-'8240adda155d7961eeb5d07ed50ead10cb7125f70283dff7f1c9fee9df3cea09'
-'7a2a1ddc94f67e643c1ab74601ec07deb6d5d344d4b19ed17c900afb2f6f2863'
-'b6bb154d5ec998328e818bb09acfc6229e41367ba45cea7cc5b2dd2a7c835cf5'
+'5702053503d49448598eda1b8dc8c263f0df9ad7486833273e3987b5dec25a19'
 '312574e655f9a87784ca416949c505c452b819fad3061f2cde8aced6540a19a3'
 '597dc5968c695bbdbb0eac9e8eb5117fcd2773bc91edf5ec103ecab8bc48')
 
 prepare() {
-  # Change directory names to release names so we don't need to change the
-  # whole PKGBUILD
-  mv llvm-$pkgver{.src,}
-  mv cfe-$pkgver.src clang-$pkgver
+  cd $srcdir/llvm-$pkgver.src
 
-  cd $srcdir/llvm-$pkgver
-
   # At the present, clang must reside inside the LLVM source code tree to build
   # See http://llvm.org/bugs/show_bug.cgi?id=4840
-  mv $srcdir/clang-$pkgver tools/clang
+  mv $srcdir/cfe-$pkgver.src tools/clang
 
-  mv $srcdir/clang-tools-extra-$_base_ver tools/clang/tools/extra
+  mv $srcdir/clang-tools-extra-$pkgver.src tools/clang/tools/extra
 
-  mv $srcdir/compiler-rt-$_base_ver projects/compiler-rt
+  mv $srcdir/compiler-rt-$pkgver.src projects/compiler-rt
 
   # Fix docs installation directory
   sed -i 's:\$(PROJ_prefix)/docs/llvm:$(PROJ_prefix)/share/doc/llvm:' \
 Makefile.config.in
 
-  # Make -flto work; use ld.gold instead of the default linker
-  patch -d tools/clang -Np1 -i $srcdir/clang-3.3-use-gold-linker.patch
+  # Fix definition of LLVM_CMAKE_DIR in LLVMConfig.cmake
+  sed -i 's/$(DESTDIR)$(PROJ_prefix)/$(PROJ_prefix)/' cmake/modules/Makefile
 
-  # Add command line option -fstack-protector-strong
-  # http://reviews.llvm.org/rL201120
-  patch -d tools/clang -Np0 -i 
$srcdir/clang-3.4-fstack-protector-strong.patch
-
-  # Provide CMake modules (FS#38705)
-  # http://reviews.llvm.org/rL201047
-  # http://reviews.llvm.org/rL201048
-  # http://reviews.llvm.org/rL201053
-  patch -Np0 -i 

[arch-commits] Commit in java-common/trunk (PKGBUILD install_java-common.sh)

2014-09-04 Thread Guillaume Alaux
Date: Thursday, September 4, 2014 @ 15:50:20
  Author: guillaume
Revision: 220939

Fix FS#41814 add missing double quotes on current JDK check

Modified:
  java-common/trunk/PKGBUILD
  java-common/trunk/install_java-common.sh

+
 PKGBUILD   |2 +-
 install_java-common.sh |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 11:56:08 UTC (rev 220938)
+++ PKGBUILD2014-09-04 13:50:20 UTC (rev 220939)
@@ -1,7 +1,7 @@
 # Maintainer: Guillaume ALAUX guilla...@archlinux.org
 pkgname=java-common
 pkgver=1
-pkgrel=6
+pkgrel=7
 pkgdesc='Common files for Java Environments'
 arch=('any')
 url='www.archlinux.org'

Modified: install_java-common.sh
===
--- install_java-common.sh  2014-09-04 11:56:08 UTC (rev 220938)
+++ install_java-common.sh  2014-09-04 13:50:20 UTC (rev 220939)
@@ -22,7 +22,7 @@
 
 pre_install() {
   _curr_def=$(readlink ${OLD_DEFAULT_PATH}  true)
-  if [ -n ${_curr_def} ]; then
+  if [ -n ${_curr_def} ]; then
 unlink ${OLD_DEFAULT_PATH}  /dev/null 21
 ln -sf ${DEFAULT_NAME} ${OLD_DEFAULT_PATH}
 



[arch-commits] Commit in java-common/repos/extra-any (14 files)

2014-09-04 Thread Guillaume Alaux
Date: Thursday, September 4, 2014 @ 15:51:20
  Author: guillaume
Revision: 220940

archrelease: copy trunk to extra-any

Added:
  java-common/repos/extra-any/PKGBUILD
(from rev 220939, java-common/trunk/PKGBUILD)
  java-common/repos/extra-any/bin_archlinux-java
(from rev 220939, java-common/trunk/bin_archlinux-java)
  java-common/repos/extra-any/bin_java-common-wrapper
(from rev 220939, java-common/trunk/bin_java-common-wrapper)
  java-common/repos/extra-any/install_java-common.sh
(from rev 220939, java-common/trunk/install_java-common.sh)
  java-common/repos/extra-any/profile_jre.csh
(from rev 220939, java-common/trunk/profile_jre.csh)
  java-common/repos/extra-any/profile_jre.sh
(from rev 220939, java-common/trunk/profile_jre.sh)
  java-common/repos/extra-any/test_archlinux-java
(from rev 220939, java-common/trunk/test_archlinux-java)
Deleted:
  java-common/repos/extra-any/PKGBUILD
  java-common/repos/extra-any/bin_archlinux-java
  java-common/repos/extra-any/bin_java-common-wrapper
  java-common/repos/extra-any/install_java-common.sh
  java-common/repos/extra-any/profile_jre.csh
  java-common/repos/extra-any/profile_jre.sh
  java-common/repos/extra-any/test_archlinux-java

-+
 PKGBUILD|   82 +++---
 bin_archlinux-java  |  396 ++---
 bin_java-common-wrapper |4 
 install_java-common.sh  |   94 +++
 profile_jre.csh |   12 
 profile_jre.sh  |   12 
 test_archlinux-java |  610 +++---
 7 files changed, 605 insertions(+), 605 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-04 13:50:20 UTC (rev 220939)
+++ PKGBUILD2014-09-04 13:51:20 UTC (rev 220940)
@@ -1,41 +0,0 @@
-# Maintainer: Guillaume ALAUX guilla...@archlinux.org
-pkgname=java-common
-pkgver=1
-pkgrel=6
-pkgdesc='Common files for Java Environments'
-arch=('any')
-url='www.archlinux.org'
-license=('GPL')
-checkdepends=('wget')
-backup=(etc/profile.d/jre.sh
-etc/profile.d/jre.csh)
-# TODO remove after a while
-replaces=('java-runtime-headless-meta' 'java-runtime-meta' 
'java-environment-meta')
-install=install_java-common.sh
-source=(profile_jre.csh
-profile_jre.sh
-bin_archlinux-java
-test_archlinux-java
-bin_java-common-wrapper
-https://shunit2.googlecode.com/files/shunit2-2.1.6.tgz)
-
-sha256sums=('72fa8a6d2d38f37ab51d36f383fa94bf424d494f0d3712b3af73daaf30046b2b'
-'ffef7d042be3f20e3225780def56bcbadd75a74a3ceecc57c0af23d78e39cb54'
-'00af7fe1894e0edc7663bfbdd626c68171cad7bc7d499f343f2eee9637d4b4c7'
-'c28ffd3acc702e8cb02b3ec18516c0c4287614dd1f5803f9357a7a4c7c798f35'
-'16a4fde19bd34210ff2d06480085f681b4e41e85ec89853e3cafaa8377bcedfb'
-'65a313a76fd5cc1c58c9e19fbc80fc0e418a4cbfbd46d54b35ed5b6e0025d4ee')
-
-check() {
-  cd ${srcdir}
-  ./test_archlinux-java
-}
-
-build() {
-  cd ${srcdir}
-
-  install -D -m 644 profile_jre.sh  ${pkgdir}/etc/profile.d/jre.sh
-  install -D -m 644 profile_jre.csh ${pkgdir}/etc/profile.d/jre.csh
-  install -D -m 755 bin_java-common-wrapper 
${pkgdir}/usr/lib/java-common-wrapper
-  install -D -m 755 bin_archlinux-java ${pkgdir}/usr/bin/archlinux-java
-}

Copied: java-common/repos/extra-any/PKGBUILD (from rev 220939, 
java-common/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-04 13:51:20 UTC (rev 220940)
@@ -0,0 +1,41 @@
+# Maintainer: Guillaume ALAUX guilla...@archlinux.org
+pkgname=java-common
+pkgver=1
+pkgrel=7
+pkgdesc='Common files for Java Environments'
+arch=('any')
+url='www.archlinux.org'
+license=('GPL')
+checkdepends=('wget')
+backup=(etc/profile.d/jre.sh
+etc/profile.d/jre.csh)
+# TODO remove after a while
+replaces=('java-runtime-headless-meta' 'java-runtime-meta' 
'java-environment-meta')
+install=install_java-common.sh
+source=(profile_jre.csh
+profile_jre.sh
+bin_archlinux-java
+test_archlinux-java
+bin_java-common-wrapper
+https://shunit2.googlecode.com/files/shunit2-2.1.6.tgz)
+
+sha256sums=('72fa8a6d2d38f37ab51d36f383fa94bf424d494f0d3712b3af73daaf30046b2b'
+'ffef7d042be3f20e3225780def56bcbadd75a74a3ceecc57c0af23d78e39cb54'
+'00af7fe1894e0edc7663bfbdd626c68171cad7bc7d499f343f2eee9637d4b4c7'
+'c28ffd3acc702e8cb02b3ec18516c0c4287614dd1f5803f9357a7a4c7c798f35'
+'16a4fde19bd34210ff2d06480085f681b4e41e85ec89853e3cafaa8377bcedfb'
+'65a313a76fd5cc1c58c9e19fbc80fc0e418a4cbfbd46d54b35ed5b6e0025d4ee')
+
+check() {
+  cd ${srcdir}
+  ./test_archlinux-java
+}
+
+build() {
+  cd ${srcdir}
+
+  install -D -m 644 profile_jre.sh  ${pkgdir}/etc/profile.d/jre.sh
+  install -D -m 644 profile_jre.csh ${pkgdir}/etc/profile.d/jre.csh
+  install -D -m 755 

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

2014-09-04 Thread Felix Yan
Date: Thursday, September 4, 2014 @ 18:23:43
  Author: fyan
Revision: 118281

upgpkg: ibus-table 1.8.10-1

Modified:
  ibus-table/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 11:46:25 UTC (rev 118280)
+++ PKGBUILD2014-09-04 16:23:43 UTC (rev 118281)
@@ -5,7 +5,7 @@
 # Contributor: Daniel J Griffiths ghost1...@archlinux.us
 
 pkgname=ibus-table
-pkgver=1.8.9
+pkgver=1.8.10
 pkgrel=1
 pkgdesc='IM Engine framework for table-based input methods, such as ZhengMa, 
WuBi, ErBi, CangJie and so on'
 arch=('any')



[arch-commits] Commit in ibus-table/repos/community-any (4 files)

2014-09-04 Thread Felix Yan
Date: Thursday, September 4, 2014 @ 18:24:06
  Author: fyan
Revision: 118282

archrelease: copy trunk to community-any

Added:
  ibus-table/repos/community-any/PKGBUILD
(from rev 118281, ibus-table/trunk/PKGBUILD)
  ibus-table/repos/community-any/sgml_fix.patch
(from rev 118281, ibus-table/trunk/sgml_fix.patch)
Deleted:
  ibus-table/repos/community-any/PKGBUILD
  ibus-table/repos/community-any/sgml_fix.patch

+
 PKGBUILD   |   84 +++
 sgml_fix.patch |   48 +++
 2 files changed, 66 insertions(+), 66 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-04 16:23:43 UTC (rev 118281)
+++ PKGBUILD2014-09-04 16:24:06 UTC (rev 118282)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: coderoar coder...@gmail.com
-# Contributor: leemars leem...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=ibus-table
-pkgver=1.8.9
-pkgrel=1
-pkgdesc='IM Engine framework for table-based input methods, such as ZhengMa, 
WuBi, ErBi, CangJie and so on'
-arch=('any')
-url=http://code.google.com/p/ibus/;
-license=('LGPL')
-makedepends=('git' 'docbook2x' 'docbook-sgml')
-depends=('python-pyenchant' 'ibus' 'aspell-en')
-source=(git+https://github.com/kaio/ibus-table.git#tag=$pkgver;
-sgml_fix.patch)
-sha512sums=('SKIP'
-
'930cd45e9687295159c44d5d4133e99a2259fb8f2ed51675b55b18ca59acb410144689a2d51b052b7bbcbe061f8135ebd511898658d1c71e7004303df969c880')
-
-prepare() {
-  cd ${pkgname}
-
-  patch -p1 -i ../sgml_fix.patch
-}
-
-build() {
-  cd $pkgname
-
-  PYTHON=/usr/bin/python3 ./autogen.sh \
---prefix=/usr \
---libexecdir=/usr/lib/ibus
-
-  make
-}
-
-package() {
-  cd ${pkgname}
-
-  make DESTDIR=${pkgdir} install
-}
-

Copied: ibus-table/repos/community-any/PKGBUILD (from rev 118281, 
ibus-table/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-04 16:24:06 UTC (rev 118282)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: coderoar coder...@gmail.com
+# Contributor: leemars leem...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=ibus-table
+pkgver=1.8.10
+pkgrel=1
+pkgdesc='IM Engine framework for table-based input methods, such as ZhengMa, 
WuBi, ErBi, CangJie and so on'
+arch=('any')
+url=http://code.google.com/p/ibus/;
+license=('LGPL')
+makedepends=('git' 'docbook2x' 'docbook-sgml')
+depends=('python-pyenchant' 'ibus' 'aspell-en')
+source=(git+https://github.com/kaio/ibus-table.git#tag=$pkgver;
+sgml_fix.patch)
+sha512sums=('SKIP'
+
'930cd45e9687295159c44d5d4133e99a2259fb8f2ed51675b55b18ca59acb410144689a2d51b052b7bbcbe061f8135ebd511898658d1c71e7004303df969c880')
+
+prepare() {
+  cd ${pkgname}
+
+  patch -p1 -i ../sgml_fix.patch
+}
+
+build() {
+  cd $pkgname
+
+  PYTHON=/usr/bin/python3 ./autogen.sh \
+--prefix=/usr \
+--libexecdir=/usr/lib/ibus
+
+  make
+}
+
+package() {
+  cd ${pkgname}
+
+  make DESTDIR=${pkgdir} install
+}
+

Deleted: sgml_fix.patch
===
--- sgml_fix.patch  2014-09-04 16:23:43 UTC (rev 118281)
+++ sgml_fix.patch  2014-09-04 16:24:06 UTC (rev 118282)
@@ -1,24 +0,0 @@
-diff --git a/engine/Makefile.am b/engine/Makefile.am
-index 1334876..1836439 100644
 a/engine/Makefile.am
-+++ b/engine/Makefile.am
-@@ -21,6 +21,7 @@
- 
- DOC2MAN = docbook2man
- SGML = ibus-table-createdb.sgml
-+XML = ibus-table-createdb.xml
- BUILT_MANS = ibus-table-createdb.1
- man_MANS = $(BUILT_MANS)
- 
-@@ -65,8 +66,9 @@ MAINTAINERCLEANFILES = \
- 
- ${man_MANS}: ${SGML}
-   $(AM_V_GEN) $(RM) $@; \
--  $(DOC2MAN) ${SGML}; \
--  $(RM) manpage.*
-+  SGML_CATALOG_FILES=/etc/sgml/catalog sgml2xml -xlower -xid ${SGML}  
${XML}; \
-+  $(DOC2MAN) ${XML}; \
-+  $(RM) manpage.* ${XML}
- 
- table.xml: table.xml.in
-   ( \

Copied: ibus-table/repos/community-any/sgml_fix.patch (from rev 118281, 
ibus-table/trunk/sgml_fix.patch)
===
--- sgml_fix.patch  (rev 0)
+++ sgml_fix.patch  2014-09-04 16:24:06 UTC (rev 118282)
@@ -0,0 +1,24 @@
+diff --git a/engine/Makefile.am b/engine/Makefile.am
+index 1334876..1836439 100644
+--- a/engine/Makefile.am
 b/engine/Makefile.am
+@@ -21,6 +21,7 @@
+ 
+ DOC2MAN = docbook2man
+ SGML = ibus-table-createdb.sgml
++XML = ibus-table-createdb.xml
+ BUILT_MANS = ibus-table-createdb.1
+ man_MANS = $(BUILT_MANS)
+ 
+@@ -65,8 +66,9 @@ MAINTAINERCLEANFILES = \
+ 
+ ${man_MANS}: ${SGML}
+   $(AM_V_GEN) $(RM) $@; \
+-  $(DOC2MAN) ${SGML}; \
+-  $(RM) manpage.*
++  SGML_CATALOG_FILES=/etc/sgml/catalog sgml2xml -xlower -xid ${SGML}  
${XML}; \

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

2014-09-04 Thread Andreas Radke
Date: Thursday, September 4, 2014 @ 19:01:39
  Author: andyrtr
Revision: 220942

upgpkg: tzdata 2014g-1

upstream update 2014g

Modified:
  tzdata/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 16:08:32 UTC (rev 220941)
+++ PKGBUILD2014-09-04 17:01:39 UTC (rev 220942)
@@ -2,7 +2,7 @@
 # Maintainer: Andreas Radke andy...@archlinux.org
 
 pkgname=tzdata
-pkgver=2014f
+pkgver=2014g
 pkgrel=1
 pkgdesc=Sources for time zone and daylight saving time data
 arch=('any')
@@ -10,7 +10,7 @@
 license=('GPL')
 options=('!emptydirs')
 
source=(http://www.iana.org/time-zones/repository/releases/${pkgname}${pkgver}.tar.gz{,.asc})
-sha1sums=('1369848ff99a3b51c325b27cb0e41ef23fd35b8a'
+sha1sums=('20be4323055278a4a789d9c95926dd38733afa8d'
   'SKIP')
 
 timezones=('africa' 'antarctica' 'asia' 'australasia'



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

2014-09-04 Thread Andreas Radke
Date: Thursday, September 4, 2014 @ 19:01:47
  Author: andyrtr
Revision: 220943

archrelease: copy trunk to testing-any

Added:
  tzdata/repos/testing-any/
  tzdata/repos/testing-any/PKGBUILD
(from rev 220942, tzdata/trunk/PKGBUILD)

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

Copied: tzdata/repos/testing-any/PKGBUILD (from rev 220942, 
tzdata/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2014-09-04 17:01:47 UTC (rev 220943)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgname=tzdata
+pkgver=2014g
+pkgrel=1
+pkgdesc=Sources for time zone and daylight saving time data
+arch=('any')
+url=http://www.iana.org/time-zones;
+license=('GPL')
+options=('!emptydirs')
+source=(http://www.iana.org/time-zones/repository/releases/${pkgname}${pkgver}.tar.gz{,.asc})
+sha1sums=('20be4323055278a4a789d9c95926dd38733afa8d'
+  'SKIP')
+
+timezones=('africa' 'antarctica' 'asia' 'australasia'
+   'europe' 'northamerica' 'southamerica'
+   'pacificnew' 'etcetera' 'backward'
+   'systemv' 'factory')
+
+package() {
+  cd ${srcdir}
+  zic -y ./yearistype -d ${pkgdir}/usr/share/zoneinfo ${timezones[@]}
+  zic -y ./yearistype -d ${pkgdir}/usr/share/zoneinfo/posix ${timezones[@]}
+  zic -y ./yearistype -d ${pkgdir}/usr/share/zoneinfo/right -L leapseconds 
${timezones[@]}
+  
+  zic -y ./yearistype -d ${pkgdir}/usr/share/zoneinfo -p America/New_York
+  install -m444 -t ${pkgdir}/usr/share/zoneinfo iso3166.tab zone1970.tab 
zone.tab # zone.tab is depricated and will go soon
+}



[arch-commits] Commit in xf86-video-nouveau/repos (6 files)

2014-09-04 Thread Andreas Radke
Date: Thursday, September 4, 2014 @ 19:05:21
  Author: andyrtr
Revision: 220945

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

Added:
  xf86-video-nouveau/repos/testing-i686/
  xf86-video-nouveau/repos/testing-i686/PKGBUILD
(from rev 220944, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/testing-i686/xf86-video-nouveau.install
(from rev 220944, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
  xf86-video-nouveau/repos/testing-x86_64/
  xf86-video-nouveau/repos/testing-x86_64/PKGBUILD
(from rev 220944, xf86-video-nouveau/trunk/PKGBUILD)
  xf86-video-nouveau/repos/testing-x86_64/xf86-video-nouveau.install
(from rev 220944, xf86-video-nouveau/trunk/xf86-video-nouveau.install)

---+
 testing-i686/PKGBUILD |   29 
 testing-i686/xf86-video-nouveau.install   |6 +
 testing-x86_64/PKGBUILD   |   29 
 testing-x86_64/xf86-video-nouveau.install |6 +
 4 files changed, 70 insertions(+)

Copied: xf86-video-nouveau/repos/testing-i686/PKGBUILD (from rev 220944, 
xf86-video-nouveau/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-09-04 17:05:21 UTC (rev 220945)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: buddabrod buddab...@gmail.com
+
+pkgname=xf86-video-nouveau
+pkgver=1.0.11
+pkgrel=1
+pkgdesc=Open Source 2D acceleration driver for nVidia cards
+arch=('i686' 'x86_64')
+url=http://nouveau.freedesktop.org/;
+license=('GPL')
+depends=('libdrm' 'systemd' 'nouveau-dri')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=18')
+conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION18' 
'X-ABI-VIDEODRV_VERSION=19')
+groups=('xorg-drivers' 'xorg')
+install=$pkgname.install
+source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2)
+sha256sums=('f84fe2b2787f3ea9419eac3aa86462b929a551b3dbc4de550cc83b67f3216848')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: xf86-video-nouveau/repos/testing-i686/xf86-video-nouveau.install (from 
rev 220944, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
===
--- testing-i686/xf86-video-nouveau.install (rev 0)
+++ testing-i686/xf86-video-nouveau.install 2014-09-04 17:05:21 UTC (rev 
220945)
@@ -0,0 +1,6 @@
+post_install () {
+   cat  _EOF
+  == make sure you use KernelModeSetting (KMS)
+  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
+_EOF
+}

Copied: xf86-video-nouveau/repos/testing-x86_64/PKGBUILD (from rev 220944, 
xf86-video-nouveau/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-09-04 17:05:21 UTC (rev 220945)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: buddabrod buddab...@gmail.com
+
+pkgname=xf86-video-nouveau
+pkgver=1.0.11
+pkgrel=1
+pkgdesc=Open Source 2D acceleration driver for nVidia cards
+arch=('i686' 'x86_64')
+url=http://nouveau.freedesktop.org/;
+license=('GPL')
+depends=('libdrm' 'systemd' 'nouveau-dri')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=18')
+conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION18' 
'X-ABI-VIDEODRV_VERSION=19')
+groups=('xorg-drivers' 'xorg')
+install=$pkgname.install
+source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2)
+sha256sums=('f84fe2b2787f3ea9419eac3aa86462b929a551b3dbc4de550cc83b67f3216848')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: xf86-video-nouveau/repos/testing-x86_64/xf86-video-nouveau.install 
(from rev 220944, xf86-video-nouveau/trunk/xf86-video-nouveau.install)
===
--- testing-x86_64/xf86-video-nouveau.install   (rev 0)
+++ testing-x86_64/xf86-video-nouveau.install   2014-09-04 17:05:21 UTC (rev 
220945)
@@ -0,0 +1,6 @@
+post_install () {
+   cat  _EOF
+  == make sure you use KernelModeSetting (KMS)
+  == see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
+_EOF
+}



[arch-commits] Commit in xf86-video-nouveau/trunk (PKGBUILD)

2014-09-04 Thread Andreas Radke
Date: Thursday, September 4, 2014 @ 19:05:12
  Author: andyrtr
Revision: 220944

upgpkg: xf86-video-nouveau 1.0.11-1

upstream update 1.0.11

Modified:
  xf86-video-nouveau/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 17:01:47 UTC (rev 220943)
+++ PKGBUILD2014-09-04 17:05:12 UTC (rev 220944)
@@ -3,8 +3,8 @@
 # Contributor: buddabrod buddab...@gmail.com
 
 pkgname=xf86-video-nouveau
-pkgver=1.0.10
-pkgrel=3
+pkgver=1.0.11
+pkgrel=1
 pkgdesc=Open Source 2D acceleration driver for nVidia cards
 arch=('i686' 'x86_64')
 url=http://nouveau.freedesktop.org/;
@@ -15,7 +15,7 @@
 groups=('xorg-drivers' 'xorg')
 install=$pkgname.install
 
source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2)
-sha256sums=('c1bab3160bae96d485fc93a048d19775398aa85b407bac53020675f7e995db9d')
+sha256sums=('f84fe2b2787f3ea9419eac3aa86462b929a551b3dbc4de550cc83b67f3216848')
 
 build() {
   cd $pkgname-$pkgver



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

2014-09-04 Thread Andreas Radke
Date: Thursday, September 4, 2014 @ 19:20:39
  Author: andyrtr
Revision: 220947

archrelease: copy trunk to extra-any

Added:
  getmail/repos/extra-any/PKGBUILD
(from rev 220946, getmail/trunk/PKGBUILD)
Deleted:
  getmail/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-04 17:20:29 UTC (rev 220946)
+++ PKGBUILD2014-09-04 17:20:39 UTC (rev 220947)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Committer: Manolis Tzanidakis mano...@archlinux.org
-
-pkgname=getmail
-pkgver=4.46.0
-pkgrel=1
-pkgdesc=A POP3 mail retriever with reliable Maildir and command delivery.
-arch=(any)
-url=http://pyropus.ca/software/getmail;
-license=(GPL)
-depends=('python2')
-optdepends=('python2-gnomekeyring: for storing passwords in gnome-keyring')
-source=(http://pyropus.ca/software/getmail/old-versions/$pkgname-$pkgver.tar.gz)
-md5sums=('aa094ebe558f47246c8af2ca8e1d12f9')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  python2 setup.py build
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  python2 setup.py install --root=${pkgdir}
-  # fix some broken shebang calls
-  sed -i -e s|#![ ]*/usr/bin/env python|#!/usr/bin/env python2| 
$pkgdir/usr/lib/python2.7/site-packages/getmailcore/__init__.py
-  sed -i -e s|#![ ]*/usr/bin/env python2.3|#!/usr/bin/env python2| $(find 
$pkgdir -name '*.py')
-}

Copied: getmail/repos/extra-any/PKGBUILD (from rev 220946, 
getmail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-04 17:20:39 UTC (rev 220947)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Committer: Manolis Tzanidakis mano...@archlinux.org
+
+pkgname=getmail
+pkgver=4.46.0
+pkgrel=2
+pkgdesc=A POP3 mail retriever with reliable Maildir and command delivery.
+arch=(any)
+url=http://pyropus.ca/software/getmail;
+license=(GPL)
+depends=('python2')
+optdepends=('python2-gnomekeyring: for storing passwords in gnome-keyring')
+source=(http://pyropus.ca/software/getmail/old-versions/$pkgname-$pkgver.tar.gz)
+md5sums=('aa094ebe558f47246c8af2ca8e1d12f9')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  # fix broken shebang calls
+  sed -i -e s|#![ ]*/usr/bin/env python|#!/usr/bin/env python2| 
getmailcore/__init__.py
+  sed -i -e s|#![ ]*/usr/bin/env python2.3|#!/usr/bin/env python2| $(find . 
-name '*.py')
+  # recheck
+  head -1 $(find . -name '*.py')
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python2 setup.py install --root=${pkgdir}
+}



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

2014-09-04 Thread Andreas Radke
Date: Thursday, September 4, 2014 @ 19:20:29
  Author: andyrtr
Revision: 220946

upgpkg: getmail 4.46.0-2

fix bad mtime

Modified:
  getmail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 17:05:21 UTC (rev 220945)
+++ PKGBUILD2014-09-04 17:20:29 UTC (rev 220946)
@@ -4,7 +4,7 @@
 
 pkgname=getmail
 pkgver=4.46.0
-pkgrel=1
+pkgrel=2
 pkgdesc=A POP3 mail retriever with reliable Maildir and command delivery.
 arch=(any)
 url=http://pyropus.ca/software/getmail;
@@ -14,15 +14,21 @@
 
source=(http://pyropus.ca/software/getmail/old-versions/$pkgname-$pkgver.tar.gz)
 md5sums=('aa094ebe558f47246c8af2ca8e1d12f9')
 
+prepare() {
+  cd ${pkgname}-${pkgver}
+  # fix broken shebang calls
+  sed -i -e s|#![ ]*/usr/bin/env python|#!/usr/bin/env python2| 
getmailcore/__init__.py
+  sed -i -e s|#![ ]*/usr/bin/env python2.3|#!/usr/bin/env python2| $(find . 
-name '*.py')
+  # recheck
+  head -1 $(find . -name '*.py')
+}
+
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   python2 setup.py build
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   python2 setup.py install --root=${pkgdir}
-  # fix some broken shebang calls
-  sed -i -e s|#![ ]*/usr/bin/env python|#!/usr/bin/env python2| 
$pkgdir/usr/lib/python2.7/site-packages/getmailcore/__init__.py
-  sed -i -e s|#![ ]*/usr/bin/env python2.3|#!/usr/bin/env python2| $(find 
$pkgdir -name '*.py')
 }



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

2014-09-04 Thread Eric Bélanger
Date: Thursday, September 4, 2014 @ 19:25:32
  Author: eric
Revision: 118283

upgpkg: youtube-dl 2014.09.04.3-1

Upstream update

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 16:24:06 UTC (rev 118282)
+++ PKGBUILD2014-09-04 17:25:32 UTC (rev 118283)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=youtube-dl
-pkgver=2014.09.01.2
+pkgver=2014.09.04.3
 pkgrel=1
 pkgdesc=A small command-line program to download videos from YouTube.com and 
a few more sites
 arch=('any')
@@ -13,7 +13,7 @@
 'rtmpdump: for rtmp streams support')
 source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
 
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha1sums=('67599beffd42863554de90bc14b71e96c4035695'
+sha1sums=('2dce554aa60d84b688580f3f357190ab86b8c247'
   'SKIP')
 
 prepare() {



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

2014-09-04 Thread Eric Bélanger
Date: Thursday, September 4, 2014 @ 19:26:55
  Author: eric
Revision: 118284

archrelease: copy trunk to community-any

Added:
  youtube-dl/repos/community-any/PKGBUILD
(from rev 118283, youtube-dl/trunk/PKGBUILD)
Deleted:
  youtube-dl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-04 17:25:32 UTC (rev 118283)
+++ PKGBUILD2014-09-04 17:26:55 UTC (rev 118284)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=youtube-dl
-pkgver=2014.09.01.2
-pkgrel=1
-pkgdesc=A small command-line program to download videos from YouTube.com and 
a few more sites
-arch=('any')
-url=http://rg3.github.io/youtube-dl/;
-license=('custom')
-depends=('python' 'python-setuptools')
-optdepends=('ffmpeg: for video post-processing'
-'rtmpdump: for rtmp streams support')
-source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
-
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha1sums=('67599beffd42863554de90bc14b71e96c4035695'
-  'SKIP')
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root=${pkgdir}/ --optimize=1
-  mv 
${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion \
-${pkgdir}/usr/share/bash-completion/completions/youtube-dl
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 118283, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-04 17:26:55 UTC (rev 118284)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=youtube-dl
+pkgver=2014.09.04.3
+pkgrel=1
+pkgdesc=A small command-line program to download videos from YouTube.com and 
a few more sites
+arch=('any')
+url=http://rg3.github.io/youtube-dl/;
+license=('custom')
+depends=('python' 'python-setuptools')
+optdepends=('ffmpeg: for video post-processing'
+'rtmpdump: for rtmp streams support')
+source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
+
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
+sha1sums=('2dce554aa60d84b688580f3f357190ab86b8c247'
+  'SKIP')
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root=${pkgdir}/ --optimize=1
+  mv 
${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion \
+${pkgdir}/usr/share/bash-completion/completions/youtube-dl
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}



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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 20:27:16
  Author: jgc
Revision: 220948

upgpkg: glib2 2.40.0-2

Update to git snapshot from 2.40 branch. Should fix VLC segfaults by marking 
the library as unloadable

Modified:
  glib2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 17:20:39 UTC (rev 220947)
+++ PKGBUILD2014-09-04 18:27:16 UTC (rev 220948)
@@ -4,32 +4,34 @@
 pkgbase=glib2
 pkgname=(glib2 glib2-docs)
 pkgver=2.40.0
-pkgrel=1
+pkgrel=2
 pkgdesc=Common C routines used by GTK+ and other libs
 url=http://www.gtk.org/;
 arch=(i686 x86_64)
-makedepends=('pkg-config' 'python2' 'libxslt' 'docbook-xml' 'pcre' 'libffi' 
'elfutils')
-source=(http://ftp.gnome.org/pub/GNOME/sources/glib/${pkgver:0:4}/glib-$pkgver.tar.xz
+makedepends=('pkg-config' 'python2' 'libxslt' 'docbook-xml' 'pcre' 'libffi' 
'elfutils' 'gtk-doc' 'git')
+source=('git://git.gnome.org/glib#commit=938a468acf58499b7347fa923384829d488b0ef6'
 revert-warn-glib-compile-schemas.patch)
-sha256sums=('0d27f195966ecb1995dcce0754129fd66ebe820c7cd29200d264b02af1aa28b5'
+sha256sums=('SKIP'
 '049240975cd2f1c88fbe7deb28af14d4ec7d2640495f7ca8980d873bb710cc97')
 
 prepare() {
-  cd glib-$pkgver
+  cd glib
   patch -Rp1 -i ../revert-warn-glib-compile-schemas.patch
 }
   
 build() {
-  cd glib-$pkgver
+  cd glib
+  NOCONFIGURE=1 ./autogen.sh
   PYTHON=/usr/bin/python2 ./configure --prefix=/usr --libdir=/usr/lib \
   --sysconfdir=/etc \
   --with-pcre=system \
-  --disable-fam
+  --disable-fam \
+  --enable-gtk-doc
   make
 }
 
 check() {
-  cd glib-$pkgver
+  cd glib
   #make -k check || :
 }
 
@@ -40,7 +42,7 @@
   options=('!docs' '!emptydirs')
   license=('LGPL')
 
-  cd glib-$pkgver
+  cd glib
   make completiondir=/usr/share/bash-completion/completions DESTDIR=$pkgdir 
install
 
   for _i in $pkgdir/usr/share/bash-completion/completions/*; do
@@ -58,7 +60,7 @@
   license=('custom')
   options=('docs' '!emptydirs')
   
-  cd glib-$pkgver/docs
+  cd glib/docs
   make DESTDIR=${pkgdir} install
   install -m755 -d ${pkgdir}/usr/share/licenses/glib2-docs
   install -m644 reference/COPYING ${pkgdir}/usr/share/licenses/glib2-docs/



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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 20:27:21
  Author: jgc
Revision: 220949

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

Added:
  glib2/repos/testing-i686/
  glib2/repos/testing-i686/PKGBUILD
(from rev 220948, glib2/trunk/PKGBUILD)
  glib2/repos/testing-i686/revert-warn-glib-compile-schemas.patch
(from rev 220948, glib2/trunk/revert-warn-glib-compile-schemas.patch)
  glib2/repos/testing-x86_64/
  glib2/repos/testing-x86_64/PKGBUILD
(from rev 220948, glib2/trunk/PKGBUILD)
  glib2/repos/testing-x86_64/revert-warn-glib-compile-schemas.patch
(from rev 220948, glib2/trunk/revert-warn-glib-compile-schemas.patch)

---+
 testing-i686/PKGBUILD |   69 
 testing-i686/revert-warn-glib-compile-schemas.patch   |   33 +++
 testing-x86_64/PKGBUILD   |   69 
 testing-x86_64/revert-warn-glib-compile-schemas.patch |   33 +++
 4 files changed, 204 insertions(+)

Copied: glib2/repos/testing-i686/PKGBUILD (from rev 220948, 
glib2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-09-04 18:27:21 UTC (rev 220949)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgbase=glib2
+pkgname=(glib2 glib2-docs)
+pkgver=2.40.0
+pkgrel=2
+pkgdesc=Common C routines used by GTK+ and other libs
+url=http://www.gtk.org/;
+arch=(i686 x86_64)
+makedepends=('pkg-config' 'python2' 'libxslt' 'docbook-xml' 'pcre' 'libffi' 
'elfutils' 'gtk-doc' 'git')
+source=('git://git.gnome.org/glib#commit=938a468acf58499b7347fa923384829d488b0ef6'
+revert-warn-glib-compile-schemas.patch)
+sha256sums=('SKIP'
+'049240975cd2f1c88fbe7deb28af14d4ec7d2640495f7ca8980d873bb710cc97')
+
+prepare() {
+  cd glib
+  patch -Rp1 -i ../revert-warn-glib-compile-schemas.patch
+}
+  
+build() {
+  cd glib
+  NOCONFIGURE=1 ./autogen.sh
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --libdir=/usr/lib \
+  --sysconfdir=/etc \
+  --with-pcre=system \
+  --disable-fam \
+  --enable-gtk-doc
+  make
+}
+
+check() {
+  cd glib
+  #make -k check || :
+}
+
+package_glib2() {
+  depends=('pcre' 'libffi')
+  optdepends=('python2: for gdbus-codegen and gtester-report'
+  'elfutils: gresource inspection tool')
+  options=('!docs' '!emptydirs')
+  license=('LGPL')
+
+  cd glib
+  make completiondir=/usr/share/bash-completion/completions DESTDIR=$pkgdir 
install
+
+  for _i in $pkgdir/usr/share/bash-completion/completions/*; do
+  chmod -x $_i
+  done
+
+  # Our gdb does not ship the required python modules, so remove it
+  rm -rf $pkgdir/usr/share/gdb/
+}
+
+package_glib2-docs() {
+  pkgdesc=Documentation for glib2
+  conflicts=('gobject2-docs')
+  replaces=('gobject2-docs')
+  license=('custom')
+  options=('docs' '!emptydirs')
+  
+  cd glib/docs
+  make DESTDIR=${pkgdir} install
+  install -m755 -d ${pkgdir}/usr/share/licenses/glib2-docs
+  install -m644 reference/COPYING ${pkgdir}/usr/share/licenses/glib2-docs/
+
+  rm -rf ${pkgdir}/usr/share/man
+}

Copied: glib2/repos/testing-i686/revert-warn-glib-compile-schemas.patch (from 
rev 220948, glib2/trunk/revert-warn-glib-compile-schemas.patch)
===
--- testing-i686/revert-warn-glib-compile-schemas.patch 
(rev 0)
+++ testing-i686/revert-warn-glib-compile-schemas.patch 2014-09-04 18:27:21 UTC 
(rev 220949)
@@ -0,0 +1,33 @@
+From 6560b37450cd19c4a7c7b690e279fe97b7bfdcaa Mon Sep 17 00:00:00 2001
+From: Ryan Lortie de...@desrt.ca
+Date: Thu, 12 Apr 2012 23:55:34 +
+Subject: glib-compile-schemas: warn about bad dconf paths
+
+For quite some time the recommended usage of GSettings and dconf has
+been to use paths like /org/gnome/example/.  Use of /apps/ has spilled
+over from GConf and is continuing to make its way into a number of
+applications as they port.
+
+glib-compile-schemas will now warn about these types of paths being
+used.  This generates a lot of noise, but hopefully it will reduce the
+number of ported applications making this mistake.
+---
+diff --git a/gio/glib-compile-schemas.c b/gio/glib-compile-schemas.c
+index cf02389..27d0181 100644
+--- a/gio/glib-compile-schemas.c
 b/gio/glib-compile-schemas.c
+@@ -1204,6 +1204,12 @@ parse_state_start_schema (ParseState  *state,
+   return;
+ }
+ 
++  if (path  (g_str_has_prefix (path, /apps/) ||
++   g_str_has_prefix (path, /desktop/) ||
++   g_str_has_prefix (path, /system/)))
++g_printerr (warning: Schema '%s' has path '%s'.  Paths starting with 
++'/apps/', '/desktop/' or '/system/' are deprecated.\n, id, 
path);
++
+   state-schema_state = schema_state_new (path, gettext_domain,
+   extends, extends_name, 

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

2014-09-04 Thread Guillaume Alaux
Date: Thursday, September 4, 2014 @ 20:28:02
  Author: guillaume
Revision: 220950

Upstream release 8.0.12

Modified:
  tomcat8/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 18:27:21 UTC (rev 220949)
+++ PKGBUILD2014-09-04 18:28:02 UTC (rev 220950)
@@ -1,6 +1,6 @@
 # Maintainer: Guillaume ALAUX guilla...@archlinux.org
 pkgname=tomcat8
-pkgver=8.0.11
+pkgver=8.0.12
 pkgrel=1
 pkgdesc='Open source implementation of the Java Servlet 3.1 and JavaServer 
Pages 2.3 technologies'
 arch=('any')
@@ -21,7 +21,7 @@
 systemd_tmpfiles.d_${pkgname}.conf
 ${pkgname}.install)
 
-sha256sums=('41e4cdf505321f54eb387c4dc6ffd005cea8ce36607994e6a31db33f9e367ccf'
+sha256sums=('5fd0b8a6b69f1a24fd65b969923ba5109f007a537b3c0696b801f76849a41d60'
 '4f895aa4834489411a1b19027e12e8eb0d3a7408127be720e5aad8f9a0e1d660'
 'cd637d5b1a0e816c149c868a72d3d315ea0061efc9e544cadfbc73859dedb847'
 '32fcb0f44e32cd8901e936ebad4942a399efa8b98fdc42f5345dd8929b6c1887')



[arch-commits] Commit in tomcat8/repos/extra-any (8 files)

2014-09-04 Thread Guillaume Alaux
Date: Thursday, September 4, 2014 @ 20:28:53
  Author: guillaume
Revision: 220951

archrelease: copy trunk to extra-any

Added:
  tomcat8/repos/extra-any/PKGBUILD
(from rev 220950, tomcat8/trunk/PKGBUILD)
  tomcat8/repos/extra-any/systemd_tmpfiles.d_tomcat8.conf
(from rev 220950, tomcat8/trunk/systemd_tmpfiles.d_tomcat8.conf)
  tomcat8/repos/extra-any/systemd_tomcat8.service
(from rev 220950, tomcat8/trunk/systemd_tomcat8.service)
  tomcat8/repos/extra-any/tomcat8.install
(from rev 220950, tomcat8/trunk/tomcat8.install)
Deleted:
  tomcat8/repos/extra-any/PKGBUILD
  tomcat8/repos/extra-any/systemd_tmpfiles.d_tomcat8.conf
  tomcat8/repos/extra-any/systemd_tomcat8.service
  tomcat8/repos/extra-any/tomcat8.install

-+
 PKGBUILD|  150 +++---
 systemd_tmpfiles.d_tomcat8.conf |6 -
 systemd_tomcat8.service |   66 
 tomcat8.install |   70 -
 4 files changed, 146 insertions(+), 146 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-04 18:28:02 UTC (rev 220950)
+++ PKGBUILD2014-09-04 18:28:53 UTC (rev 220951)
@@ -1,75 +0,0 @@
-# Maintainer: Guillaume ALAUX guilla...@archlinux.org
-pkgname=tomcat8
-pkgver=8.0.11
-pkgrel=1
-pkgdesc='Open source implementation of the Java Servlet 3.1 and JavaServer 
Pages 2.3 technologies'
-arch=('any')
-url='http://tomcat.apache.org/'
-license=('APACHE')
-depends=('java-runtime=7' 'java-jsvc' 'java-commons-daemon' 'eclipse-ecj')
-optdepends=('tomcat-native: to allow optimal performance in production 
environments')
-backup=(etc/${pkgname}/catalina.policy
-etc/${pkgname}/catalina.properties
-etc/${pkgname}/context.xml
-etc/${pkgname}/logging.properties
-etc/${pkgname}/server.xml
-etc/${pkgname}/tomcat-users.xml
-etc/${pkgname}/web.xml)
-install=${pkgname}.install
-source=(http://archive.apache.org/dist/tomcat/tomcat-8/v${pkgver}/bin/apache-tomcat-${pkgver}.zip
-systemd_${pkgname}.service
-systemd_tmpfiles.d_${pkgname}.conf
-${pkgname}.install)
-
-sha256sums=('41e4cdf505321f54eb387c4dc6ffd005cea8ce36607994e6a31db33f9e367ccf'
-'4f895aa4834489411a1b19027e12e8eb0d3a7408127be720e5aad8f9a0e1d660'
-'cd637d5b1a0e816c149c868a72d3d315ea0061efc9e544cadfbc73859dedb847'
-'32fcb0f44e32cd8901e936ebad4942a399efa8b98fdc42f5345dd8929b6c1887')
-
-_gid_log=19
-_gid_tomcat=57
-_uid_tomcat=57
-
-package() {
-  cd ${srcdir}/apache-tomcat-${pkgver}
-
-  # Tomcat general files
-  install -dm755 ${pkgdir}/usr/share/{,java/}${pkgname}
-  cp -r bin ${pkgdir}/usr/share/${pkgname}
-  # commons-daemon and tomcat-natives are packaged on their own
-  rm 
${pkgdir}/usr/share/${pkgname}/bin/{*.bat,commons-daemon*,tomcat-native.tar.gz}
-  ln -s /usr/share/java/commons-daemon.jar 
${pkgdir}/usr/share/${pkgname}/bin/commons-daemon.jar
-
-  install -m644 lib/* ${pkgdir}/usr/share/java/${pkgname}
-  # eclipse-ecj is packaged on its own
-  rm ${pkgdir}/usr/share/java/${pkgname}/ecj-*.jar
-  ln -s ../eclipse-ecj.jar ${pkgdir}/usr/share/java/${pkgname}/ecj.jar
-
-  ln -s /usr/share/java/${pkgname} ${pkgdir}/usr/share/${pkgname}/lib
-
-  # We log through systemd but this would still be required for stock Tomcat 
logging
-  install -dm775 -o ${_uid_tomcat} -g ${_gid_log} 
${pkgdir}/var/log/${pkgname}
-  ln -s /var/log/${pkgname} ${pkgdir}/usr/share/${pkgname}/logs
-  touch ${pkgdir}/var/log/${pkgname}/catalina.{out,err}
-  chgrp ${_gid_log} ${pkgdir}/var/log/${pkgname}/catalina.{out,err}
-
-  install -dm775 ${pkgdir}/etc/${pkgname}
-  install -g ${_gid_tomcat} -m640 conf/* ${pkgdir}/etc/${pkgname}
-  install -d -g ${_gid_tomcat} -m775 ${pkgdir}/etc/${pkgname}/Catalina
-  ln -s /etc/${pkgname} ${pkgdir}/usr/share/${pkgname}/conf
-
-  install -dm775 ${pkgdir}/var/lib/${pkgname}
-  cp -r webapps ${pkgdir}/var/lib/${pkgname}
-  chown -R ${_uid_tomcat}:${_gid_tomcat} ${pkgdir}/var/lib/${pkgname}
-  ln -s /var/lib/${pkgname}/webapps ${pkgdir}/usr/share/${pkgname}/webapps
-
-  install -dm1777 ${pkgdir}/var/tmp
-  install -dm775 -o ${_uid_tomcat} -g ${_gid_tomcat} 
${pkgdir}/var/tmp/${pkgname}/{temp,work}
-  ln -s /var/tmp/${pkgname}/temp ${pkgdir}/usr/share/${pkgname}/temp
-  ln -s /var/tmp/${pkgname}/work ${pkgdir}/usr/share/${pkgname}/work
-
-  install -Dm644 ${srcdir}/systemd_${pkgname}.service \
- ${pkgdir}/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 ${srcdir}/systemd_tmpfiles.d_${pkgname}.conf \
- ${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf
-}

Copied: tomcat8/repos/extra-any/PKGBUILD (from rev 220950, 
tomcat8/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-04 18:28:53 UTC (rev 220951)
@@ -0,0 +1,75 @@
+# Maintainer: Guillaume 

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

2014-09-04 Thread Eric Bélanger
Date: Thursday, September 4, 2014 @ 20:36:12
  Author: eric
Revision: 220952

upgpkg: intel-tbb 4.3_20140724-1

Upstream update

Modified:
  intel-tbb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 18:28:53 UTC (rev 220951)
+++ PKGBUILD2014-09-04 18:36:12 UTC (rev 220952)
@@ -4,7 +4,7 @@
 # Contributor: Denis Martinez deuns.martinez AT gmail.com
 
 pkgname=intel-tbb
-pkgver=4.2_20140601
+pkgver=4.3_20140724
 pkgrel=1
 pkgdesc='High level abstract threading library'
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 license=('GPL')
 depends=('gcc-libs')
 
source=(http://threadingbuildingblocks.org/sites/default/files/software_releases/source/tbb${pkgver/\./}oss_src.tgz;)
-sha1sums=('f50c04a27f5e37c920a03be134dc57ccf909515d')
+sha1sums=('4cb73cd0ac61b790318358ae4782f80255715278')
 
 build() {
   cd tbb${pkgver/\./}oss



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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 20:37:53
  Author: jgc
Revision: 220953

upgpkg: glib2 2.41.4-1

Modified:
  glib2/trunk/PKGBUILD

--+
 PKGBUILD |   24 +++-
 1 file changed, 11 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 18:36:12 UTC (rev 220952)
+++ PKGBUILD2014-09-04 18:37:53 UTC (rev 220953)
@@ -3,35 +3,33 @@
 
 pkgbase=glib2
 pkgname=(glib2 glib2-docs)
-pkgver=2.40.0
-pkgrel=2
+pkgver=2.41.4
+pkgrel=1
 pkgdesc=Common C routines used by GTK+ and other libs
 url=http://www.gtk.org/;
 arch=(i686 x86_64)
-makedepends=('pkg-config' 'python2' 'libxslt' 'docbook-xml' 'pcre' 'libffi' 
'elfutils' 'gtk-doc' 'git')
-source=('git://git.gnome.org/glib#commit=938a468acf58499b7347fa923384829d488b0ef6'
+makedepends=('pkg-config' 'python2' 'libxslt' 'docbook-xml' 'pcre' 'libffi' 
'elfutils')
+source=(http://ftp.gnome.org/pub/GNOME/sources/glib/${pkgver:0:4}/glib-$pkgver.tar.xz
 revert-warn-glib-compile-schemas.patch)
-sha256sums=('SKIP'
+sha256sums=('1661bc4abfd1b0b59ae7abbef9d6a60c32192a7a65122753d5d8cc2db110fbf7'
 '049240975cd2f1c88fbe7deb28af14d4ec7d2640495f7ca8980d873bb710cc97')
 
 prepare() {
-  cd glib
+  cd glib-$pkgver
   patch -Rp1 -i ../revert-warn-glib-compile-schemas.patch
 }
   
 build() {
-  cd glib
-  NOCONFIGURE=1 ./autogen.sh
+  cd glib-$pkgver
   PYTHON=/usr/bin/python2 ./configure --prefix=/usr --libdir=/usr/lib \
   --sysconfdir=/etc \
   --with-pcre=system \
-  --disable-fam \
-  --enable-gtk-doc
+  --disable-fam
   make
 }
 
 check() {
-  cd glib
+  cd glib-$pkgver
   #make -k check || :
 }
 
@@ -42,7 +40,7 @@
   options=('!docs' '!emptydirs')
   license=('LGPL')
 
-  cd glib
+  cd glib-$pkgver
   make completiondir=/usr/share/bash-completion/completions DESTDIR=$pkgdir 
install
 
   for _i in $pkgdir/usr/share/bash-completion/completions/*; do
@@ -60,7 +58,7 @@
   license=('custom')
   options=('docs' '!emptydirs')
   
-  cd glib/docs
+  cd glib-$pkgver/docs
   make DESTDIR=${pkgdir} install
   install -m755 -d ${pkgdir}/usr/share/licenses/glib2-docs
   install -m644 reference/COPYING ${pkgdir}/usr/share/licenses/glib2-docs/



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

2014-09-04 Thread Eric Bélanger
Date: Thursday, September 4, 2014 @ 20:38:48
  Author: eric
Revision: 220955

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

Added:
  intel-tbb/repos/extra-i686/PKGBUILD
(from rev 220952, intel-tbb/trunk/PKGBUILD)
  intel-tbb/repos/extra-x86_64/PKGBUILD
(from rev 220954, intel-tbb/trunk/PKGBUILD)
Deleted:
  intel-tbb/repos/extra-i686/PKGBUILD
  intel-tbb/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-09-04 18:37:59 UTC (rev 220954)
+++ extra-i686/PKGBUILD 2014-09-04 18:38:48 UTC (rev 220955)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Denis Martinez deuns.martinez AT gmail.com
-
-pkgname=intel-tbb
-pkgver=4.2_20140601
-pkgrel=1
-pkgdesc='High level abstract threading library'
-arch=('i686' 'x86_64')
-url='http://www.threadingbuildingblocks.org/'
-license=('GPL')
-depends=('gcc-libs')
-source=(http://threadingbuildingblocks.org/sites/default/files/software_releases/source/tbb${pkgver/\./}oss_src.tgz;)
-sha1sums=('f50c04a27f5e37c920a03be134dc57ccf909515d')
-
-build() {
-  cd tbb${pkgver/\./}oss
-  make
-}
-
-package() {
-  cd tbb${pkgver/\./}oss
-  install -d ${pkgdir}/usr/lib
-  install -m755 build/linux_*/*.so* ${pkgdir}/usr/lib
-  install -d ${pkgdir}/usr/include
-  cp -a include/tbb ${pkgdir}/usr/include
-}

Copied: intel-tbb/repos/extra-i686/PKGBUILD (from rev 220952, 
intel-tbb/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-09-04 18:38:48 UTC (rev 220955)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Denis Martinez deuns.martinez AT gmail.com
+
+pkgname=intel-tbb
+pkgver=4.3_20140724
+pkgrel=1
+pkgdesc='High level abstract threading library'
+arch=('i686' 'x86_64')
+url='http://www.threadingbuildingblocks.org/'
+license=('GPL')
+depends=('gcc-libs')
+source=(http://threadingbuildingblocks.org/sites/default/files/software_releases/source/tbb${pkgver/\./}oss_src.tgz;)
+sha1sums=('4cb73cd0ac61b790318358ae4782f80255715278')
+
+build() {
+  cd tbb${pkgver/\./}oss
+  make
+}
+
+package() {
+  cd tbb${pkgver/\./}oss
+  install -d ${pkgdir}/usr/lib
+  install -m755 build/linux_*/*.so* ${pkgdir}/usr/lib
+  install -d ${pkgdir}/usr/include
+  cp -a include/tbb ${pkgdir}/usr/include
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-09-04 18:37:59 UTC (rev 220954)
+++ extra-x86_64/PKGBUILD   2014-09-04 18:38:48 UTC (rev 220955)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Denis Martinez deuns.martinez AT gmail.com
-
-pkgname=intel-tbb
-pkgver=4.2_20140601
-pkgrel=1
-pkgdesc='High level abstract threading library'
-arch=('i686' 'x86_64')
-url='http://www.threadingbuildingblocks.org/'
-license=('GPL')
-depends=('gcc-libs')
-source=(http://threadingbuildingblocks.org/sites/default/files/software_releases/source/tbb${pkgver/\./}oss_src.tgz;)
-sha1sums=('f50c04a27f5e37c920a03be134dc57ccf909515d')
-
-build() {
-  cd tbb${pkgver/\./}oss
-  make
-}
-
-package() {
-  cd tbb${pkgver/\./}oss
-  install -d ${pkgdir}/usr/lib
-  install -m755 build/linux_*/*.so* ${pkgdir}/usr/lib
-  install -d ${pkgdir}/usr/include
-  cp -a include/tbb ${pkgdir}/usr/include
-}

Copied: intel-tbb/repos/extra-x86_64/PKGBUILD (from rev 220954, 
intel-tbb/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-09-04 18:38:48 UTC (rev 220955)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Denis Martinez deuns.martinez AT gmail.com
+
+pkgname=intel-tbb
+pkgver=4.3_20140724
+pkgrel=1
+pkgdesc='High level abstract threading library'
+arch=('i686' 'x86_64')
+url='http://www.threadingbuildingblocks.org/'
+license=('GPL')
+depends=('gcc-libs')
+source=(http://threadingbuildingblocks.org/sites/default/files/software_releases/source/tbb${pkgver/\./}oss_src.tgz;)
+sha1sums=('4cb73cd0ac61b790318358ae4782f80255715278')
+
+build() {
+  cd tbb${pkgver/\./}oss
+  make
+}
+
+package() {
+  cd tbb${pkgver/\./}oss
+  install -d ${pkgdir}/usr/lib
+  install -m755 build/linux_*/*.so* ${pkgdir}/usr/lib
+  install -d ${pkgdir}/usr/include

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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 20:37:59
  Author: jgc
Revision: 220954

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  glib2/repos/gnome-unstable-i686/
  glib2/repos/gnome-unstable-i686/PKGBUILD
(from rev 220953, glib2/trunk/PKGBUILD)
  glib2/repos/gnome-unstable-i686/revert-warn-glib-compile-schemas.patch
(from rev 220953, glib2/trunk/revert-warn-glib-compile-schemas.patch)
  glib2/repos/gnome-unstable-x86_64/
  glib2/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 220953, glib2/trunk/PKGBUILD)
  glib2/repos/gnome-unstable-x86_64/revert-warn-glib-compile-schemas.patch
(from rev 220953, glib2/trunk/revert-warn-glib-compile-schemas.patch)

--+
 gnome-unstable-i686/PKGBUILD |   67 ++
 gnome-unstable-i686/revert-warn-glib-compile-schemas.patch   |   33 
 gnome-unstable-x86_64/PKGBUILD   |   67 ++
 gnome-unstable-x86_64/revert-warn-glib-compile-schemas.patch |   33 
 4 files changed, 200 insertions(+)

Copied: glib2/repos/gnome-unstable-i686/PKGBUILD (from rev 220953, 
glib2/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2014-09-04 18:37:59 UTC (rev 220954)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgbase=glib2
+pkgname=(glib2 glib2-docs)
+pkgver=2.41.4
+pkgrel=1
+pkgdesc=Common C routines used by GTK+ and other libs
+url=http://www.gtk.org/;
+arch=(i686 x86_64)
+makedepends=('pkg-config' 'python2' 'libxslt' 'docbook-xml' 'pcre' 'libffi' 
'elfutils')
+source=(http://ftp.gnome.org/pub/GNOME/sources/glib/${pkgver:0:4}/glib-$pkgver.tar.xz
+revert-warn-glib-compile-schemas.patch)
+sha256sums=('1661bc4abfd1b0b59ae7abbef9d6a60c32192a7a65122753d5d8cc2db110fbf7'
+'049240975cd2f1c88fbe7deb28af14d4ec7d2640495f7ca8980d873bb710cc97')
+
+prepare() {
+  cd glib-$pkgver
+  patch -Rp1 -i ../revert-warn-glib-compile-schemas.patch
+}
+  
+build() {
+  cd glib-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --libdir=/usr/lib \
+  --sysconfdir=/etc \
+  --with-pcre=system \
+  --disable-fam
+  make
+}
+
+check() {
+  cd glib-$pkgver
+  #make -k check || :
+}
+
+package_glib2() {
+  depends=('pcre' 'libffi')
+  optdepends=('python2: for gdbus-codegen and gtester-report'
+  'elfutils: gresource inspection tool')
+  options=('!docs' '!emptydirs')
+  license=('LGPL')
+
+  cd glib-$pkgver
+  make completiondir=/usr/share/bash-completion/completions DESTDIR=$pkgdir 
install
+
+  for _i in $pkgdir/usr/share/bash-completion/completions/*; do
+  chmod -x $_i
+  done
+
+  # Our gdb does not ship the required python modules, so remove it
+  rm -rf $pkgdir/usr/share/gdb/
+}
+
+package_glib2-docs() {
+  pkgdesc=Documentation for glib2
+  conflicts=('gobject2-docs')
+  replaces=('gobject2-docs')
+  license=('custom')
+  options=('docs' '!emptydirs')
+  
+  cd glib-$pkgver/docs
+  make DESTDIR=${pkgdir} install
+  install -m755 -d ${pkgdir}/usr/share/licenses/glib2-docs
+  install -m644 reference/COPYING ${pkgdir}/usr/share/licenses/glib2-docs/
+
+  rm -rf ${pkgdir}/usr/share/man
+}

Copied: glib2/repos/gnome-unstable-i686/revert-warn-glib-compile-schemas.patch 
(from rev 220953, glib2/trunk/revert-warn-glib-compile-schemas.patch)
===
--- gnome-unstable-i686/revert-warn-glib-compile-schemas.patch  
(rev 0)
+++ gnome-unstable-i686/revert-warn-glib-compile-schemas.patch  2014-09-04 
18:37:59 UTC (rev 220954)
@@ -0,0 +1,33 @@
+From 6560b37450cd19c4a7c7b690e279fe97b7bfdcaa Mon Sep 17 00:00:00 2001
+From: Ryan Lortie de...@desrt.ca
+Date: Thu, 12 Apr 2012 23:55:34 +
+Subject: glib-compile-schemas: warn about bad dconf paths
+
+For quite some time the recommended usage of GSettings and dconf has
+been to use paths like /org/gnome/example/.  Use of /apps/ has spilled
+over from GConf and is continuing to make its way into a number of
+applications as they port.
+
+glib-compile-schemas will now warn about these types of paths being
+used.  This generates a lot of noise, but hopefully it will reduce the
+number of ported applications making this mistake.
+---
+diff --git a/gio/glib-compile-schemas.c b/gio/glib-compile-schemas.c
+index cf02389..27d0181 100644
+--- a/gio/glib-compile-schemas.c
 b/gio/glib-compile-schemas.c
+@@ -1204,6 +1204,12 @@ parse_state_start_schema (ParseState  *state,
+   return;
+ }
+ 
++  if (path  (g_str_has_prefix (path, /apps/) ||
++   g_str_has_prefix (path, /desktop/) ||
++   g_str_has_prefix (path, /system/)))
++g_printerr (warning: Schema '%s' has path '%s'.  Paths starting with 
++'/apps/', '/desktop/' or '/system/' are deprecated.\n, id, 

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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 20:53:41
  Author: jgc
Revision: 220957

archrelease: copy trunk to gnome-unstable-x86_64, gnome-unstable-i686

Added:
  gobject-introspection/repos/gnome-unstable-i686/
  gobject-introspection/repos/gnome-unstable-i686/PKGBUILD
(from rev 220956, gobject-introspection/trunk/PKGBUILD)
  gobject-introspection/repos/gnome-unstable-x86_64/
  gobject-introspection/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 220956, gobject-introspection/trunk/PKGBUILD)

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

Copied: gobject-introspection/repos/gnome-unstable-i686/PKGBUILD (from rev 
220956, gobject-introspection/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2014-09-04 18:53:41 UTC (rev 220957)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gobject-introspection
+pkgver=1.41.91
+pkgrel=1
+pkgdesc=Introspection system for GObject-based libraries
+url=https://live.gnome.org/GObjectIntrospection;
+arch=('x86_64' 'i686')
+license=('LGPL' 'GPL')
+depends=('glib2')
+makedepends=('cairo' 'python2' 'python2-mako')
+optdepends=('python2: gir development tools'
+'python2-mako: g-ir-doc-tool')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('a1ea708eeaa13dcc5a3078b1ae5aae178f22410023a56c699560f4e068722d9e')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i '1s|#!/usr/bin/env python$|2|' giscanner/*.py
+}
+
+build() {
+  cd $pkgname-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --disable-static 
--enable-doctool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: gobject-introspection/repos/gnome-unstable-x86_64/PKGBUILD (from rev 
220956, gobject-introspection/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2014-09-04 18:53:41 UTC (rev 220957)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gobject-introspection
+pkgver=1.41.91
+pkgrel=1
+pkgdesc=Introspection system for GObject-based libraries
+url=https://live.gnome.org/GObjectIntrospection;
+arch=('x86_64' 'i686')
+license=('LGPL' 'GPL')
+depends=('glib2')
+makedepends=('cairo' 'python2' 'python2-mako')
+optdepends=('python2: gir development tools'
+'python2-mako: g-ir-doc-tool')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('a1ea708eeaa13dcc5a3078b1ae5aae178f22410023a56c699560f4e068722d9e')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i '1s|#!/usr/bin/env python$|2|' giscanner/*.py
+}
+
+build() {
+  cd $pkgname-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --disable-static 
--enable-doctool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 20:53:35
  Author: jgc
Revision: 220956

upgpkg: gobject-introspection 1.41.91-1

Move python2 and python2-mako to optdepends. Not that this will require 
additional makedepends for modules using gobject-introspection during build

Modified:
  gobject-introspection/trunk/PKGBUILD

--+
 PKGBUILD |   22 +-
 1 file changed, 13 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 18:38:48 UTC (rev 220955)
+++ PKGBUILD2014-09-04 18:53:35 UTC (rev 220956)
@@ -2,27 +2,31 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gobject-introspection
-pkgver=1.40.0
+pkgver=1.41.91
 pkgrel=1
 pkgdesc=Introspection system for GObject-based libraries
 url=https://live.gnome.org/GObjectIntrospection;
 arch=('x86_64' 'i686')
 license=('LGPL' 'GPL')
-depends=('glib2' 'python2' 'python2-mako')
-makedepends=('cairo')
+depends=('glib2')
+makedepends=('cairo' 'python2' 'python2-mako')
+optdepends=('python2: gir development tools'
+'python2-mako: g-ir-doc-tool')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('96ea75e9679083e7fe39a105e810e2ead2d708abf189a5ba420bfccfffa24e98')
+sha256sums=('a1ea708eeaa13dcc5a3078b1ae5aae178f22410023a56c699560f4e068722d9e')
 
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i '1s|#!/usr/bin/env python$|2|' giscanner/*.py
+}
+
 build() {
-  cd $pkgname-$pkgver
+  cd $pkgname-$pkgver
   PYTHON=/usr/bin/python2 ./configure --prefix=/usr --disable-static 
--enable-doctool
   make
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd $pkgname-$pkgver
   make DESTDIR=$pkgdir install
-
-  sed -i '1s|#!/usr/bin/env python$|2|' \
-$pkgdir/usr/lib/gobject-introspection/giscanner/*.py
 }



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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 21:00:02
  Author: jgc
Revision: 220958

upgpkg: atk 2.13.90-1

Modified:
  atk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 18:53:41 UTC (rev 220957)
+++ PKGBUILD2014-09-04 19:00:02 UTC (rev 220958)
@@ -2,16 +2,16 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=atk
-pkgver=2.12.0
+pkgver=2.13.90
 pkgrel=1
 pkgdesc=A library providing a set of interfaces for accessibility
 arch=(i686 x86_64)
 license=('LGPL')
 depends=('glib2')
-makedepends=('gobject-introspection')
+makedepends=('gobject-introspection' 'python2')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
 url='http://www.gtk.org/'
-sha256sums=('48a8431974639c5a59c24fcd3ece1a19709872d5dfe78907524d9f5e9993f18f')
+sha256sums=('66a1ddf2ee3e8251012d428740549d7ac176135451927bcc4c332e3ed12dfc47')
 
 build() {
   cd $pkgname-$pkgver



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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 21:00:08
  Author: jgc
Revision: 220959

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  atk/repos/gnome-unstable-i686/
  atk/repos/gnome-unstable-i686/PKGBUILD
(from rev 220958, atk/trunk/PKGBUILD)
  atk/repos/gnome-unstable-x86_64/
  atk/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 220958, atk/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   25 +
 gnome-unstable-x86_64/PKGBUILD |   25 +
 2 files changed, 50 insertions(+)

Copied: atk/repos/gnome-unstable-i686/PKGBUILD (from rev 220958, 
atk/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2014-09-04 19:00:08 UTC (rev 220959)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=atk
+pkgver=2.13.90
+pkgrel=1
+pkgdesc=A library providing a set of interfaces for accessibility
+arch=(i686 x86_64)
+license=('LGPL')
+depends=('glib2')
+makedepends=('gobject-introspection' 'python2')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+url='http://www.gtk.org/'
+sha256sums=('66a1ddf2ee3e8251012d428740549d7ac176135451927bcc4c332e3ed12dfc47')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: atk/repos/gnome-unstable-x86_64/PKGBUILD (from rev 220958, 
atk/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2014-09-04 19:00:08 UTC (rev 220959)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=atk
+pkgver=2.13.90
+pkgrel=1
+pkgdesc=A library providing a set of interfaces for accessibility
+arch=(i686 x86_64)
+license=('LGPL')
+depends=('glib2')
+makedepends=('gobject-introspection' 'python2')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+url='http://www.gtk.org/'
+sha256sums=('66a1ddf2ee3e8251012d428740549d7ac176135451927bcc4c332e3ed12dfc47')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 21:56:57
  Author: jgc
Revision: 220960

upgpkg: cairo 1.13.1-1

Update to git snapshot

Modified:
  cairo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 19:00:08 UTC (rev 220959)
+++ PKGBUILD2014-09-04 19:56:57 UTC (rev 220960)
@@ -3,34 +3,25 @@
 # Contributor: Brice Carpentier br...@daknet.org
 
 pkgname=cairo
-pkgver=1.12.16
-pkgrel=3
+pkgver=1.13.1
+pkgrel=1
 pkgdesc=Cairo vector graphics library
 arch=(i686 x86_64)
 license=('LGPL' 'MPL')
 url=http://cairographics.org/;
-depends=('libpng' 'libxrender' 'libxext' 'fontconfig' 'pixman=0.28.0' 'glib2' 
'mesa' 'libgl' 'sh' 'lzo')
-makedepends=('mesa-libgl' 'librsvg' 'gtk2' 'poppler-glib' 'libspectre' 
'gtk-doc' 'valgrind'
+depends=('libpng' 'libxrender' 'libxext' 'fontconfig' 'pixman=0.28.0' 'glib2' 
'mesa' 'libgl' 'lzo')
+makedepends=('mesa-libgl' 'librsvg' 'gtk2' 'poppler-glib' 'libspectre' 
'gtk-doc' 'valgrind' 'git')
  # for the test suite:
- 'ttf-dejavu' 'gsfonts' 'xorg-server-xvfb' ) # 'libdrm')
+ #'ttf-dejavu' 'gsfonts' 'xorg-server-xvfb' ) # 'libdrm')
 #optdepends=('xcb-util: for XCB backend') # really needed?
 provides=('cairo-xcb')
 replaces=('cairo-xcb')
-source=(http://cairographics.org/releases/$pkgname-$pkgver.tar.xz
-cairo-1.12.16-lto-optional.patch)
-sha1sums=('4f6e337d5d3edd7ea79d1426f575331552b003ec'
-  '80883e44a57942762995aea2f136701b1fa54568')
+source=('git://anongit.freedesktop.org/cairo#commit=29a8b4e970379ca04a7db8e63c71bb34c0e349ce')
+sha1sums=('SKIP')
 
-prepare() {
-  cd $pkgname-$pkgver
-  # https://bugs.archlinux.org/task/40313 + https://bugs.gentoo.org/510782
-  # patch to make it optional is taken from Gentoo
-  patch -Np1 -i $srcdir/cairo-1.12.16-lto-optional.patch
-  autoreconf -vfi
-}
-
 build() {
-  cd $pkgname-$pkgver
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
 
   ./configure --prefix=/usr \
--sysconfdir=/etc \
@@ -43,7 +34,8 @@
--enable-svg \
--enable-ps \
--enable-pdf \
-   --enable-gobject #\
+   --enable-gobject \
+--enable-gtk-doc #\
# --enable-test-surfaces

#--disable-xlib-xcb \
@@ -54,8 +46,8 @@
 }
 
 check() {
-  cd $pkgname-$pkgver
-  make -k test || /bin/true
+  cd $pkgname
+  #make -j1 -k test || /bin/true
   
   # results:
   # 1.12.8-1   # 162 Passed, 328 Failed [8 crashed, 10 expected], 26 Skipped
@@ -65,6 +57,6 @@
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd $pkgname
   make DESTDIR=$pkgdir install
 }



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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 21:57:01
  Author: jgc
Revision: 220961

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  cairo/repos/gnome-unstable-i686/
  cairo/repos/gnome-unstable-i686/PKGBUILD
(from rev 220960, cairo/trunk/PKGBUILD)
  cairo/repos/gnome-unstable-i686/cairo-1.12.16-lto-optional.patch
(from rev 220960, cairo/trunk/cairo-1.12.16-lto-optional.patch)
  cairo/repos/gnome-unstable-x86_64/
  cairo/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 220960, cairo/trunk/PKGBUILD)
  cairo/repos/gnome-unstable-x86_64/cairo-1.12.16-lto-optional.patch
(from rev 220960, cairo/trunk/cairo-1.12.16-lto-optional.patch)

+
 gnome-unstable-i686/PKGBUILD   |   62 +++
 gnome-unstable-i686/cairo-1.12.16-lto-optional.patch   |   29 +++
 gnome-unstable-x86_64/PKGBUILD |   62 +++
 gnome-unstable-x86_64/cairo-1.12.16-lto-optional.patch |   29 +++
 4 files changed, 182 insertions(+)

Copied: cairo/repos/gnome-unstable-i686/PKGBUILD (from rev 220960, 
cairo/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2014-09-04 19:57:01 UTC (rev 220961)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Brice Carpentier br...@daknet.org
+
+pkgname=cairo
+pkgver=1.13.1
+pkgrel=1
+pkgdesc=Cairo vector graphics library
+arch=(i686 x86_64)
+license=('LGPL' 'MPL')
+url=http://cairographics.org/;
+depends=('libpng' 'libxrender' 'libxext' 'fontconfig' 'pixman=0.28.0' 'glib2' 
'mesa' 'libgl' 'lzo')
+makedepends=('mesa-libgl' 'librsvg' 'gtk2' 'poppler-glib' 'libspectre' 
'gtk-doc' 'valgrind' 'git')
+ # for the test suite:
+ #'ttf-dejavu' 'gsfonts' 'xorg-server-xvfb' ) # 'libdrm')
+#optdepends=('xcb-util: for XCB backend') # really needed?
+provides=('cairo-xcb')
+replaces=('cairo-xcb')
+source=('git://anongit.freedesktop.org/cairo#commit=29a8b4e970379ca04a7db8e63c71bb34c0e349ce')
+sha1sums=('SKIP')
+
+build() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+
+  ./configure --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --disable-static \
+   --disable-lto \
+   --enable-tee \
+   --enable-gl \
+   --enable-egl \
+   --enable-svg \
+   --enable-ps \
+   --enable-pdf \
+   --enable-gobject \
+--enable-gtk-doc #\
+   # --enable-test-surfaces
+   
+   #--disable-xlib-xcb \
+   # --enable-test-surfaces \ takes ages
+   #--enable-drm # breaks build
+   
+  make
+}
+
+check() {
+  cd $pkgname
+  #make -j1 -k test || /bin/true
+  
+  # results:
+  # 1.12.8-1   # 162 Passed, 328 Failed [8 crashed, 10 expected], 26 Skipped
+  # 1.12.12-2: # 29 Passed, 464 Failed [460 crashed, 2 expected], 26 Skipped
+  # 1.12.16-1: 144 Passed, 364 Failed [6 crashed, 12 expected], 27 Skipped
+
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR=$pkgdir install
+}

Copied: cairo/repos/gnome-unstable-i686/cairo-1.12.16-lto-optional.patch (from 
rev 220960, cairo/trunk/cairo-1.12.16-lto-optional.patch)
===
--- gnome-unstable-i686/cairo-1.12.16-lto-optional.patch
(rev 0)
+++ gnome-unstable-i686/cairo-1.12.16-lto-optional.patch2014-09-04 
19:57:01 UTC (rev 220961)
@@ -0,0 +1,29 @@
+diff --git a/build/configure.ac.warnings b/build/configure.ac.warnings
+index f984eb2..15b3da2 100644
+--- a/build/configure.ac.warnings
 b/build/configure.ac.warnings
+@@ -38,13 +38,18 @@ dnl options.  Namely, the following:
+ 
+ dnl -flto working really needs a test link, not just a compile
+ 
+-safe_MAYBE_WARN=$MAYBE_WARN
+-MAYBE_WARN=$MAYBE_WARN -flto
+-AC_TRY_LINK([],[
++AC_ARG_ENABLE(lto,
++  AS_HELP_STRING([--disable-lto],
++ [Do not try to use Link-Time Optimization]))
++if test x$enable_lto != xno; then
++  safe_MAYBE_WARN=$MAYBE_WARN
++  MAYBE_WARN=$MAYBE_WARN -flto
++  AC_TRY_LINK([],[
+   int main(int argc, char **argv) { return 0; }
+-],[],[
++  ],[],[
+   MAYBE_WARN=$safe_MAYBE_WARN
+-])
++  ])
++fi
+ 
+ MAYBE_WARN=$MAYBE_WARN -fno-strict-aliasing -fno-common
+ 
+

Copied: cairo/repos/gnome-unstable-x86_64/PKGBUILD (from rev 220960, 
cairo/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2014-09-04 19:57:01 UTC (rev 220961)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Brice Carpentier br...@daknet.org
+
+pkgname=cairo
+pkgver=1.13.1
+pkgrel=1
+pkgdesc=Cairo vector graphics library
+arch=(i686 x86_64)
+license=('LGPL' 'MPL')
+url=http://cairographics.org/;
+depends=('libpng' 

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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 22:01:41
  Author: jgc
Revision: 220962

upgpkg: pango 1.36.7-1

Modified:
  pango/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 19:57:01 UTC (rev 220961)
+++ PKGBUILD2014-09-04 20:01:41 UTC (rev 220962)
@@ -2,17 +2,17 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=pango
-pkgver=1.36.6
+pkgver=1.36.7
 pkgrel=1
 pkgdesc=A library for layout and rendering of text
 arch=('i686' 'x86_64')
 license=('LGPL')
 depends=('libthai' 'cairo' 'libxft' 'harfbuzz')
-makedepends=('harfbuzz' 'fontconfig' 'cairo' 'libxft' 'libthai' 
'gobject-introspection' 'help2man')
+makedepends=('harfbuzz' 'fontconfig' 'cairo' 'libxft' 'libthai' 
'gobject-introspection' 'help2man' 'python2')
 install=pango.install
 
source=(http://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
 url=http://www.pango.org/;
-sha256sums=('4c53c752823723875078b91340f32136aadb99e91c0f6483f024f978a02c8624')
+sha256sums=('1f7b527423a1b3044fd9ae7fbe054107b06723ff1c73e0b5f7bf9b84358d404a')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 22:01:46
  Author: jgc
Revision: 220963

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  pango/repos/gnome-unstable-i686/
  pango/repos/gnome-unstable-i686/PKGBUILD
(from rev 220962, pango/trunk/PKGBUILD)
  pango/repos/gnome-unstable-i686/pango.install
(from rev 220962, pango/trunk/pango.install)
  pango/repos/gnome-unstable-x86_64/
  pango/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 220962, pango/trunk/PKGBUILD)
  pango/repos/gnome-unstable-x86_64/pango.install
(from rev 220962, pango/trunk/pango.install)

-+
 gnome-unstable-i686/PKGBUILD|   31 +++
 gnome-unstable-i686/pango.install   |   14 ++
 gnome-unstable-x86_64/PKGBUILD  |   31 +++
 gnome-unstable-x86_64/pango.install |   14 ++
 4 files changed, 90 insertions(+)

Copied: pango/repos/gnome-unstable-i686/PKGBUILD (from rev 220962, 
pango/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2014-09-04 20:01:46 UTC (rev 220963)
@@ -0,0 +1,31 @@
+# $Id$ 
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=pango
+pkgver=1.36.7
+pkgrel=1
+pkgdesc=A library for layout and rendering of text
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('libthai' 'cairo' 'libxft' 'harfbuzz')
+makedepends=('harfbuzz' 'fontconfig' 'cairo' 'libxft' 'libthai' 
'gobject-introspection' 'help2man' 'python2')
+install=pango.install
+source=(http://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
+url=http://www.pango.org/;
+sha256sums=('1f7b527423a1b3044fd9ae7fbe054107b06723ff1c73e0b5f7bf9b84358d404a')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  rm -f pango-view/pango-view.1.in
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --with-included-modules=basic-fc
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make -j1 DESTDIR=${pkgdir} install
+  install -m755 -d ${pkgdir}/etc/pango
+}

Copied: pango/repos/gnome-unstable-i686/pango.install (from rev 220962, 
pango/trunk/pango.install)
===
--- gnome-unstable-i686/pango.install   (rev 0)
+++ gnome-unstable-i686/pango.install   2014-09-04 20:01:46 UTC (rev 220963)
@@ -0,0 +1,14 @@
+post_install() {
+   usr/bin/pango-querymodules etc/pango/pango.modules
+}
+
+post_upgrade() {
+   if [ -f usr/etc/pango/pango.modules ]; then
+   rm usr/etc/pango/pango.modules
+   fi
+   post_install
+}
+
+pre_remove() {
+   rm etc/pango/pango.modules
+}

Copied: pango/repos/gnome-unstable-x86_64/PKGBUILD (from rev 220962, 
pango/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2014-09-04 20:01:46 UTC (rev 220963)
@@ -0,0 +1,31 @@
+# $Id$ 
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=pango
+pkgver=1.36.7
+pkgrel=1
+pkgdesc=A library for layout and rendering of text
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('libthai' 'cairo' 'libxft' 'harfbuzz')
+makedepends=('harfbuzz' 'fontconfig' 'cairo' 'libxft' 'libthai' 
'gobject-introspection' 'help2man' 'python2')
+install=pango.install
+source=(http://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
+url=http://www.pango.org/;
+sha256sums=('1f7b527423a1b3044fd9ae7fbe054107b06723ff1c73e0b5f7bf9b84358d404a')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  rm -f pango-view/pango-view.1.in
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --with-included-modules=basic-fc
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make -j1 DESTDIR=${pkgdir} install
+  install -m755 -d ${pkgdir}/etc/pango
+}

Copied: pango/repos/gnome-unstable-x86_64/pango.install (from rev 220962, 
pango/trunk/pango.install)
===
--- gnome-unstable-x86_64/pango.install (rev 0)
+++ gnome-unstable-x86_64/pango.install 2014-09-04 20:01:46 UTC (rev 220963)
@@ -0,0 +1,14 @@
+post_install() {
+   usr/bin/pango-querymodules etc/pango/pango.modules
+}
+
+post_upgrade() {
+   if [ -f usr/etc/pango/pango.modules ]; then
+   rm usr/etc/pango/pango.modules
+   fi
+   post_install
+}
+
+pre_remove() {
+   rm etc/pango/pango.modules
+}



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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 22:05:46
  Author: jgc
Revision: 220964

upgpkg: at-spi2-core 2.13.90-1

Modified:
  at-spi2-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 20:01:46 UTC (rev 220963)
+++ PKGBUILD2014-09-04 20:05:46 UTC (rev 220964)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=at-spi2-core
-pkgver=2.12.0
+pkgver=2.13.90
 pkgrel=1
 pkgdesc=Protocol definitions and daemon for D-Bus at-spi
 arch=('i686' 'x86_64')
@@ -9,9 +9,9 @@
 url=http://www.gnome.org;
 license=('GPL2')
 depends=('dbus' 'glib2' 'libxtst')
-makedepends=('intltool' 'gobject-introspection')
+makedepends=('intltool' 'gobject-introspection' 'python2')
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('db550edd98e53b4252521459c2dcaf0f3b060a9bad52489b9dbadbaedad3fb89')
+sha256sums=('f09f261156945280da9a253419423efa7369f267d54b2bf43597c998f31d5cda')
 
 build() {
   cd $pkgname-$pkgver



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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 22:05:52
  Author: jgc
Revision: 220965

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  at-spi2-core/repos/gnome-unstable-i686/
  at-spi2-core/repos/gnome-unstable-i686/PKGBUILD
(from rev 220964, at-spi2-core/trunk/PKGBUILD)
  at-spi2-core/repos/gnome-unstable-x86_64/
  at-spi2-core/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 220964, at-spi2-core/trunk/PKGBUILD)

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

Copied: at-spi2-core/repos/gnome-unstable-i686/PKGBUILD (from rev 220964, 
at-spi2-core/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2014-09-04 20:05:52 UTC (rev 220965)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=at-spi2-core
+pkgver=2.13.90
+pkgrel=1
+pkgdesc=Protocol definitions and daemon for D-Bus at-spi
+arch=('i686' 'x86_64')
+url=http://www.gnome.org;
+license=('GPL2')
+depends=('dbus' 'glib2' 'libxtst')
+makedepends=('intltool' 'gobject-introspection' 'python2')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('f09f261156945280da9a253419423efa7369f267d54b2bf43597c998f31d5cda')
+
+build() {
+  cd $pkgname-$pkgver
+
+  sed -i -e '/AC_PATH_XTRA/d' configure.ac
+  autoreconf --force --install
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/at-spi2-core --disable-xevie
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: at-spi2-core/repos/gnome-unstable-x86_64/PKGBUILD (from rev 220964, 
at-spi2-core/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2014-09-04 20:05:52 UTC (rev 220965)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=at-spi2-core
+pkgver=2.13.90
+pkgrel=1
+pkgdesc=Protocol definitions and daemon for D-Bus at-spi
+arch=('i686' 'x86_64')
+url=http://www.gnome.org;
+license=('GPL2')
+depends=('dbus' 'glib2' 'libxtst')
+makedepends=('intltool' 'gobject-introspection' 'python2')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('f09f261156945280da9a253419423efa7369f267d54b2bf43597c998f31d5cda')
+
+build() {
+  cd $pkgname-$pkgver
+
+  sed -i -e '/AC_PATH_XTRA/d' configure.ac
+  autoreconf --force --install
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/at-spi2-core --disable-xevie
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in at-spi2-atk/trunk (PKGBUILD)

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 22:07:13
  Author: jgc
Revision: 220966

upgpkg: at-spi2-atk 2.13.4-1

Modified:
  at-spi2-atk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 20:05:52 UTC (rev 220965)
+++ PKGBUILD2014-09-04 20:07:13 UTC (rev 220966)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=at-spi2-atk
-pkgver=2.12.1
+pkgver=2.13.4
 pkgrel=1
 pkgdesc=A GTK+ module that bridges ATK to D-Bus at-spi
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 depends=('at-spi2-core' 'libx11' 'atk')
 makedepends=('intltool')
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5fa9c527bdec028e06797563cd52d49bcf06f638549df983424d88db89bb1336')
+sha256sums=('b20ede423cdf95ae34feca08b1f01afccafd75c37a3c8060b04beed31b18af15')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in at-spi2-atk/repos (4 files)

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 22:07:18
  Author: jgc
Revision: 220967

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  at-spi2-atk/repos/gnome-unstable-i686/
  at-spi2-atk/repos/gnome-unstable-i686/PKGBUILD
(from rev 220966, at-spi2-atk/trunk/PKGBUILD)
  at-spi2-atk/repos/gnome-unstable-x86_64/
  at-spi2-atk/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 220966, at-spi2-atk/trunk/PKGBUILD)

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

Copied: at-spi2-atk/repos/gnome-unstable-i686/PKGBUILD (from rev 220966, 
at-spi2-atk/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2014-09-04 20:07:18 UTC (rev 220967)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=at-spi2-atk
+pkgver=2.13.4
+pkgrel=1
+pkgdesc=A GTK+ module that bridges ATK to D-Bus at-spi
+arch=('i686' 'x86_64')
+url=http://www.gnome.org;
+license=('GPL2')
+depends=('at-spi2-core' 'libx11' 'atk')
+makedepends=('intltool')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('b20ede423cdf95ae34feca08b1f01afccafd75c37a3c8060b04beed31b18af15')
+
+build() {
+  cd $pkgname-$pkgver
+
+  sed -i -e '/AC_PATH_XTRA/d' configure.ac
+  autoreconf --force --install
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: at-spi2-atk/repos/gnome-unstable-x86_64/PKGBUILD (from rev 220966, 
at-spi2-atk/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2014-09-04 20:07:18 UTC (rev 220967)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=at-spi2-atk
+pkgver=2.13.4
+pkgrel=1
+pkgdesc=A GTK+ module that bridges ATK to D-Bus at-spi
+arch=('i686' 'x86_64')
+url=http://www.gnome.org;
+license=('GPL2')
+depends=('at-spi2-core' 'libx11' 'atk')
+makedepends=('intltool')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('b20ede423cdf95ae34feca08b1f01afccafd75c37a3c8060b04beed31b18af15')
+
+build() {
+  cd $pkgname-$pkgver
+
+  sed -i -e '/AC_PATH_XTRA/d' configure.ac
+  autoreconf --force --install
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in (5 files)

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 22:17:39
  Author: jgc
Revision: 220968

Add new icon theme package, basic icons for gtk3

Added:
  adwaita-icon-theme/
  adwaita-icon-theme/repos/
  adwaita-icon-theme/trunk/
  adwaita-icon-theme/trunk/PKGBUILD
  adwaita-icon-theme/trunk/adwaita-icon-theme.install

+
 PKGBUILD   |   28 
 adwaita-icon-theme.install |   11 +++
 2 files changed, 39 insertions(+)

Added: adwaita-icon-theme/trunk/PKGBUILD
===
--- adwaita-icon-theme/trunk/PKGBUILD   (rev 0)
+++ adwaita-icon-theme/trunk/PKGBUILD   2014-09-04 20:17:39 UTC (rev 220968)
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 214086 2014-06-03 12:25:52Z jgc $
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=adwaita-icon-theme
+pkgver=3.13.91
+pkgrel=1
+pkgdesc=Adwaita icon theme
+arch=(any)
+depends=('hicolor-icon-theme' 'gtk-update-icon-cache')
+makedepends=('intltool' 'icon-naming-utils')
+url=http://www.gnome.org;
+license=('GPL')
+groups=('gnome')
+install=adwaita-icon-theme.install
+options=('!emptydirs')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('d0cf4705d3439c68d344431b62cca5fe6fcf91bd38c745c48b2476d0aa41b8ad')
+
+build() {
+cd $pkgname-$pkgver
+./configure --prefix=/usr
+make
+}
+
+package() {
+cd $pkgname-$pkgver
+make DESTDIR=$pkgdir install
+}

Added: adwaita-icon-theme/trunk/adwaita-icon-theme.install
===
--- adwaita-icon-theme/trunk/adwaita-icon-theme.install 
(rev 0)
+++ adwaita-icon-theme/trunk/adwaita-icon-theme.install 2014-09-04 20:17:39 UTC 
(rev 220968)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f /usr/share/icons/Adwaita
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



[arch-commits] Commit in adwaita-icon-theme/repos (3 files)

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 22:17:59
  Author: jgc
Revision: 220969

archrelease: copy trunk to gnome-unstable-any

Added:
  adwaita-icon-theme/repos/gnome-unstable-any/
  adwaita-icon-theme/repos/gnome-unstable-any/PKGBUILD
(from rev 220968, adwaita-icon-theme/trunk/PKGBUILD)
  adwaita-icon-theme/repos/gnome-unstable-any/adwaita-icon-theme.install
(from rev 220968, adwaita-icon-theme/trunk/adwaita-icon-theme.install)

+
 PKGBUILD   |   28 
 adwaita-icon-theme.install |   11 +++
 2 files changed, 39 insertions(+)

Copied: adwaita-icon-theme/repos/gnome-unstable-any/PKGBUILD (from rev 220968, 
adwaita-icon-theme/trunk/PKGBUILD)
===
--- gnome-unstable-any/PKGBUILD (rev 0)
+++ gnome-unstable-any/PKGBUILD 2014-09-04 20:17:59 UTC (rev 220969)
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 214086 2014-06-03 12:25:52Z jgc $
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=adwaita-icon-theme
+pkgver=3.13.91
+pkgrel=1
+pkgdesc=Adwaita icon theme
+arch=(any)
+depends=('hicolor-icon-theme' 'gtk-update-icon-cache')
+makedepends=('intltool' 'icon-naming-utils')
+url=http://www.gnome.org;
+license=('GPL')
+groups=('gnome')
+install=adwaita-icon-theme.install
+options=('!emptydirs')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('d0cf4705d3439c68d344431b62cca5fe6fcf91bd38c745c48b2476d0aa41b8ad')
+
+build() {
+cd $pkgname-$pkgver
+./configure --prefix=/usr
+make
+}
+
+package() {
+cd $pkgname-$pkgver
+make DESTDIR=$pkgdir install
+}

Copied: adwaita-icon-theme/repos/gnome-unstable-any/adwaita-icon-theme.install 
(from rev 220968, adwaita-icon-theme/trunk/adwaita-icon-theme.install)
===
--- gnome-unstable-any/adwaita-icon-theme.install   
(rev 0)
+++ gnome-unstable-any/adwaita-icon-theme.install   2014-09-04 20:17:59 UTC 
(rev 220969)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f /usr/share/icons/Adwaita
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 22:25:22
  Author: jgc
Revision: 220971

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  wayland/repos/gnome-unstable-i686/
  wayland/repos/gnome-unstable-i686/PKGBUILD
(from rev 220970, wayland/trunk/PKGBUILD)
  wayland/repos/gnome-unstable-x86_64/
  wayland/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 220970, wayland/trunk/PKGBUILD)

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

Copied: wayland/repos/gnome-unstable-i686/PKGBUILD (from rev 220970, 
wayland/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2014-09-04 20:25:22 UTC (rev 220971)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Sébastien Luttringer
+# Contributor: Joel Teichroeb j...@teichroeb.net
+
+pkgname=wayland
+pkgver=1.5.91
+pkgrel=1
+pkgdesc='A computer display server protocol'
+arch=('i686' 'x86_64')
+url='http://wayland.freedesktop.org'
+license=('MIT')
+depends=('libffi' 'expat')
+makedepends=('doxygen')
+source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
+sha1sums=('0b0513706eee5a43d33f5e4bc9cafa5d78037db5')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+--disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+  install -Dm 644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Copied: wayland/repos/gnome-unstable-x86_64/PKGBUILD (from rev 220970, 
wayland/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2014-09-04 20:25:22 UTC (rev 220971)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Sébastien Luttringer
+# Contributor: Joel Teichroeb j...@teichroeb.net
+
+pkgname=wayland
+pkgver=1.5.91
+pkgrel=1
+pkgdesc='A computer display server protocol'
+arch=('i686' 'x86_64')
+url='http://wayland.freedesktop.org'
+license=('MIT')
+depends=('libffi' 'expat')
+makedepends=('doxygen')
+source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
+sha1sums=('0b0513706eee5a43d33f5e4bc9cafa5d78037db5')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+--disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+  install -Dm 644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}



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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 22:25:16
  Author: jgc
Revision: 220970

upgpkg: wayland 1.5.91-1

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 20:17:59 UTC (rev 220969)
+++ PKGBUILD2014-09-04 20:25:16 UTC (rev 220970)
@@ -4,7 +4,7 @@
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=wayland
-pkgver=1.5.0
+pkgver=1.5.91
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('libffi' 'expat')
 makedepends=('doxygen')
 source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
-sha1sums=('bace08b4a531ea4b80b4cf4e953320bc48ed7efe')
+sha1sums=('0b0513706eee5a43d33f5e4bc9cafa5d78037db5')
 
 build() {
   cd $pkgname-$pkgver



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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 22:32:27
  Author: jgc
Revision: 220972

upgpkg: gtk3 3.13.8-1

Modified:
  gtk3/trunk/PKGBUILD

--+
 PKGBUILD |   15 +--
 1 file changed, 5 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 20:25:22 UTC (rev 220971)
+++ PKGBUILD2014-09-04 20:32:27 UTC (rev 220972)
@@ -3,7 +3,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
 
 pkgname=gtk3
-pkgver=3.12.2
+pkgver=3.13.8
 pkgrel=1
 pkgdesc=GObject-based multi-platform GUI toolkit (v3)
 arch=(i686 x86_64)
@@ -10,15 +10,11 @@
 url=http://www.gtk.org/;
 install=gtk3.install
 depends=(atk cairo gtk-update-icon-cache libcups libxcursor libxinerama 
libxrandr libxi
- libxcomposite libxdamage pango shared-mime-info colord at-spi2-atk 
wayland libxkbcommon)
-makedepends=(gobject-introspection)
-optdepends=('gnome-themes-standard: Default widget theme'
-'gnome-icon-theme: Default icon theme')
+ libxcomposite libxdamage pango shared-mime-info colord at-spi2-atk 
wayland libxkbcommon adwaita-icon-theme)
+makedepends=(gobject-introspection python2)
 license=(LGPL)
-source=(http://ftp.gnome.org/pub/gnome/sources/gtk+/${pkgver:0:4}/gtk+-$pkgver.tar.xz
-settings.ini)
-sha256sums=('61d74eea74231b1ea4b53084a9d6fc9917ab0e1d71b69d92cbf60a4b4fb385d0'
-'14369dfd1d325c393e17c105d5d5cc5501663277bd4047ea04a50abb3cfbd119')
+source=(http://ftp.gnome.org/pub/gnome/sources/gtk+/${pkgver:0:4}/gtk+-$pkgver.tar.xz)
+sha256sums=('c4bcb3a4bcbfda7eb8737e557fc5ff0e628c367cb7997e56e1e90092a0ab8f3f')
 
 build() {
 cd gtk+-$pkgver
@@ -41,5 +37,4 @@
 package() {
 cd gtk+-$pkgver
 make DESTDIR=$pkgdir install
-install -Dm644 ../settings.ini $pkgdir/usr/share/gtk-3.0/settings.ini
 }



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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 22:32:34
  Author: jgc
Revision: 220973

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gtk3/repos/gnome-unstable-i686/
  gtk3/repos/gnome-unstable-i686/PKGBUILD
(from rev 220972, gtk3/trunk/PKGBUILD)
  gtk3/repos/gnome-unstable-i686/gtk3.install
(from rev 220972, gtk3/trunk/gtk3.install)
  gtk3/repos/gnome-unstable-i686/settings.ini
(from rev 220972, gtk3/trunk/settings.ini)
  gtk3/repos/gnome-unstable-x86_64/
  gtk3/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 220972, gtk3/trunk/PKGBUILD)
  gtk3/repos/gnome-unstable-x86_64/gtk3.install
(from rev 220972, gtk3/trunk/gtk3.install)
  gtk3/repos/gnome-unstable-x86_64/settings.ini
(from rev 220972, gtk3/trunk/settings.ini)

+
 gnome-unstable-i686/PKGBUILD   |   40 +++
 gnome-unstable-i686/gtk3.install   |   18 +++
 gnome-unstable-i686/settings.ini   |4 +++
 gnome-unstable-x86_64/PKGBUILD |   40 +++
 gnome-unstable-x86_64/gtk3.install |   18 +++
 gnome-unstable-x86_64/settings.ini |4 +++
 6 files changed, 124 insertions(+)

Copied: gtk3/repos/gnome-unstable-i686/PKGBUILD (from rev 220972, 
gtk3/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2014-09-04 20:32:34 UTC (rev 220973)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=gtk3
+pkgver=3.13.8
+pkgrel=1
+pkgdesc=GObject-based multi-platform GUI toolkit (v3)
+arch=(i686 x86_64)
+url=http://www.gtk.org/;
+install=gtk3.install
+depends=(atk cairo gtk-update-icon-cache libcups libxcursor libxinerama 
libxrandr libxi
+ libxcomposite libxdamage pango shared-mime-info colord at-spi2-atk 
wayland libxkbcommon adwaita-icon-theme)
+makedepends=(gobject-introspection python2)
+license=(LGPL)
+source=(http://ftp.gnome.org/pub/gnome/sources/gtk+/${pkgver:0:4}/gtk+-$pkgver.tar.xz)
+sha256sums=('c4bcb3a4bcbfda7eb8737e557fc5ff0e628c367cb7997e56e1e90092a0ab8f3f')
+
+build() {
+cd gtk+-$pkgver
+
+CXX=/bin/false ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--enable-gtk2-dependency \
+--disable-schemas-compile \
+--enable-x11-backend \
+--enable-broadway-backend \
+--enable-wayland-backend
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=655517
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd gtk+-$pkgver
+make DESTDIR=$pkgdir install
+}

Copied: gtk3/repos/gnome-unstable-i686/gtk3.install (from rev 220972, 
gtk3/trunk/gtk3.install)
===
--- gnome-unstable-i686/gtk3.install(rev 0)
+++ gnome-unstable-i686/gtk3.install2014-09-04 20:32:34 UTC (rev 220973)
@@ -0,0 +1,18 @@
+post_install() {
+/usr/bin/gtk-query-immodules-3.0 --update-cache
+/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
+/usr/bin/gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install
+}
+
+pre_remove() {
+rm -f /usr/lib/gtk-3.0/3.0.0/immodules.cache
+}
+
+post_remove() {
+/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
+/usr/bin/gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}

Copied: gtk3/repos/gnome-unstable-i686/settings.ini (from rev 220972, 
gtk3/trunk/settings.ini)
===
--- gnome-unstable-i686/settings.ini(rev 0)
+++ gnome-unstable-i686/settings.ini2014-09-04 20:32:34 UTC (rev 220973)
@@ -0,0 +1,4 @@
+[Settings]
+gtk-icon-theme-name = gnome
+gtk-theme-name = Adwaita
+gtk-font-name = Cantarell 11

Copied: gtk3/repos/gnome-unstable-x86_64/PKGBUILD (from rev 220972, 
gtk3/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2014-09-04 20:32:34 UTC (rev 220973)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=gtk3
+pkgver=3.13.8
+pkgrel=1
+pkgdesc=GObject-based multi-platform GUI toolkit (v3)
+arch=(i686 x86_64)
+url=http://www.gtk.org/;
+install=gtk3.install
+depends=(atk cairo gtk-update-icon-cache libcups libxcursor libxinerama 
libxrandr libxi
+ libxcomposite libxdamage pango shared-mime-info colord at-spi2-atk 
wayland libxkbcommon adwaita-icon-theme)
+makedepends=(gobject-introspection python2)
+license=(LGPL)

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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 22:37:25
  Author: jgc
Revision: 220974

upgpkg: libinput 0.5.0-1

Modified:
  libinput/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 20:32:34 UTC (rev 220973)
+++ PKGBUILD2014-09-04 20:37:25 UTC (rev 220974)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot
 
 pkgname=libinput
-pkgver=0.3.0
+pkgver=0.5.0
 pkgrel=1
 pkgdesc=library that handles input devices for display servers and other 
applications that need to directly deal with input devices.
 arch=(i686 x86_64)
@@ -11,8 +11,9 @@
 depends=('mtdev' 'libsystemd' 'libevdev')
 makedepends=('systemd')
 options=('!libtool')
-source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('5859dfc30d5a1a8c0141be0880b5e84c842230c621b8b0d45610ff3c1366b913')
+source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('349c63d8819ddfc1a35fc8bcf352256b952ae22b1ff370fd819a16f67e801ea7'
+'SKIP')
 
 build() {
   cd $pkgname-$pkgver



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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 22:37:30
  Author: jgc
Revision: 220975

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  libinput/repos/gnome-unstable-i686/
  libinput/repos/gnome-unstable-i686/PKGBUILD
(from rev 220974, libinput/trunk/PKGBUILD)
  libinput/repos/gnome-unstable-x86_64/
  libinput/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 220974, libinput/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   28 
 gnome-unstable-x86_64/PKGBUILD |   28 
 2 files changed, 56 insertions(+)

Copied: libinput/repos/gnome-unstable-i686/PKGBUILD (from rev 220974, 
libinput/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2014-09-04 20:37:30 UTC (rev 220975)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot
+
+pkgname=libinput
+pkgver=0.5.0
+pkgrel=1
+pkgdesc=library that handles input devices for display servers and other 
applications that need to directly deal with input devices.
+arch=(i686 x86_64)
+url=http://www.freedesktop.org/wiki/Software/libinput/;
+license=(custom:X11)
+depends=('mtdev' 'libsystemd' 'libevdev')
+makedepends=('systemd')
+options=('!libtool')
+source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('349c63d8819ddfc1a35fc8bcf352256b952ae22b1ff370fd819a16f67e801ea7'
+'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+}

Copied: libinput/repos/gnome-unstable-x86_64/PKGBUILD (from rev 220974, 
libinput/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2014-09-04 20:37:30 UTC (rev 220975)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot
+
+pkgname=libinput
+pkgver=0.5.0
+pkgrel=1
+pkgdesc=library that handles input devices for display servers and other 
applications that need to directly deal with input devices.
+arch=(i686 x86_64)
+url=http://www.freedesktop.org/wiki/Software/libinput/;
+license=(custom:X11)
+depends=('mtdev' 'libsystemd' 'libevdev')
+makedepends=('systemd')
+options=('!libtool')
+source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('349c63d8819ddfc1a35fc8bcf352256b952ae22b1ff370fd819a16f67e801ea7'
+'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+}



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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 22:40:50
  Author: jgc
Revision: 220976

upgpkg: clutter 1.19.8-1

Modified:
  clutter/trunk/PKGBUILD
Deleted:
  clutter/trunk/fix_a_segfault_on_device_removal.diff
  clutter/trunk/fix_buffer_age.patch
  clutter/trunk/stop_using_deprecated_libevdev_api.diff
  clutter/trunk/unref_devices_on_removal.diff

-+
 PKGBUILD|6 -
 fix_a_segfault_on_device_removal.diff   |   31 ---
 fix_buffer_age.patch|   34 
 stop_using_deprecated_libevdev_api.diff |  117 --
 unref_devices_on_removal.diff   |   22 -
 5 files changed, 3 insertions(+), 207 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 20:37:30 UTC (rev 220975)
+++ PKGBUILD2014-09-04 20:40:50 UTC (rev 220976)
@@ -4,7 +4,7 @@
 # Contributor: William Rea sillywi...@gmail.com
 
 pkgname=clutter
-pkgver=1.18.4
+pkgver=1.19.8
 pkgrel=1
 pkgdesc=A GObject based library for creating fast, visually rich graphical 
user interfaces
 arch=('i686' 'x86_64')
@@ -11,9 +11,9 @@
 url=http://clutter-project.org/;
 license=('LGPL')
 depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi' 'libxkbcommon' 'libinput')
-makedepends=('gobject-introspection')
+makedepends=('gobject-introspection' 'python2')
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('4eea1015cd6d4b4945cb5d4a60e52275b0d70e13852d6d99c9abc0cd4deeb60c')
+sha256sums=('d68786bba6af230176b5aaaf255d64ee27a7293e85ed2e064c1005939779b88c')
 
 build() {
   cd $pkgname-$pkgver

Deleted: fix_a_segfault_on_device_removal.diff
===
--- fix_a_segfault_on_device_removal.diff   2014-09-04 20:37:30 UTC (rev 
220975)
+++ fix_a_segfault_on_device_removal.diff   2014-09-04 20:40:50 UTC (rev 
220976)
@@ -1,31 +0,0 @@
-From 05e6bcc666e345ed4619c1a40a298212d1075b99 Mon Sep 17 00:00:00 2001
-From: Rui Matos tiagoma...@gmail.com
-Date: Thu, 21 Nov 2013 13:51:26 +
-Subject: device-manager-evdev: Fix a segfault on device removal
-
-Master devices have a NULL sysfs path so use g_strcmp0 to handle them
-without crashing.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=712812

-diff --git a/clutter/evdev/clutter-device-manager-evdev.c 
b/clutter/evdev/clutter-device-manager-evdev.c
-index 256fd0e..38d707f 100644
 a/clutter/evdev/clutter-device-manager-evdev.c
-+++ b/clutter/evdev/clutter-device-manager-evdev.c
-@@ -943,11 +943,8 @@ find_device_by_udev_device (ClutterDeviceManagerEvdev 
*manager_evdev,
- {
-   ClutterInputDeviceEvdev *device = l-data;
- 
--  if (strcmp (sysfs_path,
--  _clutter_input_device_evdev_get_sysfs_path (device)) == 0)
--{
--  return device;
--}
-+  if (g_strcmp0 (sysfs_path, _clutter_input_device_evdev_get_sysfs_path 
(device)) == 0)
-+return device;
- }
- 
-   return NULL;
---
-cgit v0.9.2
-

Deleted: fix_buffer_age.patch
===
--- fix_buffer_age.patch2014-09-04 20:37:30 UTC (rev 220975)
+++ fix_buffer_age.patch2014-09-04 20:40:50 UTC (rev 220976)
@@ -1,34 +0,0 @@
-From 6665f47d66a871b6e1a5f4200282f42da043a0e8 Mon Sep 17 00:00:00 2001
-From: Adel Gadllah adel.gadl...@gmail.com
-Date: Sun, 16 Feb 2014 21:07:43 +
-Subject: stage-cogl: Fix buffer_age code path
-
-Currently we where checking whether the damage_history list contains
-more or equal then buffer_age entries. This is wrong because we prepend
-our current clip to the list just before the check.
-
-Fix that to check whether we have more entries instead of more or equal.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=724788

-diff --git a/clutter/cogl/clutter-stage-cogl.c 
b/clutter/cogl/clutter-stage-cogl.c
-index 86546b1..cff8444 100644
 a/clutter/cogl/clutter-stage-cogl.c
-+++ b/clutter/cogl/clutter-stage-cogl.c
-@@ -483,11 +483,12 @@ clutter_stage_cogl_redraw (ClutterStageWindow 
*stage_window)
- 
- stage_cogl-damage_history = g_slist_prepend 
(stage_cogl-damage_history, current_damage);
- 
--if (age != 0  !stage_cogl-dirty_backbuffer  g_slist_length 
(stage_cogl-damage_history) = age)
-+if (age != 0  !stage_cogl-dirty_backbuffer  g_slist_length 
(stage_cogl-damage_history)  age)
-   {
- int i = 0;
- GSList *tmp = NULL;
--for (tmp = stage_cogl-damage_history; tmp; tmp = tmp-next)
-+/* We skip the first entry because it is the clip_region itself */
-+for (tmp = stage_cogl-damage_history-next; tmp; tmp = tmp-next)
-   {
- _clutter_util_rectangle_union (clip_region, tmp-data, 
clip_region);
- i++;
---
-cgit v0.9.2

Deleted: stop_using_deprecated_libevdev_api.diff

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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 22:40:56
  Author: jgc
Revision: 220977

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  clutter/repos/gnome-unstable-i686/
  clutter/repos/gnome-unstable-i686/PKGBUILD
(from rev 220976, clutter/trunk/PKGBUILD)
  clutter/repos/gnome-unstable-x86_64/
  clutter/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 220976, clutter/trunk/PKGBUILD)

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

Copied: clutter/repos/gnome-unstable-i686/PKGBUILD (from rev 220976, 
clutter/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2014-09-04 20:40:56 UTC (rev 220977)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgname=clutter
+pkgver=1.19.8
+pkgrel=1
+pkgdesc=A GObject based library for creating fast, visually rich graphical 
user interfaces
+arch=('i686' 'x86_64')
+url=http://clutter-project.org/;
+license=('LGPL')
+depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi' 'libxkbcommon' 'libinput')
+makedepends=('gobject-introspection' 'python2')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('d68786bba6af230176b5aaaf255d64ee27a7293e85ed2e064c1005939779b88c')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-introspection \
+--enable-wayland-backend --enable-egl-backend --enable-evdev-input \
+--enable-wayland-compositor
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: clutter/repos/gnome-unstable-x86_64/PKGBUILD (from rev 220976, 
clutter/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2014-09-04 20:40:56 UTC (rev 220977)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgname=clutter
+pkgver=1.19.8
+pkgrel=1
+pkgdesc=A GObject based library for creating fast, visually rich graphical 
user interfaces
+arch=('i686' 'x86_64')
+url=http://clutter-project.org/;
+license=('LGPL')
+depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi' 'libxkbcommon' 'libinput')
+makedepends=('gobject-introspection' 'python2')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('d68786bba6af230176b5aaaf255d64ee27a7293e85ed2e064c1005939779b88c')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-introspection \
+--enable-wayland-backend --enable-egl-backend --enable-evdev-input \
+--enable-wayland-compositor
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 22:45:48
  Author: jgc
Revision: 220978

upgpkg: clutter-gtk 1.5.4-1

Modified:
  clutter-gtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 20:40:56 UTC (rev 220977)
+++ PKGBUILD2014-09-04 20:45:48 UTC (rev 220978)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=clutter-gtk
-pkgver=1.5.2
+pkgver=1.5.4
 pkgrel=1
 pkgdesc=GTK clutter widget
 arch=('i686' 'x86_64')
@@ -9,9 +9,9 @@
 url=http://clutter-project.org/;
 license=('LGPL')
 depends=('clutter' 'gtk3')
-makedepends=('gobject-introspection')
+makedepends=('gobject-introspection' 'python2')
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('3f57438ab01c249cb020e8787e8a72c51a92f817517ee8c0c696111c83891fc8')
+sha256sums=('db9c710ea3970620278c58d0bc522018353a75c83ac6ad60e272d2532533e772')
 
 build() {
   cd $pkgname-$pkgver



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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 22:45:54
  Author: jgc
Revision: 220979

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  clutter-gtk/repos/gnome-unstable-i686/
  clutter-gtk/repos/gnome-unstable-i686/PKGBUILD
(from rev 220978, clutter-gtk/trunk/PKGBUILD)
  clutter-gtk/repos/gnome-unstable-x86_64/
  clutter-gtk/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 220978, clutter-gtk/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   27 +++
 gnome-unstable-x86_64/PKGBUILD |   27 +++
 2 files changed, 54 insertions(+)

Copied: clutter-gtk/repos/gnome-unstable-i686/PKGBUILD (from rev 220978, 
clutter-gtk/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2014-09-04 20:45:54 UTC (rev 220979)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=clutter-gtk
+pkgver=1.5.4
+pkgrel=1
+pkgdesc=GTK clutter widget
+arch=('i686' 'x86_64')
+url=http://clutter-project.org/;
+license=('LGPL')
+depends=('clutter' 'gtk3')
+makedepends=('gobject-introspection' 'python2')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('db9c710ea3970620278c58d0bc522018353a75c83ac6ad60e272d2532533e772')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: clutter-gtk/repos/gnome-unstable-x86_64/PKGBUILD (from rev 220978, 
clutter-gtk/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2014-09-04 20:45:54 UTC (rev 220979)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=clutter-gtk
+pkgver=1.5.4
+pkgrel=1
+pkgdesc=GTK clutter widget
+arch=('i686' 'x86_64')
+url=http://clutter-project.org/;
+license=('LGPL')
+depends=('clutter' 'gtk3')
+makedepends=('gobject-introspection' 'python2')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('db9c710ea3970620278c58d0bc522018353a75c83ac6ad60e272d2532533e772')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 22:47:35
  Author: jgc
Revision: 220980

upgpkg: dconf 0.21.0-1

Modified:
  dconf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 20:45:54 UTC (rev 220979)
+++ PKGBUILD2014-09-04 20:47:35 UTC (rev 220980)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=dconf
-pkgver=0.20.0
+pkgver=0.21.0
 pkgrel=1
 pkgdesc=A low-level configuration system.
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 optdepends=('gtk3: for dconf-editor')
 install=dconf.install
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('22c046a247d05ea65ad181e3aef4009c898a5531f76c0181f8ec0dfef83447d9')
+sha256sums=('600a620db8367fd757ffc4cf2f44d76ea14e90279ac289b269424e773a1d950b')
 
 build() {
   cd $pkgname-$pkgver



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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 22:47:40
  Author: jgc
Revision: 220981

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  dconf/repos/gnome-unstable-i686/
  dconf/repos/gnome-unstable-i686/PKGBUILD
(from rev 220980, dconf/trunk/PKGBUILD)
  dconf/repos/gnome-unstable-i686/dconf.install
(from rev 220980, dconf/trunk/dconf.install)
  dconf/repos/gnome-unstable-x86_64/
  dconf/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 220980, dconf/trunk/PKGBUILD)
  dconf/repos/gnome-unstable-x86_64/dconf.install
(from rev 220980, dconf/trunk/dconf.install)

-+
 gnome-unstable-i686/PKGBUILD|   31 +++
 gnome-unstable-i686/dconf.install   |   15 +++
 gnome-unstable-x86_64/PKGBUILD  |   31 +++
 gnome-unstable-x86_64/dconf.install |   15 +++
 4 files changed, 92 insertions(+)

Copied: dconf/repos/gnome-unstable-i686/PKGBUILD (from rev 220980, 
dconf/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2014-09-04 20:47:40 UTC (rev 220981)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=dconf
+pkgver=0.21.0
+pkgrel=1
+pkgdesc=A low-level configuration system.
+arch=(i686 x86_64)
+url=http://live.gnome.org/dconf;
+license=('LGPL2.1')
+depends=('glib2')
+makedepends=('vala' 'gtk3' 'intltool' 'docbook-xsl' 'python' 'python2')
+optdepends=('gtk3: for dconf-editor')
+install=dconf.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('600a620db8367fd757ffc4cf2f44d76ea14e90279ac289b269424e773a1d950b')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/dconf
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make completiondir=/usr/share/bash-completion/completions DESTDIR=$pkgdir 
install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: dconf/repos/gnome-unstable-i686/dconf.install (from rev 220980, 
dconf/trunk/dconf.install)
===
--- gnome-unstable-i686/dconf.install   (rev 0)
+++ gnome-unstable-i686/dconf.install   2014-09-04 20:47:40 UTC (rev 220981)
@@ -0,0 +1,15 @@
+post_install() {
+  gio-querymodules /usr/lib/gio/modules
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  if [[ -x /usr/bin/gtk-update-icon-cache ]]; then
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+  fi
+}
+
+post_upgrade(){
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: dconf/repos/gnome-unstable-x86_64/PKGBUILD (from rev 220980, 
dconf/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2014-09-04 20:47:40 UTC (rev 220981)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=dconf
+pkgver=0.21.0
+pkgrel=1
+pkgdesc=A low-level configuration system.
+arch=(i686 x86_64)
+url=http://live.gnome.org/dconf;
+license=('LGPL2.1')
+depends=('glib2')
+makedepends=('vala' 'gtk3' 'intltool' 'docbook-xsl' 'python' 'python2')
+optdepends=('gtk3: for dconf-editor')
+install=dconf.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('600a620db8367fd757ffc4cf2f44d76ea14e90279ac289b269424e773a1d950b')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/dconf
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make completiondir=/usr/share/bash-completion/completions DESTDIR=$pkgdir 
install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: dconf/repos/gnome-unstable-x86_64/dconf.install (from rev 220980, 
dconf/trunk/dconf.install)
===
--- gnome-unstable-x86_64/dconf.install (rev 0)
+++ gnome-unstable-x86_64/dconf.install 2014-09-04 20:47:40 UTC (rev 220981)
@@ -0,0 +1,15 @@
+post_install() {
+  gio-querymodules /usr/lib/gio/modules
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  if [[ -x /usr/bin/gtk-update-icon-cache ]]; then
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+  fi
+}
+
+post_upgrade(){
+  post_install
+}
+
+post_remove() {
+  post_install
+}



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

2014-09-04 Thread Jan de Groot
Date: Thursday, September 4, 2014 @ 22:51:38
  Author: jgc
Revision: 220982

upgpkg: gdk-pixbuf2 2.31.1-1

Modified:
  gdk-pixbuf2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 20:47:40 UTC (rev 220981)
+++ PKGBUILD2014-09-04 20:51:38 UTC (rev 220982)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=gdk-pixbuf2
-pkgver=2.30.8
+pkgver=2.31.1
 pkgrel=1
 pkgdesc=An image loading library
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('gtk-doc' 'gobject-introspection')
 install=gdk-pixbuf2.install
 
source=(http://download.gnome.org/sources/gdk-pixbuf/${pkgver:0:4}/gdk-pixbuf-$pkgver.tar.xz)
-sha256sums=('4853830616113db4435837992c0aebd94cbb993c44dc55063cee7f72a7bef8be')
+sha256sums=('25a75e3c61dac11e6ff6416ad846951ccafac6486b1c6a1bfb0b213b99db52cd')
 
 build() {
   cd gdk-pixbuf-$pkgver



  1   2   >