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

2015-03-11 Thread Felix Yan
Date: Thursday, March 12, 2015 @ 05:48:52
  Author: fyan
Revision: 129091

upgpkg: nodejs 0.12.0-5

bump npm to 2.7.1

Modified:
  nodejs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-12 04:00:12 UTC (rev 129090)
+++ PKGBUILD2015-03-12 04:48:52 UTC (rev 129091)
@@ -10,8 +10,8 @@
 
 pkgname=nodejs
 pkgver=0.12.0
-_npmver=2.7.0
-pkgrel=4
+_npmver=2.7.1
+pkgrel=5
 pkgdesc='Evented I/O for V8 javascript'
 arch=('i686' 'x86_64')
 url='http://nodejs.org/'


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

2015-03-11 Thread Felix Yan
Date: Thursday, March 12, 2015 @ 05:49:37
  Author: fyan
Revision: 129092

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-03-12 04:48:52 UTC (rev 129091)
+++ community-i686/PKGBUILD 2015-03-12 04:49:37 UTC (rev 129092)
@@ -1,96 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor  Bartłomiej Piotrowski 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: James Campos 
-# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Dongsheng Cai 
-# Contributor: Masutu Subric 
-# Contributor: TIanyi Cui 
-
-pkgname=nodejs
-pkgver=0.12.0
-_npmver=2.7.0
-pkgrel=4
-pkgdesc='Evented I/O for V8 javascript'
-arch=('i686' 'x86_64')
-url='http://nodejs.org/'
-license=('MIT')
-depends=('openssl' 'zlib') # 'libuv' 'v8' 'c-ares')
-provides=('nodejs-node-gyp')
-makedepends=('python2' 'git' 'procps-ng')
-optdepends=('python2: for node-gyp')
-checkdepends=('curl')
-options=('!emptydirs')
-source=("http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz";
-git+https://github.com/npm/npm.git#tag=v$_npmver)
-sha256sums=('9700e23af4e9b3643af48cef5f2ad20a1331ff531a12154eef2bfb0bb1682e32'
-'SKIP')
-
-prepare() {
-  cd node-v$pkgver
-
-  # We need newer version of npm to fix bugs
-  rm -r deps/npm
-  ln -s "$srcdir/npm" deps
-  rm -r "$srcdir/npm/.git"
-
-  msg 'Fixing for python2 name'
-  find -type f -exec sed \
--e 's_^#!/usr/bin/env python$_&2_' \
--e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
--e 's_^#!/usr/bin/python$_&2_' \
--e "s_'python'_'python2'_" -i {} \;
-  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
-}
-
-build() {
-  cd node-v$pkgver
-
-  export PYTHON=python2
-  ./configure \
---prefix=/usr \
---shared-openssl \
---shared-zlib
-# --shared-libuv
-# --shared-v8
-# --shared-cares
-
-  make
-
-  cd ../npm
-  ../node-v$pkgver/node cli.js install ronn marked
-  PATH="$srcdir/node-v$pkgver:$PATH" make
-  ../node-v$pkgver/node cli.js uninstall ronn marked marked-man
-}
-
-check() {
-  cd node-v$pkgver
-  make test || warning "Tests failed"
-}
-
-package() {
-  cd node-v$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  # install docs as per user request
-  install -d "$pkgdir"/usr/share/doc/nodejs
-  cp -r doc/api/{*.html,assets} \
-"$pkgdir"/usr/share/doc/nodejs
-
-  install -D -m644 LICENSE \
-"$pkgdir"/usr/share/licenses/nodejs/LICENSE
-
-  install -d "$pkgdir"/usr/share/man/{man1,man3,man5,man7}
-  for _dir in man1 man3 man5 man7; do
-cd "$pkgdir"/usr/lib/node_modules/npm/man/$_dir
-for _file in *; do
-  ln -s /usr/lib/node_modules/npm/man/$_dir/$_file 
"$pkgdir"/usr/share/man/$_dir/
-done
-  done
-
-  ln -s /usr/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js 
"$pkgdir"/usr/bin/node-gyp
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nodejs/repos/community-i686/PKGBUILD (from rev 129091, 
nodejs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-03-12 04:49:37 UTC (rev 129092)
@@ -0,0 +1,96 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor  Bartłomiej Piotrowski 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: James Campos 
+# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Dongsheng Cai 
+# Contributor: Masutu Subric 
+# Contributor: TIanyi Cui 
+
+pkgname=nodejs
+pkgver=0.12.0
+_npmver=2.7.1
+pkgrel=5
+pkgdesc='Evented I/O for V8 javascript'
+arch=('i686' 'x86_64')
+url='http://nodejs.org/'
+license=('MIT')
+depends=('openssl' 'zlib') # 'libuv' 'v8' 'c-ares')
+provides=('nodejs-node-gyp')
+makedepends=('python2' 'git' 'procps-ng')
+optdepends=('python2: for node-gyp')
+checkdepends=('curl')
+options=('!emptydirs')
+source=("http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz";
+git+https://github.com/npm/npm.git#tag=v$_npmver)
+sha256sums=('9700e23af4e9b3643af48cef5f2ad20a1331ff531a12154eef2bfb0bb1682e32'
+'SKIP')
+
+prepare() {
+  cd node-v$pkgver
+
+  # We need newer version of npm to fix bugs
+  rm -r deps/npm
+  ln -s "$srcdir/npm" deps
+  rm -r "$srcdir/npm/.git"
+
+  msg 'Fixing for python2 name'
+  find -type f -exec sed \
+-e 's_^#!/usr/bin/env python$_&2_' \
+-e 's_^\(#!/usr

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

2015-03-11 Thread Felix Yan
Date: Thursday, March 12, 2015 @ 05:00:12
  Author: fyan
Revision: 129090

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-03-12 03:59:44 UTC (rev 129089)
+++ PKGBUILD2015-03-12 04:00:12 UTC (rev 129090)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-httpretty
-pkgname=("python-httpretty" "python2-httpretty")
-pkgver=0.8.7
-pkgrel=1
-pkgdesc="HTTP client mock for Python"
-arch=('any')
-url="http://github.com/gabrielfalcao/httpretty";
-license=('MIT')
-makedepends=('python-urllib3' 'python2-urllib3' 'python-setuptools' 
'python2-setuptools')
-checkdepends=('python-nose' 'python2-nose' 'python-coverage' 
'python2-coverage' 'python-mock' 'python2-mock'
-  'python-sure' 'python2-sure' 'python-tornado' 'python2-tornado' 
'python-requests' 'python2-requests'
-  'python-httplib2' 'python2-httplib2')
-source=("https://pypi.python.org/packages/source/h/httpretty/httpretty-$pkgver.tar.gz";)
-md5sums=('753b82f3bf632fbfc595816a0f6691f0')
-
-prepare() {
-  cp -r "httpretty-$pkgver"{,-py2}
-
-  # Fix the encoding issue
-  sed -i "78s/f)).read()/f), encoding='utf8').read()/" 
httpretty-$pkgver/setup.py
-}
-
-check() {
-  cd httpretty-$pkgver
-  # Disabled due to hanging
-  #nosetests3 -s tests
-
-  cd ../httpretty-$pkgver-py2
-  nosetests2 -s tests || warning "Tests failed"
-}
-
-package_python-httpretty() {
-  depends=('python-urllib3')
-
-  cd httpretty-$pkgver
-  python3 setup.py install --root="${pkgdir}" --optimize=1
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/python-httpretty/COPYING"
-}
-
-package_python2-httpretty() {
-  depends=('python2-urllib3')
-
-  cd httpretty-$pkgver-py2
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/python2-httpretty/COPYING"
-}
-

Copied: python-httpretty/repos/community-any/PKGBUILD (from rev 129089, 
python-httpretty/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-03-12 04:00:12 UTC (rev 129090)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-httpretty
+pkgname=("python-httpretty" "python2-httpretty")
+pkgver=0.8.8
+pkgrel=1
+pkgdesc="HTTP client mock for Python"
+arch=('any')
+url="http://github.com/gabrielfalcao/httpretty";
+license=('MIT')
+makedepends=('python-urllib3' 'python2-urllib3' 'python-setuptools' 
'python2-setuptools')
+checkdepends=('python-nose' 'python2-nose' 'python-coverage' 
'python2-coverage' 'python-mock' 'python2-mock'
+  'python-sure' 'python2-sure' 'python-tornado' 'python2-tornado' 
'python-requests' 'python2-requests'
+  'python-httplib2' 'python2-httplib2')
+source=("https://pypi.python.org/packages/source/h/httpretty/httpretty-$pkgver.tar.gz";)
+md5sums=('0b95e48c8466ed9dc157070229651a6b')
+
+prepare() {
+  cp -r "httpretty-$pkgver"{,-py2}
+
+  # Fix the encoding issue
+  sed -i "78s/f)).read()/f), encoding='utf8').read()/" 
httpretty-$pkgver/setup.py
+}
+
+check() {
+  cd httpretty-$pkgver
+  # Disabled due to hanging
+  #nosetests3 -s tests
+
+  cd ../httpretty-$pkgver-py2
+  nosetests2 -s tests || warning "Tests failed"
+}
+
+package_python-httpretty() {
+  depends=('python-urllib3')
+
+  cd httpretty-$pkgver
+  python3 setup.py install --root="${pkgdir}" --optimize=1
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/python-httpretty/COPYING"
+}
+
+package_python2-httpretty() {
+  depends=('python2-urllib3')
+
+  cd httpretty-$pkgver-py2
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/python2-httpretty/COPYING"
+}
+


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

2015-03-11 Thread Felix Yan
Date: Thursday, March 12, 2015 @ 04:59:44
  Author: fyan
Revision: 129089

upgpkg: python-httpretty 0.8.8-1

Modified:
  python-httpretty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-12 03:25:07 UTC (rev 129088)
+++ PKGBUILD2015-03-12 03:59:44 UTC (rev 129089)
@@ -3,7 +3,7 @@
 
 pkgbase=python-httpretty
 pkgname=("python-httpretty" "python2-httpretty")
-pkgver=0.8.7
+pkgver=0.8.8
 pkgrel=1
 pkgdesc="HTTP client mock for Python"
 arch=('any')
@@ -14,7 +14,7 @@
   'python-sure' 'python2-sure' 'python-tornado' 'python2-tornado' 
'python-requests' 'python2-requests'
   'python-httplib2' 'python2-httplib2')
 
source=("https://pypi.python.org/packages/source/h/httpretty/httpretty-$pkgver.tar.gz";)
-md5sums=('753b82f3bf632fbfc595816a0f6691f0')
+md5sums=('0b95e48c8466ed9dc157070229651a6b')
 
 prepare() {
   cp -r "httpretty-$pkgver"{,-py2}


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

2015-03-11 Thread Kyle Keen
Date: Thursday, March 12, 2015 @ 04:25:07
  Author: kkeen
Revision: 129088

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

Added:
  seamonkey/repos/community-i686/PKGBUILD
(from rev 129087, seamonkey/trunk/PKGBUILD)
  seamonkey/repos/community-i686/mozconfig
(from rev 129087, seamonkey/trunk/mozconfig)
  seamonkey/repos/community-i686/rhbz-966424.patch
(from rev 129087, seamonkey/trunk/rhbz-966424.patch)
  seamonkey/repos/community-i686/seamonkey-2.0-lang.patch
(from rev 129087, seamonkey/trunk/seamonkey-2.0-lang.patch)
  seamonkey/repos/community-i686/seamonkey.install
(from rev 129087, seamonkey/trunk/seamonkey.install)
  seamonkey/repos/community-x86_64/PKGBUILD
(from rev 129087, seamonkey/trunk/PKGBUILD)
  seamonkey/repos/community-x86_64/mozconfig
(from rev 129087, seamonkey/trunk/mozconfig)
  seamonkey/repos/community-x86_64/rhbz-966424.patch
(from rev 129087, seamonkey/trunk/rhbz-966424.patch)
  seamonkey/repos/community-x86_64/seamonkey-2.0-lang.patch
(from rev 129087, seamonkey/trunk/seamonkey-2.0-lang.patch)
  seamonkey/repos/community-x86_64/seamonkey.install
(from rev 129087, seamonkey/trunk/seamonkey.install)
Deleted:
  seamonkey/repos/community-i686/PKGBUILD
  seamonkey/repos/community-i686/mozconfig
  seamonkey/repos/community-i686/rhbz-966424.patch
  seamonkey/repos/community-i686/seamonkey-2.0-lang.patch
  seamonkey/repos/community-i686/seamonkey.install
  seamonkey/repos/community-x86_64/PKGBUILD
  seamonkey/repos/community-x86_64/mozconfig
  seamonkey/repos/community-x86_64/rhbz-966424.patch
  seamonkey/repos/community-x86_64/seamonkey-2.0-lang.patch
  seamonkey/repos/community-x86_64/seamonkey.install

---+
 /PKGBUILD |  156 
 /mozconfig|   72 
 /rhbz-966424.patch|   46 
 /seamonkey-2.0-lang.patch |   22 +++
 /seamonkey.install|   24 
 community-i686/PKGBUILD   |   78 --
 community-i686/mozconfig  |   36 --
 community-i686/rhbz-966424.patch  |   23 
 community-i686/seamonkey-2.0-lang.patch   |   11 -
 community-i686/seamonkey.install  |   12 --
 community-x86_64/PKGBUILD |   78 --
 community-x86_64/mozconfig|   36 --
 community-x86_64/rhbz-966424.patch|   23 
 community-x86_64/seamonkey-2.0-lang.patch |   11 -
 community-x86_64/seamonkey.install|   12 --
 15 files changed, 320 insertions(+), 320 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-03-12 03:24:29 UTC (rev 129087)
+++ community-i686/PKGBUILD 2015-03-12 03:25:07 UTC (rev 129088)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-
-pkgname=seamonkey
-pkgver=2.32.1
-pkgrel=1
-pkgdesc="SeaMonkey internet suite"
-arch=('i686' 'x86_64')
-license=('MPL')
-depends=('alsa-lib'  'dbus-glib'  'desktop-file-utils'  'gtk2' 'hunspell'  
'libevent'  'libnotify'  'libvpx'  'libxt' 'mime-types'  'mozilla-common'  
'nss'  'sqlite'  'startup-notification' 'libpulse' 'icu')
-makedepends=('unzip' 'zip' 'pkg-config'  'python2' 'yasm' 'wireless_tools' 
'mesa' 'autoconf2.13' 'imake' 'python3' 'gstreamer0.10-base')
-optdepends=('gstreamer0.10-base-plugins: vorbis decoding, ogg demuxing'
-'gstreamer0.10-bad-plugins: aac, vp8 and opus decoding'
-'gstreamer0.10-good-plugins: webm and mp4 demuxing'
-'gstreamer0.10-ugly-plugins: h.264 decoding')
-install=$pkgname.install
-url="http://www.seamonkey-project.org/";
-source=(ftp://ftp.mozilla.org/pub/mozilla.org/$pkgname/releases/$pkgver/source/$pkgname-$pkgver.source.tar.bz2
-mozconfig
-seamonkey-2.0-lang.patch
-rhbz-966424.patch)
-md5sums=('88a90d29af5f05e12a9c91e4c4d57c6e'
- '9b6d65e9b77acf9fd7c6e3578a5d2acd'
- '25b6fe16ac24cd5c852213e5c1adb272'
- '8c1578232b7a60fa1caa9a0b322d1e2b')
-
-prepare() {
-  cd comm-release
-  cp ../mozconfig .mozconfig
-  #patch -Np1 -i ../seamonkey-2.0-lang.patch
-
-  # https://bugs.archlinux.org/task/41689
-  patch -Np1 -d mozilla -i ../../rhbz-966424.patch
-
-  # Don't exit with error when some libs are missing which we have in
-  # system.
-  sed -i '/^MOZ_PKG_FATAL_WARNINGS/s@= 1@= 0@' suite/installer/Makefile.in
-
-  # configure script misdetects the preprocessor without an optimization level
-  sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
-
-  # 2.26 build fix from wgnie (blfs ch 37)
-  sed -i 's/$(MOZ_ZLIB_CFLAGS)/& $(MOZ_PIXMAN_CFLAGS)/' config/config.mk
-}
-
-build() {
-  cd comm-release
-
-  export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/seamonkey-$pkgver"
-  export MOZ_MAKE_FLAGS="$MAKEFLAGS"
-  unset MAKEFLAGS
-  unset CPPFLAGS
-
-  make -j1 -f client.mk build
-}
-
-packag

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

2015-03-11 Thread Kyle Keen
Date: Thursday, March 12, 2015 @ 04:24:29
  Author: kkeen
Revision: 129087

upgpkg: seamonkey 2.33-1

Modified:
  seamonkey/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 22:13:23 UTC (rev 129086)
+++ PKGBUILD2015-03-12 03:24:29 UTC (rev 129087)
@@ -2,7 +2,7 @@
 # Maintainer: Kyle Keen 
 
 pkgname=seamonkey
-pkgver=2.32.1
+pkgver=2.33
 pkgrel=1
 pkgdesc="SeaMonkey internet suite"
 arch=('i686' 'x86_64')
@@ -19,7 +19,7 @@
 mozconfig
 seamonkey-2.0-lang.patch
 rhbz-966424.patch)
-md5sums=('88a90d29af5f05e12a9c91e4c4d57c6e'
+md5sums=('94a2ff3ac33602218fea4dfb5ef4af16'
  '9b6d65e9b77acf9fd7c6e3578a5d2acd'
  '25b6fe16ac24cd5c852213e5c1adb272'
  '8c1578232b7a60fa1caa9a0b322d1e2b')


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

2015-03-11 Thread Evangelos Foutras
Date: Wednesday, March 11, 2015 @ 23:13:12
  Author: foutrelis
Revision: 129085

upgpkg: shorewall 4.6.7-1

New upstream release.

Modified:
  shorewall/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 20:31:18 UTC (rev 129084)
+++ PKGBUILD2015-03-11 22:13:12 UTC (rev 129085)
@@ -5,17 +5,17 @@
 # Contributor: FUBAR 
 
 pkgname=('shorewall' 'shorewall6' 'shorewall-core')
-pkgver=4.6.6.2
+pkgver=4.6.7
 pkgrel=1
 arch=('any')
 url="http://www.shorewall.net/";
 license=('GPL')
-source=(http://www.shorewall.net/pub/$pkgname/4.6/$pkgname-4.6.6/$pkgname-$pkgver.tar.bz2
-
http://www.shorewall.net/pub/$pkgname/4.6/$pkgname-4.6.6/shorewall6-$pkgver.tar.bz2
-
http://www.shorewall.net/pub/$pkgname/4.6/$pkgname-4.6.6/shorewall-core-$pkgver.tar.bz2)
-sha256sums=('db41744e6303e031e29be531dbedd4191624c4a70f9e23fa0b450e26953708f4'
-'b475473eaf9d4a8b4067214f8fa14f1c1d97cdb77c180abd9e22dfdea6b9f637'
-'764c8c22f619cdfd61eebd77e9f271a168515d44c4578b85af44921cc1f3b675')
+source=(http://www.shorewall.net/pub/$pkgname/4.6/$pkgname-4.6.7/$pkgname-$pkgver.tar.bz2
+
http://www.shorewall.net/pub/$pkgname/4.6/$pkgname-4.6.7/shorewall6-$pkgver.tar.bz2
+
http://www.shorewall.net/pub/$pkgname/4.6/$pkgname-4.6.7/shorewall-core-$pkgver.tar.bz2)
+sha256sums=('93b14fb7ee760f1079536bc34821f883b50e6f6f31e3cd0b67400c9f6c3e0db8'
+'4f74d5718528ebb687d14de8c8953c9567441355bebe725b78ff43b9b7ff321d'
+'171e4c42dd1d3c7ad6d9a234daf4564941f6f36d7a0ec57656e7a76e8730716e')
 
 build() {
   for product in shorewall{,6,-core}; do


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

2015-03-11 Thread Evangelos Foutras
Date: Wednesday, March 11, 2015 @ 23:13:23
  Author: foutrelis
Revision: 129086

archrelease: copy trunk to community-any

Added:
  shorewall/repos/community-any/PKGBUILD
(from rev 129085, shorewall/trunk/PKGBUILD)
Deleted:
  shorewall/repos/community-any/PKGBUILD

--+
 PKGBUILD |  146 ++---
 1 file changed, 73 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-03-11 22:13:12 UTC (rev 129085)
+++ PKGBUILD2015-03-11 22:13:23 UTC (rev 129086)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Malte Rabenseifner 
-# Contributor: Andrea Scarpino 
-# Contributor: FUBAR 
-
-pkgname=('shorewall' 'shorewall6' 'shorewall-core')
-pkgver=4.6.6.2
-pkgrel=1
-arch=('any')
-url="http://www.shorewall.net/";
-license=('GPL')
-source=(http://www.shorewall.net/pub/$pkgname/4.6/$pkgname-4.6.6/$pkgname-$pkgver.tar.bz2
-
http://www.shorewall.net/pub/$pkgname/4.6/$pkgname-4.6.6/shorewall6-$pkgver.tar.bz2
-
http://www.shorewall.net/pub/$pkgname/4.6/$pkgname-4.6.6/shorewall-core-$pkgver.tar.bz2)
-sha256sums=('db41744e6303e031e29be531dbedd4191624c4a70f9e23fa0b450e26953708f4'
-'b475473eaf9d4a8b4067214f8fa14f1c1d97cdb77c180abd9e22dfdea6b9f637'
-'764c8c22f619cdfd61eebd77e9f271a168515d44c4578b85af44921cc1f3b675')
-
-build() {
-  for product in shorewall{,6,-core}; do
-pushd "$srcdir/$product-$pkgver"
-./configure HOST=archlinux
-popd
-  done
-}
-
-package_shorewall() {
-  pkgdesc="An iptables-based firewall for Linux systems"
-  depends=('shorewall-core' 'perl')
-  
backup=(etc/shorewall/{accounting,actions,blrules,clear,conntrack,ecn,findgw,hosts,init,initdone,interfaces,lib.private,maclist,mangle,masq,nat,netmap,params,policy,providers,proxyarp,refresh,refreshed,restored,routes,stoppedrules,rtrules,rules,scfilter,secmarks,shorewall.conf,start,started,stop,stopped,tcclasses,tcclear,tcdevices,tcfilters,tcinterfaces,tcpri,tos,tunnels,zones})
-
-  cd "$srcdir/$pkgname-$pkgver"
-
-  do_install
-}
-
-package_shorewall6() {
-  pkgdesc="An iptables-based firewall for Linux systems (with IPv6 support)"
-  depends=('shorewall')
-  
backup=(etc/shorewall6/{accounting,actions,blrules,clear,conntrack,hosts,init,interfaces,maclist,mangle,masq,netmap,params,policy,providers,proxyndp,refresh,refreshed,restored,routes,stoppedrules,rtrules,rules,scfilter,secmarks,shorewall6.conf,start,started,stop,stopped,tcclasses,tcclear,tcdevices,tcfilters,tcinterfaces,tcpri,tos,tunnels,zones})
-
-  cd "$srcdir/$pkgname-$pkgver"
-
-  do_install 6
-}
-
-package_shorewall-core() {
-  pkgdesc="Core Shorewall libraries"
-  depends=('iptables' 'iproute2')
-
-  cd "$srcdir/$pkgname-$pkgver"
-
-  DESTDIR="$pkgdir" ./install.sh
-}
-
-do_install() {
-  local _name_suffix=$1
-
-  sed -i -e 's|^MODULE_SUFFIX=ko$|&.gz|' \
- -e 's|/subsys||' \
-  "configfiles/shorewall$_name_suffix.conf"
-
-  DESTDIR="$pkgdir" ./install.sh
-
-  install -d "$pkgdir/usr/share/doc/shorewall$_name_suffix/"
-  cp -r Samples$_name_suffix "$pkgdir/usr/share/doc/shorewall$_name_suffix/"
-
-  chmod -R 644 "$pkgdir/etc/shorewall$_name_suffix/"
-  chmod 755 "$pkgdir/etc/shorewall$_name_suffix/"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: shorewall/repos/community-any/PKGBUILD (from rev 129085, 
shorewall/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-03-11 22:13:23 UTC (rev 129086)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Malte Rabenseifner 
+# Contributor: Andrea Scarpino 
+# Contributor: FUBAR 
+
+pkgname=('shorewall' 'shorewall6' 'shorewall-core')
+pkgver=4.6.7
+pkgrel=1
+arch=('any')
+url="http://www.shorewall.net/";
+license=('GPL')
+source=(http://www.shorewall.net/pub/$pkgname/4.6/$pkgname-4.6.7/$pkgname-$pkgver.tar.bz2
+
http://www.shorewall.net/pub/$pkgname/4.6/$pkgname-4.6.7/shorewall6-$pkgver.tar.bz2
+
http://www.shorewall.net/pub/$pkgname/4.6/$pkgname-4.6.7/shorewall-core-$pkgver.tar.bz2)
+sha256sums=('93b14fb7ee760f1079536bc34821f883b50e6f6f31e3cd0b67400c9f6c3e0db8'
+'4f74d5718528ebb687d14de8c8953c9567441355bebe725b78ff43b9b7ff321d'
+'171e4c42dd1d3c7ad6d9a234daf4564941f6f36d7a0ec57656e7a76e8730716e')
+
+build() {
+  for product in shorewall{,6,-core}; do
+pushd "$srcdir/$product-$pkgver"
+./configure HOST=archlinux
+popd
+  done
+}
+
+package_shorewall() {
+  pkgdesc="An iptables-based firewall for Linux systems"
+  depends=('shorewall-core' 'perl')
+  
backup=(etc/shorewall/{accounting,actions,blrules,clear,conntrack,ecn,findgw,hosts,init,initdone,interfaces,lib.private,maclist,mangle,masq,nat,netmap,params,policy,providers,proxyarp,refresh,refreshed,restored,routes,stoppedrules,rtrules,rules,scfilter,secmarks,shorewall.conf,start,started,stop,stopped,tcclasses

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

2015-03-11 Thread Andreas Radke
Date: Wednesday, March 11, 2015 @ 22:25:55
  Author: andyrtr
Revision: 233369

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

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

---+
 /PKGBUILD |  326 
 extra-i686/PKGBUILD   |  151 --
 extra-x86_64/PKGBUILD |  151 --
 3 files changed, 326 insertions(+), 302 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-03-11 21:25:27 UTC (rev 233368)
+++ extra-i686/PKGBUILD 2015-03-11 21:25:55 UTC (rev 233369)
@@ -1,151 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-
-pkgbase=nx
-pkgname=('libxcomp' 'nxproxy' 'nx-x11' 'nx-xcompext' 'nxagent' 'x2go-agent' 
'nx-headers')
-pkgver=3.5.0.28
-pkgrel=2
-arch=('i686' 'x86_64')
-url="http://wiki.x2go.org/";
-license=('GPL')
-#options=('!makeflags') # '!strip')
-makedepends=('libjpeg-turbo' 'libpng' 'bash' 'perl' 'libxml2' 'fontconfig' # 
runtime dependencies from subpackages
- 'xproto' 'freetype2' 'libxaw' 'libxrender' 'libxp' 'libxpm' 
'libxdamage' 'libxrandr'
- 'libxcomposite' 'libxtst' 'xorg-sessreg' 'libfontenc' # 
makedepends
- )
-source=(http://code.x2go.org/releases/source/nx-libs/nx-libs-$pkgver-full.tar.gz)
-sha1sums=('b5a97ae10770ca0f496e4398eab984c0bcff3500')
-
-build() {
-  cd "${srcdir}/nx-libs-$pkgver"
-  
-  # debug flags
-#  export CFLAGS="-march=x86-64 -O1 -g -pipe"
-#  export CXXFLAGS="-march=x86-64 -O1 -g -pipe"
-
-  # honour CFLAGS in X11 build - upstream fixed so far only the other libs
-  # From xorg-x11-6.9.0-r3.ebuild
-  pushd "${srcdir}/nx-libs-$pkgver/nx-X11"
-
-  HOSTCONF="config/cf/host.def"
-  echo "#define OptimizedCDebugFlags ${CFLAGS} GccAliasingArgs" >> ${HOSTCONF}
-  echo "#define OptimizedCplusplusDebugFlags ${CXXFLAGS} GccAliasingArgs" >> 
${HOSTCONF}
-  # Respect LDFLAGS
-  echo "#define ExtraLoadFlags ${LDFLAGS}" >> ${HOSTCONF}
-  echo "#define SharedLibraryLoadFlags -shared ${LDFLAGS}" >> ${HOSTCONF}
-  popd
-
-  # fix a broken Makefiles
-  sed -i "s:-o root -g root ::" nxcompshad/Makefile.in
-
-  make \
-PREFIX=/usr \
-CONFIGURE="./configure --prefix=/usr --libdir=/usr/lib 
--libexecdir=/usr/lib --includedir=/usr/include"
-
-  # fake install
-  mkdir $srcdir/fakeinstall
-  make PREFIX=/usr DESTDIR="$srcdir/fakeinstall" install
-}
-
-package_libxcomp() {
-  
-  pkgdesc="NX X compression library"
-  depends=('libjpeg-turbo' 'libpng' 'gcc-libs')
-   
-  install -dm755 ${pkgdir}/usr/lib/nx
-  cp -a ${srcdir}/fakeinstall/usr/lib/nx/libXcomp.so* ${pkgdir}/usr/lib/nx
-  # symlinks
-  cd ${pkgdir}/usr/lib/
-  ln -sv /usr/lib/nx/libXcomp.so{,.3,.${pkgver}} .
-}
-
-package_nxproxy() {
-
-  pkgdesc="NX proxy"
-  depends=('libxcomp')
-  
-  install -dm755 ${pkgdir}/usr/{bin,share/man/man1,lib/nx/bin}
-  cp -a ${srcdir}/fakeinstall/usr/lib/nx/bin/nxproxy 
${pkgdir}/usr/lib/nx/bin/nxproxy
-  cp -a ${srcdir}/fakeinstall/usr/share/man/man1/nxproxy.1 
${pkgdir}/usr/share/man/man1
-  # the wrapper
-  cp -a ${srcdir}/fakeinstall/usr/bin/nxproxy ${pkgdir}/usr/bin
-}
-
-package_nx-xcompext() {
-  
-  pkgdesc="Xcompext/Xcompshad library for NX"
-  depends=('libxcomp' 'nx-x11')
-   
-  install -dm755 ${pkgdir}/usr/lib/nx
-  cp -a ${srcdir}/fakeinstall/usr/lib/nx/libXcompext.so* ${pkgdir}/usr/lib/nx
-  #cp -a ${srcdir}/fakeinstall/usr/lib/nx/libXcompshad.so* ${pkgdir}/usr/lib/nx
-
-  # symlinks
-  cd ${pkgdir}/usr/lib/
-  ln -sv /usr/lib/nx/libXcompext.so{,.3,.3.5.0} .
-  #ln -sv /usr/lib/nx/libXcompshad.so{,.3,.3.5.0} .
-}
-
-package_nx-x11() {
- 
-  pkgdesc="NX-X11 lib for the NX framework"
-  depends=('libxcomp' 'fontconfig')
-  optdepends=('libxext: for Xinerama support')
-   
-  install -dm755 ${pkgdir}/{usr/bin,usr/lib/nx/{X11,bin}}
-  cp -aR ${srcdir}/fakeinstall/usr/lib/nx/X11/* ${pkgdir}/usr/lib/nx/X11
-  # nxauth
-  cp -a ${srcdir}/fakeinstall/usr/lib/nx/bin/nxauth ${pkgdir}/usr/lib/nx/bin
-  # the wrapper
-  cp -a ${srcdir}/fakeinstall/usr/bin/nxauth ${pkgdir}/usr/bin
-  # add symlinks required for proper Xinerama support # FS#41037
-  cd ${pkgdir}/usr/lib/nx/X11/Xinerama
-  ln -sv /usr/lib/libX11.so.6 libNX_X11.so.6
-  ln -sv /usr/lib/libXext.so.6 libNX_Xext.so.6
-}
-
-package_nxagent() {
-  
-  pkgdesc="NX X server based on Xnest"
-  depends=('nx-xcompext' 'libxml2')
-   
-  install -dm755 ${pkgdir}/usr/{bin,lib/nx/bin,share/nx}
-  cp -a ${srcdir}/fakeinstall/usr/lib/nx/bin/nxagent ${pkgdir}/usr/lib/nx/bin
-  # the wrapper
-  cp -a ${srcdir}/fakeinstall/usr/bin/nxagent ${pkgdir}/usr/bin
-  
-  # additional files for documentation
-  cp -a ${srcdir}/fakeinstall/usr/share/nx/SecurityPolicy 
${pkgdir}/usr/share/nx
-  
-  cp -a ${srcdir}/fakeinstall/usr

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

2015-03-11 Thread Andreas Radke
Date: Wednesday, March 11, 2015 @ 22:25:27
  Author: andyrtr
Revision: 233368

upgpkg: nx 3.5.0.28-3

add some missing files

Modified:
  nx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 19:26:52 UTC (rev 233367)
+++ PKGBUILD2015-03-11 21:25:27 UTC (rev 233368)
@@ -4,7 +4,7 @@
 pkgbase=nx
 pkgname=('libxcomp' 'nxproxy' 'nx-x11' 'nx-xcompext' 'nxagent' 'x2go-agent' 
'nx-headers')
 pkgver=3.5.0.28
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url="http://wiki.x2go.org/";
 license=('GPL')
@@ -107,6 +107,7 @@
 package_nxagent() {
   
   pkgdesc="NX X server based on Xnest"
+  backup=('etc/nxagent/keystrokes.cfg')
   depends=('nx-xcompext' 'libxml2')

   install -dm755 ${pkgdir}/usr/{bin,lib/nx/bin,share/nx}
@@ -121,11 +122,19 @@
   # symlinks
   cd ${pkgdir}/usr/lib/
   ln -sv /usr/lib/nx/libXcompshad.so{,.3,.3.5.0} . # files should move to 
nx-compext pkg
+  
+  # Needed for nxagent to find the keymap directory
+  install -dm755 ${pkgdir}/usr/lib/X11/xkb
+  touch ${pkgdir}/usr/lib/X11/xkb/keymap.dir
+  
+  install -dm755 ${pkgdir}/etc/nxagent
+  cp -a ${srcdir}/fakeinstall/etc/nxagent/keystrokes.cfg ${pkgdir}/etc/nxagent
 }
 
 package_x2go-agent() {
   
   pkgdesc="Wrapper arround nxagent to use with x2goserver"
+  backup=('etc/x2go/keystrokes.cfg')
   depends=('nxagent')
   provides=('x2goagent')
   replaces=('x2goagent')
@@ -140,6 +149,9 @@
   cp -a ${srcdir}/fakeinstall/usr/share/pixmaps/x2go.xpm 
${pkgdir}/usr/share/pixmaps
   cp -a ${srcdir}/fakeinstall/usr/share/x2go/rgb ${pkgdir}/usr/share/x2go
   cp -a ${srcdir}/fakeinstall/usr/share/x2go/versions/VERSION.x2goagent 
${pkgdir}/usr/share/x2go/versions
+  
+  install -dm755 ${pkgdir}/etc/x2go
+  cp -a ${srcdir}/fakeinstall/etc/x2go/keystrokes.cfg ${pkgdir}/etc/x2go
 }
 
 package_nx-headers() {


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

2015-03-11 Thread Lukas Jirkovsky
Date: Wednesday, March 11, 2015 @ 21:31:18
  Author: stativ
Revision: 129084

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

Added:
  ispc/repos/community-i686/
  ispc/repos/community-i686/PKGBUILD
(from rev 129083, ispc/trunk/PKGBUILD)
  ispc/repos/community-x86_64/
  ispc/repos/community-x86_64/PKGBUILD
(from rev 129083, ispc/trunk/PKGBUILD)

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

Copied: ispc/repos/community-i686/PKGBUILD (from rev 129083, 
ispc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-03-11 20:31:18 UTC (rev 129084)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+pkgname=ispc
+pkgver=1.8.1
+pkgrel=1
+pkgdesc="A compiler for high-performance SIMD programming on the CPU"
+arch=('i686' 'x86_64')
+url="https://ispc.github.io/";
+license=('BSD')
+depends=('zlib')
+makedepends=('llvm' 'clang' 'python2')
+source=("$pkgname-${pkgver}.tar.gz::https://github.com/ispc/ispc/archive/v${pkgver}.tar.gz";)
+md5sums=('d2088f719afc1e0e98f3af89676a189c')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  # fix python version
+  find . -name "*.py" -exec sed -i 's|python$|python2|' '{}' ';'
+  sed -i 's|python |python2 |' Makefile
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  install -D -m755 ispc "$pkgdir/usr/bin/ispc"
+  install -D -m644 LICENSE.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}
+

Copied: ispc/repos/community-x86_64/PKGBUILD (from rev 129083, 
ispc/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-03-11 20:31:18 UTC (rev 129084)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+pkgname=ispc
+pkgver=1.8.1
+pkgrel=1
+pkgdesc="A compiler for high-performance SIMD programming on the CPU"
+arch=('i686' 'x86_64')
+url="https://ispc.github.io/";
+license=('BSD')
+depends=('zlib')
+makedepends=('llvm' 'clang' 'python2')
+source=("$pkgname-${pkgver}.tar.gz::https://github.com/ispc/ispc/archive/v${pkgver}.tar.gz";)
+md5sums=('d2088f719afc1e0e98f3af89676a189c')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  # fix python version
+  find . -name "*.py" -exec sed -i 's|python$|python2|' '{}' ';'
+  sed -i 's|python |python2 |' Makefile
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  install -D -m755 ispc "$pkgdir/usr/bin/ispc"
+  install -D -m644 LICENSE.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}
+


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

2015-03-11 Thread Lukas Jirkovsky
Date: Wednesday, March 11, 2015 @ 21:27:08
  Author: stativ
Revision: 129083

ispc: add ispc to the repository as a dependency of luxmark.

Added:
  ispc/
  ispc/repos/
  ispc/trunk/
  ispc/trunk/PKGBUILD

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

Added: ispc/trunk/PKGBUILD
===
--- ispc/trunk/PKGBUILD (rev 0)
+++ ispc/trunk/PKGBUILD 2015-03-11 20:27:08 UTC (rev 129083)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+pkgname=ispc
+pkgver=1.8.1
+pkgrel=1
+pkgdesc="A compiler for high-performance SIMD programming on the CPU"
+arch=('i686' 'x86_64')
+url="https://ispc.github.io/";
+license=('BSD')
+depends=('zlib')
+makedepends=('llvm' 'clang' 'python2')
+source=("$pkgname-${pkgver}.tar.gz::https://github.com/ispc/ispc/archive/v${pkgver}.tar.gz";)
+md5sums=('d2088f719afc1e0e98f3af89676a189c')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  # fix python version
+  find . -name "*.py" -exec sed -i 's|python$|python2|' '{}' ';'
+  sed -i 's|python |python2 |' Makefile
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  install -D -m755 ispc "$pkgdir/usr/bin/ispc"
+  install -D -m644 LICENSE.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}
+


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


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

2015-03-11 Thread Antonio Rojas
Date: Wednesday, March 11, 2015 @ 20:47:56
  Author: arojas
Revision: 129082

Correctly detect and use large Cremona database if installed

Modified:
  sage-mathematics/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 17:44:30 UTC (rev 129081)
+++ PKGBUILD2015-03-11 19:47:56 UTC (rev 129082)
@@ -71,8 +71,9 @@
   patch -p0 -i "$srcdir"/skip-check.patch
 # supress warning about GAP install dir
   sed -e "s|gapdir = os.path.join(SAGE_LOCAL, 'gap', 'latest')|gapdir = 
'/usr/lib/gap'|" -i src/sage/libs/gap/util.pyx 
-# use small Cremona database
-  sed -e "s|is_package_installed('database_cremona_ellcurve')|False|" -i 
src/sage/databases/cremona.py
+# fix Cremona database detection
+  sed -e 
"s|is_package_installed('database_cremona_ellcurve')|os.path.exists('/usr/share/sage/cremona/cremona.db')|"
 \
+   -i src/sage/databases/cremona.py
 
 # Upstream patches  
 # fix build against libfes 0.2 http://trac.sagemath.org/ticket/15209


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

2015-03-11 Thread Andreas Radke
Date: Wednesday, March 11, 2015 @ 20:26:52
  Author: andyrtr
Revision: 233367

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

Added:
  cups-filters/repos/extra-i686/PKGBUILD
(from rev 233366, cups-filters/trunk/PKGBUILD)
  cups-filters/repos/extra-x86_64/PKGBUILD
(from rev 233366, cups-filters/trunk/PKGBUILD)
Deleted:
  cups-filters/repos/extra-i686/PKGBUILD
  cups-filters/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-03-11 19:26:31 UTC (rev 233366)
+++ extra-i686/PKGBUILD 2015-03-11 19:26:52 UTC (rev 233367)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-
-pkgname=cups-filters
-pkgver=1.0.66
-pkgrel=2
-pkgdesc="OpenPrinting CUPS Filters"
-arch=('i686' 'x86_64')
-url="http://www.linuxfoundation.org/collaborate/workgroups/openprinting";
-license=('GPL')
-depends=('lcms2' 'poppler' 'qpdf')
-makedepends=('ghostscript' 'ttf-dejavu') # ttf-dejavu for make check
-optdepends=('ghostscript: for non-PostScript printers to print with CUPS to 
convert PostScript to raster images'
-   'foomatic-db: drivers use Ghostscript to convert PostScript to a 
printable form directly'
-   'foomatic-db-engine: drivers use Ghostscript to convert PostScript 
to a printable form directly'
-   'foomatic-db-nonfree: drivers use Ghostscript to convert PostScript 
to a printable form directly')
-backup=(etc/fonts/conf.d/99pdftoopvp.conf
-etc/cups/cups-browsed.conf)
-source=(http://www.openprinting.org/download/cups-filters/$pkgname-$pkgver.tar.xz)
-provides=('foomatic-filters')
-replaces=('foomatic-filters')
-conflicts=('foomatic-filters')
-md5sums=('ad594ac06dfbfb02af34deb0805cab00')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr  \
---sysconfdir=/etc \
---sbindir=/usr/bin \
---localstatedir=/var \
---with-rcdir=no \
---enable-avahi \
---with-browseremoteprotocols=DNSSD,CUPS \
---with-test-font-path=/usr/share/fonts/TTF/DejaVuSans.ttf
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir/" install
-  
-  # add upstream systemd support file
-  install -Dm644 utils/cups-browsed.service 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
-  sed -i "s|/usr/sbin/cups-browsed|/usr/bin/cups-browsed|" 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
-  sed -i "s|cups.service|org.cups.cupsd.service|g" 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
-  
-  # use lp group from cups pkg FS#36769
-  chgrp -R lp ${pkgdir}/etc/cups
-}

Copied: cups-filters/repos/extra-i686/PKGBUILD (from rev 233366, 
cups-filters/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-03-11 19:26:52 UTC (rev 233367)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Andreas Radke 
+
+pkgname=cups-filters
+pkgver=1.0.67
+pkgrel=1
+pkgdesc="OpenPrinting CUPS Filters"
+arch=('i686' 'x86_64')
+url="http://www.linuxfoundation.org/collaborate/workgroups/openprinting";
+license=('GPL')
+depends=('lcms2' 'poppler' 'qpdf')
+makedepends=('ghostscript' 'ttf-dejavu') # ttf-dejavu for make check
+optdepends=('ghostscript: for non-PostScript printers to print with CUPS to 
convert PostScript to raster images'
+   'foomatic-db: drivers use Ghostscript to convert PostScript to a 
printable form directly'
+   'foomatic-db-engine: drivers use Ghostscript to convert PostScript 
to a printable form directly'
+   'foomatic-db-nonfree: drivers use Ghostscript to convert PostScript 
to a printable form directly')
+backup=(etc/fonts/conf.d/99pdftoopvp.conf
+etc/cups/cups-browsed.conf)
+source=(http://www.openprinting.org/download/cups-filters/$pkgname-$pkgver.tar.xz)
+provides=('foomatic-filters')
+replaces=('foomatic-filters')
+conflicts=('foomatic-filters')
+md5sums=('0a5cfab3736120345c5e254dd2efbe64')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr  \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--with-rcdir=no \
+--enable-avahi \
+--with-browseremoteprotocols=DNSSD,CUPS \
+--with-test-font-path=/usr/share/fonts/TTF/DejaVuSans.ttf
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+  
+  # add upstream systemd support file
+  install -Dm644 utils/cups-browsed.service 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
+  sed -i "s|/usr/sbin/cups-browsed|/usr/bin/cups-browsed|" 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
+  sed -i 

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

2015-03-11 Thread Andreas Radke
Date: Wednesday, March 11, 2015 @ 20:09:04
  Author: andyrtr
Revision: 233364

upgpkg: libtasn1 4.3-1

upstream update 4.3

Modified:
  libtasn1/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 18:52:38 UTC (rev 233363)
+++ PKGBUILD2015-03-11 19:09:04 UTC (rev 233364)
@@ -4,7 +4,7 @@
 # Contributor: judd 
 
 pkgname=libtasn1
-pkgver=4.2
+pkgver=4.3
 pkgrel=1
 pkgdesc="The ASN.1 library used in GNUTLS"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('glibc' 'texinfo')
 install=libtasn1.install
 source=(http://ftp.gnu.org/gnu/libtasn1/${pkgname}-${pkgver}.tar.gz{,.sig})
-md5sums=('414df906df421dee0a5cf7548788d153'
+md5sums=('67e98988f966a34fbf1b82d33eef9e7e'
  'SKIP')
 validpgpkeys=('1F42418905D8206AA754CCDC29EE58B996865171') #Nikos 
Mavrogiannopoulos 
 


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

2015-03-11 Thread Andreas Radke
Date: Wednesday, March 11, 2015 @ 19:52:24
  Author: andyrtr
Revision: 233362

upgpkg: cairo 1.14.2-1

upstream update 1.14.2

Modified:
  cairo/trunk/PKGBUILD
Deleted:
  cairo/trunk/git_fixes.diff

+
 PKGBUILD   |   17 -
 git_fixes.diff |   34 --
 2 files changed, 4 insertions(+), 47 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 18:17:35 UTC (rev 233361)
+++ PKGBUILD2015-03-11 18:52:24 UTC (rev 233362)
@@ -3,8 +3,8 @@
 # Contributor: Brice Carpentier 
 
 pkgname=cairo
-pkgver=1.14.0
-pkgrel=2
+pkgver=1.14.2
+pkgrel=1
 pkgdesc="Cairo vector graphics library"
 arch=(i686 x86_64)
 license=('LGPL' 'MPL')
@@ -16,18 +16,9 @@
 #optdepends=('xcb-util: for XCB backend') # really needed?
 provides=('cairo-xcb')
 replaces=('cairo-xcb')
-source=(http://cairographics.org/releases/cairo-$pkgver.tar.xz
-git_fixes.diff)
-sha1sums=('53cf589b983412ea7f78feee2e1ba9cea6e3ebae'
-  '0ebac538dfa510e8e3f07ba71a49dabc627b08ff')
+source=(http://cairographics.org/releases/cairo-$pkgver.tar.xz)
+sha1sums=('c8da68aa66ca0855b5d0ff552766d3e8679e1d24')
 
-prepare() {
-  cd $pkgname-$pkgver
-  # fix some segfaults: https://bugs.freedesktop.org/show_bug.cgi?id=85151
-  # https://bugs.archlinux.org/task/42596
-  patch -Np1 -i ${srcdir}/git_fixes.diff
-}
-
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr \

Deleted: git_fixes.diff
===
--- git_fixes.diff  2015-03-11 18:17:35 UTC (rev 233361)
+++ git_fixes.diff  2015-03-11 18:52:24 UTC (rev 233362)
@@ -1,34 +0,0 @@
-From 2de69581c28bf115852037ca41eba13cb7335976 Mon Sep 17 00:00:00 2001
-From: Massimo Valentini 
-Date: Sun, 19 Oct 2014 09:19:10 +0200
-Subject: tor-scan-converter: can't do_fullrow when intersection in row +
- 0.5subrow
-
-the active edges list must be left sorted at the next possible use
-and since full_row does not deal with intersections it is not usable
-when there is an intersection in the top half of the next row first
-subrow
-
-Reported-and-tested-by: Matthew Leach
-Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=85151
-Reviewed-by: Chris Wilson 
-
-diff --git a/src/cairo-tor-scan-converter.c b/src/cairo-tor-scan-converter.c
-index 4adcafb..14922d0 100644
 a/src/cairo-tor-scan-converter.c
-+++ b/src/cairo-tor-scan-converter.c
-@@ -1167,8 +1167,8 @@ can_do_full_row (struct active_list *active)
- 
-   if (e->dy) {
-   struct quorem x = e->x;
--  x.quo += e->dxdy_full.quo - e->dxdy.quo/2;
--  x.rem += e->dxdy_full.rem - e->dxdy.rem/2;
-+  x.quo += e->dxdy_full.quo;
-+  x.rem += e->dxdy_full.rem;
-   if (x.rem < 0) {
-   x.quo--;
-   x.rem += e->dy;
--- 
-cgit v0.10.2
-
-


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

2015-03-11 Thread Andreas Radke
Date: Wednesday, March 11, 2015 @ 19:52:38
  Author: andyrtr
Revision: 233363

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

Added:
  cairo/repos/testing-i686/
  cairo/repos/testing-i686/PKGBUILD
(from rev 233362, cairo/trunk/PKGBUILD)
  cairo/repos/testing-x86_64/
  cairo/repos/testing-x86_64/PKGBUILD
(from rev 233362, cairo/trunk/PKGBUILD)

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

Copied: cairo/repos/testing-i686/PKGBUILD (from rev 233362, 
cairo/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-03-11 18:52:38 UTC (rev 233363)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Brice Carpentier 
+
+pkgname=cairo
+pkgver=1.14.2
+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=(http://cairographics.org/releases/cairo-$pkgver.tar.xz)
+sha1sums=('c8da68aa66ca0855b5d0ff552766d3e8679e1d24')
+
+build() {
+  cd $pkgname-$pkgver
+  ./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
+   
+   #--disable-xlib-xcb \
+   #--enable-test-surfaces \ takes ages
+   #--enable-drm # breaks build
+   
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  #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-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: cairo/repos/testing-x86_64/PKGBUILD (from rev 233362, 
cairo/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-03-11 18:52:38 UTC (rev 233363)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Brice Carpentier 
+
+pkgname=cairo
+pkgver=1.14.2
+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=(http://cairographics.org/releases/cairo-$pkgver.tar.xz)
+sha1sums=('c8da68aa66ca0855b5d0ff552766d3e8679e1d24')
+
+build() {
+  cd $pkgname-$pkgver
+  ./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
+   
+   #--disable-xlib-xcb \
+   #--enable-test-surfaces \ takes ages
+   #--enable-drm # breaks build
+   
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  #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-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2015-03-11 Thread Andreas Radke
Date: Wednesday, March 11, 2015 @ 19:17:35
  Author: andyrtr
Revision: 233361

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

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

-+
 /PKGBUILD   |  244 ++
 /x2goserver.install |   54 
 extra-i686/PKGBUILD |  121 --
 extra-i686/x2goserver.install   |   27 
 extra-x86_64/PKGBUILD   |  121 --
 extra-x86_64/x2goserver.install |   27 
 6 files changed, 298 insertions(+), 296 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-03-11 18:17:18 UTC (rev 233360)
+++ extra-i686/PKGBUILD 2015-03-11 18:17:35 UTC (rev 233361)
@@ -1,121 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-
-# Contributor: Gerhard Brauer 
-# Contributor: Richard Murri 
-# Contributor: Markus Opitz 
-# Contributor: Milan Knížek 
-
-pkgname=x2goserver
-pkgver=4.0.1.19
-pkgrel=1
-pkgdesc="Open source terminal server"
-arch=('i686' 'x86_64')
-url="http://www.x2go.org/";
-license=('GPL2')
-# see x2goserver.spec
-depends=(#'python' 'xorg-xauth' 
-
- # For x2goruncommand - for now
- 'bc'
- # For netstat in x2goresume-session
- 'net-tools'
- 'openssh'
- 'perl-file-readbackwards'
- # We need a database
- 'perl-dbd-sqlite' 
- # For killall in x2gosuspend-session
- 'psmisc'
- # For x2goshowblocks
- 'lsof'
- # For x2godbadmin
-'pwgen' # in community
- # For printing, file-sharing
- 'sshfs'
- # For /etc/sudoers.d
- 'sudo'
- 'x2go-agent'
- # For /etc/X11/Xresources
- 'xorg-xinit'
- 'xorg-fonts-misc'
- 'shadow'
- 
- # for post install actions
- 'desktop-file-utils'
- 'shared-mime-info'
- 
- 'perl-capture-tiny'
- 'perl-config-simple'
- 'perl-file-basedir' # FS#38551
- 
- 'xorg-xwininfo' # FS#38558
- 
- #x2goserver-extensions
- #x2goserver-xsession
- #x2goserver-fmbindings
- #x2goserver-printing
-)
-makedepends=('man2html' 'perl-extutils-makemaker' 'systemd')
-#optdepends=('cups-x2go: printing support')
-options=('emptydirs')
-install=x2goserver.install
-backup=('etc/x2go/x2goserver.conf' 'etc/x2go/x2gosql/sql')
-source=(http://code.x2go.org/releases/source/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('7f1093c4dbc0a273bcc73a2e4b2c8b69')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # -r option does not exist in Arch linux
-  # (However, html man pages do not get installed anyway...)
-  for Makefile in $(find . -type f -name Makefile); do
-sed -i 's@(MAN2HTML_BIN) -r @(MAN2HTML_BIN) < @g' $Makefile
-sed -i 's@ \$(MAN2HTML_SRC)/@ < \$(MAN2HTML_SRC)/@g' $Makefile
-  done
-
-  # fix some Makefile permission options
-  for Makefile in $(find . -type f -name Makefile); do
-sed -i "s:-o root -g root ::g" $Makefile
-  done
-  # Do not ship xsession - Debian specific
-  sed -i -e '/xsession/s/^/#/' Makefile
-  
-  make PREFIX=/usr SBINDIR=/usr/bin DESTDIR="$pkgdir" PERL_INSTALLDIRS=vendor
-}
-
-package() {
-  
-  # system user/group x2gouser - 111
-  # system user/group x2goprint - 112
-  
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make -j1 PREFIX=/usr SBINDIR=/usr/bin DESTDIR="$pkgdir" install
-
-  # systemd service file 
-  install -Dm 644 "$srcdir/${pkgname}-${pkgver}/x2goserver.service" 
"$pkgdir/usr/lib/systemd/system/x2goserver.service"
-  
-  # X2go homedir + printing spool dir
-  install -dm 0770 --owner=111 --group=111 $pkgdir/var/lib/x2go
-  install -dm 0770 --owner=112 --group=112 $pkgdir/var/spool/x2go
-  
-  # load fuse module at system start
-  install -dm755 $pkgdir/usr/lib/modules-load.d
-  echo "fuse" > $pkgdir/usr/lib/modules-load.d/x2goserver.conf
-
-  install -dm 755 "${pkgdir}/usr/share/doc/${pkgname}"
-  install -m 644 "ChangeLog" "${pkgdir}/usr/share/doc/${pkgname}/"
-
-  # fix permission - see INSTALL file
-  chown root:111 ${pkgdir}/usr/lib/x2go/x2gosqlitewrapper
-  chmod 2755 ${pkgdir}/usr/lib/x2go/x2gosqlitewrapper
-  
-  chown root:112 ${pkgdir}/usr/bin/x2goprint
-  chmod 2755 ${pkgdir}/usr/bin/x2goprint
-  
-  chmod 750 ${pkgdir}/etc/sudoers.d
-  chmod 0440 ${pkgdir}/etc/sudo

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

2015-03-11 Thread Andreas Radke
Date: Wednesday, March 11, 2015 @ 19:17:18
  Author: andyrtr
Revision: 233360

upgpkg: x2goserver 4.0.1.19-2

add dep non perl-file-which FS#44125

Modified:
  x2goserver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 17:22:57 UTC (rev 233359)
+++ PKGBUILD2015-03-11 18:17:18 UTC (rev 233360)
@@ -8,7 +8,7 @@
 
 pkgname=x2goserver
 pkgver=4.0.1.19
-pkgrel=1
+pkgrel=2
 pkgdesc="Open source terminal server"
 arch=('i686' 'x86_64')
 url="http://www.x2go.org/";
@@ -47,6 +47,7 @@
  'perl-capture-tiny'
  'perl-config-simple'
  'perl-file-basedir' # FS#38551
+ 'perl-file-which' # FS#44125
  
  'xorg-xwininfo' # FS#38558
  


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

2015-03-11 Thread Timothy Redaelli
Date: Wednesday, March 11, 2015 @ 18:44:30
  Author: tredaelli
Revision: 129081

archrelease: copy trunk to community-any

Added:
  electrum/repos/community-any/PKGBUILD
(from rev 129080, electrum/trunk/PKGBUILD)
  electrum/repos/community-any/electrum.install
(from rev 129080, electrum/trunk/electrum.install)
Deleted:
  electrum/repos/community-any/PKGBUILD
  electrum/repos/community-any/electrum.install

--+
 PKGBUILD |   94 +++--
 electrum.install |   22 ++--
 2 files changed, 59 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-03-11 17:44:20 UTC (rev 129080)
+++ PKGBUILD2015-03-11 17:44:30 UTC (rev 129081)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Andy Weidenbaum 
-# ThomasV PGP key: gpg --recv-key 6694D8DE7BE8EE5631BED9502BD5824B7F9470E6
-# http://bitcoin-otc.com/viewgpg.php?nick=ThomasV
-
-pkgname=electrum
-pkgver=2.0.1
-pkgrel=1
-pkgdesc="Lightweight Bitcoin wallet"
-arch=('any')
-depends=('python2-ecdsa' 'python2-pbkdf2' 'python2-requests' 'python2-pyasn1' 
'python2-pyasn1-modules' 'python2-qrcode'
- 'python2-protobuf' 'python2-tlslite' 'python2-dnspython' 
'python2-pyqt4' 'python2-sip' 'python2-slowaes')
-makedepends=('gettext' 'python2-pycurl' 'python2-setuptools' 
'desktop-file-utils')
-optdepends=('python2-zbar: QR code reading support')
-url="https://electrum.org";
-license=('GPL3')
-source=("https://download.electrum.org/${pkgname^}-${pkgver}.tar.gz"{,.asc})
-md5sums=('409e5bff5b9e83f65724a8127d344055'
- 'SKIP')
-sha256sums=('562dcb53ed75790d63506b68ffaf51c49bdd6c735762dcaa1b8cca52825e35bf'
-'SKIP')
-validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
-
-provides=('electrum')
-install=electrum.install
-
-prepare() {
-  cd ${pkgname^}-${pkgver}
-
-  find . -type f -exec sed -i 's#/usr/bin/python#/usr/bin/python2#g' {} +
-  find . -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env python2#g' 
{} +
-}
-
-build() {
-  cd ${pkgname^}-${pkgver}
-
-  pyrcc4 icons.qrc -o gui/qt/icons_rc.py
-  python2 setup.py build
-}
-
-package() {
-  cd ${pkgname^}-${pkgver}
-
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-}

Copied: electrum/repos/community-any/PKGBUILD (from rev 129080, 
electrum/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-03-11 17:44:30 UTC (rev 129081)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Andy Weidenbaum 
+# ThomasV PGP key: gpg --recv-key 6694D8DE7BE8EE5631BED9502BD5824B7F9470E6
+# http://bitcoin-otc.com/viewgpg.php?nick=ThomasV
+
+pkgname=electrum
+pkgver=2.0.2
+pkgrel=1
+pkgdesc="Lightweight Bitcoin wallet"
+arch=('any')
+depends=('python2-ecdsa' 'python2-pbkdf2' 'python2-requests' 'python2-pyasn1' 
'python2-pyasn1-modules' 'python2-qrcode'
+ 'python2-protobuf' 'python2-tlslite' 'python2-dnspython' 
'python2-pyqt4' 'python2-sip' 'python2-slowaes')
+makedepends=('gettext' 'python2-pycurl' 'python2-setuptools' 
'desktop-file-utils')
+optdepends=('python2-btchip: BTChip hardware wallet support'
+'python2-matplotlib: plot transaction history in graphical mode'
+'zbar: QR code reading support')
+url="https://electrum.org";
+license=('GPL3')
+source=("https://download.electrum.org/${pkgname^}-${pkgver}.tar.gz"{,.asc})
+md5sums=('4e940304cc7b5b3f297250d220b2825f'
+ 'SKIP')
+sha256sums=('65fa10adb4d49fb94daf7c7dc3ec13813107f728039d11c5aa66e5f3b53a458c'
+'SKIP')
+validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
+
+provides=('electrum')
+install=electrum.install
+
+prepare() {
+  cd ${pkgname^}-${pkgver}
+
+  find . -type f -exec sed -i 's#/usr/bin/python#/usr/bin/python2#g' {} +
+  find . -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env python2#g' 
{} +
+}
+
+build() {
+  cd ${pkgname^}-${pkgver}
+
+  pyrcc4 icons.qrc -o gui/qt/icons_rc.py
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname^}-${pkgver}
+
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+}

Deleted: electrum.install
===
--- electrum.install2015-03-11 17:44:20 UTC (rev 129080)
+++ electrum.install2015-03-11 17:44:30 UTC (rev 129081)
@@ -1,11 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: electrum/repos/community-any/electrum.install (from rev 129080, 
electrum/trunk/electrum.install)
===
--- electrum.install(rev 0)
+++ electrum.install2015-03-11 17:44:30 UTC (rev 129081)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+

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

2015-03-11 Thread Felix Yan
Date: Wednesday, March 11, 2015 @ 18:22:57
  Author: fyan
Revision: 233359

archrelease: copy trunk to extra-any

Added:
  pylint/repos/extra-any/PKGBUILD
(from rev 233358, pylint/trunk/PKGBUILD)
Deleted:
  pylint/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-03-11 17:22:38 UTC (rev 233358)
+++ PKGBUILD2015-03-11 17:22:57 UTC (rev 233359)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez 
-# Maintainer: Felix Yan 
-# Contributor: Stéphane Gaudreault 
-# Contributor: Alexander Fehr 
-
-pkgbase=pylint
-pkgname=('python2-pylint' 'python-pylint')
-pkgver=1.4.1
-pkgrel=1
-pkgdesc="Analyzes Python code looking for bugs and signs of poor quality"
-arch=('any')
-url="http://pylint.org";
-license=('GPL')
-makedepends=('python2-astroid' 'python-astroid' 'python2-setuptools' 
'python-setuptools' 'python2-six' 'python-six')
-optdepends=('tk: Pylint GUI')
-source=("http://pypi.python.org/packages/source/p/${pkgbase}/${pkgbase}-${pkgver}.tar.gz";)
-sha1sums=('8422341d4e02ad1516f4e6bc04931e6f480764bb')
-
-prepare() {
-  cp -a ${pkgbase}-${pkgver}{,-py3}
-
-  cd ${pkgbase}-${pkgver}
-  sed -i "s|/usr/bin/env python|/usr/bin/env python2|" epylint.py __main__.py 
test/input/noext
-
-  cd ../${pkgbase}-${pkgver}-py3
-  sed -i "s|/usr/bin/env python|/usr/bin/env python3|" epylint.py __main__.py 
test/input/noext
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  python2 setup.py build
-
-  cd ../${pkgbase}-${pkgver}-py3
-  python3 setup.py build
-}
-
-check() {
-  cd ${pkgbase}-${pkgver}
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -Wi -m unittest discover -s 
test/ -p *test_*.py
-
-  cd ../${pkgbase}-${pkgver}-py3
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -Wi -m unittest discover -s 
test/ -p *test_*.py || warning "Tests failed"
-}
-
-package_python2-pylint() {
-  depends=('python2-astroid' 'python2-setuptools' 'python2-six')
-
-  cd ${pkgbase}-${pkgver}
-
-  python2 setup.py install --prefix=/usr --root="${pkgdir}" --skip-build 
--optimize=1
-
-  install -d "${pkgdir}"/usr/share/man/man1
-  install -m644 man/* "${pkgdir}/usr/share/man/man1"
-
-  for i in epylint pylint pylint-gui pyreverse symilar; do
- mv "${pkgdir}"/usr/bin/${i}{,2}
- mv "${pkgdir}"/usr/share/man/man1/${i}{,2}.1
-  done
-}
-
-package_python-pylint() {
-  depends=('python-astroid' 'python-setuptools' 'python-six')
-
-  cd ${pkgbase}-${pkgver}-py3
-
-  python3 setup.py install --prefix=/usr --root="${pkgdir}" --skip-build 
--optimize=1
-
-  install -d "${pkgdir}/usr/share/man/man1"
-  install -m644 man/* "${pkgdir}/usr/share/man/man1"
-}

Copied: pylint/repos/extra-any/PKGBUILD (from rev 233358, pylint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-03-11 17:22:57 UTC (rev 233359)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Alexander Fehr 
+
+pkgbase=pylint
+pkgname=('python2-pylint' 'python-pylint')
+pkgver=1.4.2
+pkgrel=1
+pkgdesc="Analyzes Python code looking for bugs and signs of poor quality"
+arch=('any')
+url="http://pylint.org";
+license=('GPL')
+makedepends=('python2-astroid' 'python-astroid' 'python2-setuptools' 
'python-setuptools' 'python2-six' 'python-six')
+optdepends=('tk: Pylint GUI')
+source=("http://pypi.python.org/packages/source/p/${pkgbase}/${pkgbase}-${pkgver}.tar.gz";)
+sha1sums=('72e486d9db139e3ed2425ba589345043b877c229')
+
+prepare() {
+  cp -a ${pkgbase}-${pkgver}{,-py3}
+
+  cd ${pkgbase}-${pkgver}/pylint
+  sed -e "s|/usr/bin/env python|/usr/bin/env python2|" -e 
"s|/usr/bin/python$|/usr/bin/python2|" -i epylint.py __main__.py 
test/input/noext test/data/ascript
+
+  cd ../../${pkgbase}-${pkgver}-py3/pylint
+  sed -e "s|/usr/bin/env python|/usr/bin/env python3|" -e 
"s|/usr/bin/python$|/usr/bin/python3|" -i epylint.py __main__.py 
test/input/noext test/data/ascript
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  python2 setup.py build
+
+  cd ../${pkgbase}-${pkgver}-py3
+  python3 setup.py build
+}
+
+check() {
+  cd ${pkgbase}-${pkgver}
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -Wi -m unittest discover -s 
pylint/test/ -p *test_*.py || warning "Tests failed"
+
+  cd ../${pkgbase}-${pkgver}-py3
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -Wi -m unittest discover -s 
pylint/test/ -p *test_*.py || warning "Tests failed"
+}
+
+package_python2-pylint() {
+  depends=('python2-astroid' 'python2-setuptools' 'python2-six')
+
+  cd ${pkgbase}-${pkgver}
+
+  python2 setup.py install --prefix=/usr --root="${pkgdir}" --skip-build 
--optimize=1
+
+  install -d "${pkgdir}"/usr/share/man/man1
+  install -m644 man/* "${pkgdir}/usr/share/man/man1"
+
+  for i in epylint pylint pyli

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

2015-03-11 Thread Felix Yan
Date: Wednesday, March 11, 2015 @ 18:22:38
  Author: fyan
Revision: 233358

upgpkg: pylint 1.4.2-1

Modified:
  pylint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 16:41:58 UTC (rev 233357)
+++ PKGBUILD2015-03-11 17:22:38 UTC (rev 233358)
@@ -6,7 +6,7 @@
 
 pkgbase=pylint
 pkgname=('python2-pylint' 'python-pylint')
-pkgver=1.4.1
+pkgver=1.4.2
 pkgrel=1
 pkgdesc="Analyzes Python code looking for bugs and signs of poor quality"
 arch=('any')
@@ -15,16 +15,16 @@
 makedepends=('python2-astroid' 'python-astroid' 'python2-setuptools' 
'python-setuptools' 'python2-six' 'python-six')
 optdepends=('tk: Pylint GUI')
 
source=("http://pypi.python.org/packages/source/p/${pkgbase}/${pkgbase}-${pkgver}.tar.gz";)
-sha1sums=('8422341d4e02ad1516f4e6bc04931e6f480764bb')
+sha1sums=('72e486d9db139e3ed2425ba589345043b877c229')
 
 prepare() {
   cp -a ${pkgbase}-${pkgver}{,-py3}
 
-  cd ${pkgbase}-${pkgver}
-  sed -i "s|/usr/bin/env python|/usr/bin/env python2|" epylint.py __main__.py 
test/input/noext
+  cd ${pkgbase}-${pkgver}/pylint
+  sed -e "s|/usr/bin/env python|/usr/bin/env python2|" -e 
"s|/usr/bin/python$|/usr/bin/python2|" -i epylint.py __main__.py 
test/input/noext test/data/ascript
 
-  cd ../${pkgbase}-${pkgver}-py3
-  sed -i "s|/usr/bin/env python|/usr/bin/env python3|" epylint.py __main__.py 
test/input/noext
+  cd ../../${pkgbase}-${pkgver}-py3/pylint
+  sed -e "s|/usr/bin/env python|/usr/bin/env python3|" -e 
"s|/usr/bin/python$|/usr/bin/python3|" -i epylint.py __main__.py 
test/input/noext test/data/ascript
 }
 
 build() {
@@ -37,10 +37,10 @@
 
 check() {
   cd ${pkgbase}-${pkgver}
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -Wi -m unittest discover -s 
test/ -p *test_*.py
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -Wi -m unittest discover -s 
pylint/test/ -p *test_*.py || warning "Tests failed"
 
   cd ../${pkgbase}-${pkgver}-py3
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -Wi -m unittest discover -s 
test/ -p *test_*.py || warning "Tests failed"
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -Wi -m unittest discover -s 
pylint/test/ -p *test_*.py || warning "Tests failed"
 }
 
 package_python2-pylint() {


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

2015-03-11 Thread Timothy Redaelli
Date: Wednesday, March 11, 2015 @ 18:20:26
  Author: tredaelli
Revision: 129078

upgpkg: wireshark 1.12.4-1

Modified:
  wireshark/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 14:11:55 UTC (rev 129077)
+++ PKGBUILD2015-03-11 17:20:26 UTC (rev 129078)
@@ -4,7 +4,7 @@
 # Contributor: Florian Pritz 
 pkgname=('wireshark-cli' 'wireshark-gtk' 'wireshark-qt')
 pkgbase=wireshark
-pkgver=1.12.3
+pkgver=1.12.4
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL2')
@@ -12,7 +12,7 @@
  'lua' 'python' 'desktop-file-utils' 'hicolor-icon-theme')
 url='http://www.wireshark.org/'
 source=(http://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2)
-sha1sums=('44ad77b6e80f41ba34ac0eaf477b81cb1345ceed')
+sha1sums=('dbbd4090c02fe170f35b26fa26d8aba0b399c659')
 
 prepare() {
   cd ${pkgbase}-${pkgver}


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

2015-03-11 Thread Timothy Redaelli
Date: Wednesday, March 11, 2015 @ 18:20:40
  Author: tredaelli
Revision: 129079

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

Added:
  wireshark/repos/community-i686/PKGBUILD
(from rev 129078, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-i686/wireshark-gtk.install
(from rev 129078, wireshark/trunk/wireshark-gtk.install)
  wireshark/repos/community-i686/wireshark-qt.install
(from rev 129078, wireshark/trunk/wireshark-qt.install)
  wireshark/repos/community-i686/wireshark.install
(from rev 129078, wireshark/trunk/wireshark.install)
  wireshark/repos/community-x86_64/PKGBUILD
(from rev 129078, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-x86_64/wireshark-gtk.install
(from rev 129078, wireshark/trunk/wireshark-gtk.install)
  wireshark/repos/community-x86_64/wireshark-qt.install
(from rev 129078, wireshark/trunk/wireshark-qt.install)
  wireshark/repos/community-x86_64/wireshark.install
(from rev 129078, wireshark/trunk/wireshark.install)
Deleted:
  wireshark/repos/community-i686/PKGBUILD
  wireshark/repos/community-i686/wireshark-gtk.install
  wireshark/repos/community-i686/wireshark-qt.install
  wireshark/repos/community-i686/wireshark.install
  wireshark/repos/community-x86_64/PKGBUILD
  wireshark/repos/community-x86_64/wireshark-gtk.install
  wireshark/repos/community-x86_64/wireshark-qt.install
  wireshark/repos/community-x86_64/wireshark.install

+
 /PKGBUILD  |  190 +++
 /wireshark-gtk.install |   24 +++
 /wireshark-qt.install  |   22 +++
 /wireshark.install |   36 +
 community-i686/PKGBUILD|   95 ---
 community-i686/wireshark-gtk.install   |   12 -
 community-i686/wireshark-qt.install|   11 -
 community-i686/wireshark.install   |   18 --
 community-x86_64/PKGBUILD  |   95 ---
 community-x86_64/wireshark-gtk.install |   12 -
 community-x86_64/wireshark-qt.install  |   11 -
 community-x86_64/wireshark.install |   18 --
 12 files changed, 272 insertions(+), 272 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-03-11 17:20:26 UTC (rev 129078)
+++ community-i686/PKGBUILD 2015-03-11 17:20:40 UTC (rev 129079)
@@ -1,95 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Guillaume ALAUX 
-# Contributor: Florian Pritz 
-pkgname=('wireshark-cli' 'wireshark-gtk' 'wireshark-qt')
-pkgbase=wireshark
-pkgver=1.12.3
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('qt4' 'gtk3' 'krb5' 'libpcap' 'bash' 'gnutls' 'portaudio'
- 'lua' 'python' 'desktop-file-utils' 'hicolor-icon-theme')
-url='http://www.wireshark.org/'
-source=(http://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2)
-sha1sums=('44ad77b6e80f41ba34ac0eaf477b81cb1345ceed')
-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-  sed -i 's/$(AM_V_RCC)rcc/&-qt4/p' ui/qt/Makefile.am
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-
-  ./autogen.sh
-  ./configure \
-  --prefix=/usr \
-  --with-qt \
-  --with-gtk3=yes \
-  --with-pcap \
-  --with-zlib \
-  --with-lua \
-  --with-portaudio \
-  --with-ssl \
-  --with-krb5
-  make all
-}
-
-package_wireshark-cli() {
-  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - CLI 
version'
-  depends=('krb5' 'libgcrypt' 'libcap' 'libpcap' 'bash' 'gnutls' 'glib2' 'lua')
-  install=wireshark.install
-  conflicts=(wireshark)
-
-  cd ${pkgbase}-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-
-  #wireshark uid group is 150
-  chgrp 150 "${pkgdir}/usr/bin/dumpcap"
-  chmod 754 "${pkgdir}/usr/bin/dumpcap"
-  rm "${pkgdir}/usr/bin/wireshark" "${pkgdir}/usr/bin/wireshark-qt"
-
-  # Headers
-  install -dm755 
"${pkgdir}"/usr/include/${pkgbase}/{epan/{crypt,dfilter,dissectors,ftypes,wmem},wiretap,wsutil}
-
-  install -m644 color.h config.h register.h ws_symbol_export.h 
"${pkgdir}/usr/include/${pkgbase}"
-  for d in epan epan/crypt epan/dfilter epan/dissectors epan/ftypes epan/wmem 
wiretap wsutil; do
-install -m644 ${d}/*.h "${pkgdir}"/usr/include/${pkgbase}/${d}
-  done
-}
-
-package_wireshark-gtk() {
-  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - GTK 
frontend'
-  depends=('gtk3' 'portaudio' 'wireshark-cli' 'desktop-file-utils' 
'hicolor-icon-theme')
-  install=wireshark-gtk.install
-  replaces=(wireshark)
-  conflicts=(wireshark)
-
-  cd ${pkgbase}-${pkgver}
-
-  install -Dm755 .libs/wireshark "${pkgdir}/usr/bin/wireshark"
-  for d in 16 32 48; do
-install -Dm644 image/hi${d}-app-wireshark.png  \
-   
"${pkgdir}/usr/share/icons/hicolor/${d}x${d}/apps/wireshark.png"
-  done
-
-  for d in 16 24 32 48 64 128 256 ; do
-install -Dm644 image/WiresharkDoc-${d}.png \
-   
"${pkgdir}/usr/share/ic

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

2015-03-11 Thread Felix Yan
Date: Wednesday, March 11, 2015 @ 17:41:40
  Author: fyan
Revision: 233356

upgpkg: python-astroid 1.3.5-1

Modified:
  python-astroid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 16:30:35 UTC (rev 233355)
+++ PKGBUILD2015-03-11 16:41:40 UTC (rev 233356)
@@ -4,7 +4,7 @@
 
 pkgbase=python-astroid
 pkgname=('python2-astroid' 'python-astroid')
-pkgver=1.3.4
+pkgver=1.3.5
 pkgrel=1
 pkgdesc="Useful miscellaneous modules used by Logilab projects"
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
 checkdepends=('python-logilab-common' 'python2-logilab-common')
 
source=("https://pypi.python.org/packages/source/a/astroid/astroid-${pkgver}.tar.gz";)
-sha1sums=('7c32874688f6474f41d9e49a116f8578dbebdb2c')
+sha1sums=('6bc81d001b5ebf7c49dfc388e48538bd95d671ba')
 
 prepare() {
   cp -a astroid-${pkgver}{,-py3}


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

2015-03-11 Thread Felix Yan
Date: Wednesday, March 11, 2015 @ 17:30:35
  Author: fyan
Revision: 233355

archrelease: copy trunk to extra-any

Added:
  python-setuptools/repos/extra-any/PKGBUILD
(from rev 233354, python-setuptools/trunk/PKGBUILD)
Deleted:
  python-setuptools/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-03-11 16:30:16 UTC (rev 233354)
+++ PKGBUILD2015-03-11 16:30:35 UTC (rev 233355)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez 
-# Maintainer: Felix Yan 
-
-pkgbase=python-setuptools
-pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=13.0.2
-pkgrel=1
-epoch=1
-pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
-arch=('any')
-license=('PSF')
-url="http://pypi.python.org/pypi/setuptools";
-makedepends=('python' 'python2')
-checkdepends=('python-mock' 'python2-mock' 'python-pytest' 'python2-pytest' 
'git')
-source=("http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz";)
-sha512sums=('decc400d92a4327ddf0672b99adacba87842df11d1c01907209864f84322e67e9dab2676c27f26b8ab8edd1f7ecc577fd4813f30b1b40f6b52abd1ffb682c7e8')
-
-prepare() {
-  cp -a setuptools-${pkgver}{,-python2}
-
-  cd "${srcdir}"/setuptools-${pkgver}
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
-
-  cd "${srcdir}"/setuptools-${pkgver}-python2
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" 
setuptools/command/easy_install.py
-}
-
-build() {
-  # Build python 3 module
-  cd "${srcdir}"/setuptools-${pkgver}
-  python3 setup.py build
-
-  # Build python 2 module
-  cd "${srcdir}"/setuptools-${pkgver}-python2
-  python2 setup.py build
-}
-
-check() {
-  # Workaround UTF-8 tests by setting LC_CTYPE
-
-  # Check python3 module
-  cd "${srcdir}"/setuptools-${pkgver}
-  LC_CTYPE=en_US.utf8 python3 setup.py ptr
-
-  # Check python2 module
-  cd "${srcdir}"/setuptools-${pkgver}-python2
-  LC_CTYPE=en_US.utf8 python2 setup.py ptr
-}
- 
-package_python-setuptools() {
-  depends=('python')
-  provides=('python-distribute')
-  replaces=('python-distribute')
-
-  cd "${srcdir}/setuptools-${pkgver}"
-  python3 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
-}
- 
-package_python2-setuptools() {
-  depends=('python2')
-  provides=('python2-distribute' 'setuptools')
-  replaces=('python2-distribute' 'setuptools')
-
-  cd "${srcdir}/setuptools-${pkgver}-python2"
-  python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
-  rm "${pkgdir}/usr/bin/easy_install"
-}

Copied: python-setuptools/repos/extra-any/PKGBUILD (from rev 233354, 
python-setuptools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-03-11 16:30:35 UTC (rev 233355)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=14.0
+pkgrel=1
+epoch=1
+pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
+arch=('any')
+license=('PSF')
+url="http://pypi.python.org/pypi/setuptools";
+makedepends=('python' 'python2')
+checkdepends=('python-mock' 'python2-mock' 'python-pytest' 'python2-pytest' 
'git')
+source=("http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz";)
+sha512sums=('8c0381c7579049cfe57c7c5a1db2e4d99455d2d265d36e88bdb44c7384809d8c69e8cbb632e74d46d371996e52bde80f0a2bb81b5133d969308bb06bd2167257')
+
+prepare() {
+  cp -a setuptools-${pkgver}{,-python2}
+
+  cd "${srcdir}"/setuptools-${pkgver}
+  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
+
+  cd "${srcdir}"/setuptools-${pkgver}-python2
+  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" 
setuptools/command/easy_install.py
+}
+
+build() {
+  # Build python 3 module
+  cd "${srcdir}"/setuptools-${pkgver}
+  python3 setup.py build
+
+  # Build python 2 module
+  cd "${srcdir}"/setuptools-${pkgver}-python2
+  python2 setup.py build
+}
+
+check() {
+  # Workaround UTF-8 tests by setting LC_CTYPE
+  # Tests failed as of 14.0, but upstream suggests that the failing tests can 
be disregarded: 
https://bitbucket.org/pypa/setuptools/issue/360/test-suite-fails-for-the-140-release
+
+  # Check python3 module
+  cd "${srcdir}"/setuptools-${pkgver}
+  LC_CTYPE=en_US.utf8 python3 setup.py ptr || warning "Tests failed"
+
+  # Check python2 module
+  cd "${srcdir}"/setuptools-${pkgver}-python2
+  LC_CTYPE=en_US.utf8 python2 setup.py ptr || warning "Tests failed"
+}
+ 
+package_python-setuptools() {
+  depends=('python')
+  provides=('python-distribute')
+  replaces=('python-distribute')
+
+  cd "${s

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

2015-03-11 Thread Felix Yan
Date: Wednesday, March 11, 2015 @ 17:30:16
  Author: fyan
Revision: 233354

upgpkg: python-setuptools 1:14.0-1

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 16:17:19 UTC (rev 233353)
+++ PKGBUILD2015-03-11 16:30:16 UTC (rev 233354)
@@ -4,7 +4,7 @@
 
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=13.0.2
+pkgver=14.0
 pkgrel=1
 epoch=1
 pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
@@ -14,7 +14,7 @@
 makedepends=('python' 'python2')
 checkdepends=('python-mock' 'python2-mock' 'python-pytest' 'python2-pytest' 
'git')
 
source=("http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz";)
-sha512sums=('decc400d92a4327ddf0672b99adacba87842df11d1c01907209864f84322e67e9dab2676c27f26b8ab8edd1f7ecc577fd4813f30b1b40f6b52abd1ffb682c7e8')
+sha512sums=('8c0381c7579049cfe57c7c5a1db2e4d99455d2d265d36e88bdb44c7384809d8c69e8cbb632e74d46d371996e52bde80f0a2bb81b5133d969308bb06bd2167257')
 
 prepare() {
   cp -a setuptools-${pkgver}{,-python2}
@@ -38,14 +38,15 @@
 
 check() {
   # Workaround UTF-8 tests by setting LC_CTYPE
+  # Tests failed as of 14.0, but upstream suggests that the failing tests can 
be disregarded: 
https://bitbucket.org/pypa/setuptools/issue/360/test-suite-fails-for-the-140-release
 
   # Check python3 module
   cd "${srcdir}"/setuptools-${pkgver}
-  LC_CTYPE=en_US.utf8 python3 setup.py ptr
+  LC_CTYPE=en_US.utf8 python3 setup.py ptr || warning "Tests failed"
 
   # Check python2 module
   cd "${srcdir}"/setuptools-${pkgver}-python2
-  LC_CTYPE=en_US.utf8 python2 setup.py ptr
+  LC_CTYPE=en_US.utf8 python2 setup.py ptr || warning "Tests failed"
 }
  
 package_python-setuptools() {


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

2015-03-11 Thread Felix Yan
Date: Wednesday, March 11, 2015 @ 17:16:52
  Author: fyan
Revision: 233352

upgpkg: cmake 3.2.1-1

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 12:40:41 UTC (rev 233351)
+++ PKGBUILD2015-03-11 16:16:52 UTC (rev 233352)
@@ -4,19 +4,19 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.1.3
+pkgver=3.2.1
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('i686' 'x86_64')
 url="http://www.cmake.org/";
 license=('custom')
-depends=('curl' 'libarchive' 'shared-mime-info')
+depends=('curl' 'libarchive' 'shared-mime-info' 'jsoncpp')
 makedepends=('qt5-base' 'python-sphinx' 'emacs')
 optdepends=('qt5-base: cmake-gui'
 'libxkbcommon-x11: cmake-gui')
 install="${pkgname}.install"
 source=("http://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('5697a77503bb5636f4b4057dcc02aa32')
+md5sums=('63f436aa19b5efc37017759c8d3953ca')
 
 prepare() {
   cd ${pkgname}-${pkgver}


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

2015-03-11 Thread Sven-Hendrik Haase
Date: Wednesday, March 11, 2015 @ 14:34:37
  Author: svenstaro
Revision: 129074

upgpkg: fmodex 4.44.50-1

upstream releaes 4.44.50

Modified:
  fmodex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 12:28:06 UTC (rev 129073)
+++ PKGBUILD2015-03-11 13:34:37 UTC (rev 129074)
@@ -5,7 +5,7 @@
 # Note: This packae is proprietary and distribution is limited. However, we
 # have written permission to by the FMOD CEO to distribute this in binary form.
 pkgname=fmodex
-pkgver=4.44.41
+pkgver=4.44.50
 pkgrel=1
 pkgdesc="An advanced audio engine"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 url="http://www.fmod.org/";
 license=('custom')
 
source=("http://www.fmod.org/download/fmodex/api/Linux/fmodapi${pkgver//./}linux.tar.gz";)
-md5sums=('0537faee354a5f302b08000e6816fcdc')
+md5sums=('4024a88133b00968013874b0eeaec9d0')
 
 package() {
   cd fmodapi${pkgver//./}linux


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

2015-03-11 Thread Sven-Hendrik Haase
Date: Wednesday, March 11, 2015 @ 14:34:43
  Author: svenstaro
Revision: 129075

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

Added:
  fmodex/repos/community-i686/PERMISSION
(from rev 129074, fmodex/trunk/PERMISSION)
  fmodex/repos/community-i686/PKGBUILD
(from rev 129074, fmodex/trunk/PKGBUILD)
  fmodex/repos/community-x86_64/PERMISSION
(from rev 129074, fmodex/trunk/PERMISSION)
  fmodex/repos/community-x86_64/PKGBUILD
(from rev 129074, fmodex/trunk/PKGBUILD)
Deleted:
  fmodex/repos/community-i686/PERMISSION
  fmodex/repos/community-i686/PKGBUILD
  fmodex/repos/community-x86_64/PERMISSION
  fmodex/repos/community-x86_64/PKGBUILD

-+
 /PERMISSION |   50 +
 /PKGBUILD   |   82 ++
 community-i686/PERMISSION   |   25 
 community-i686/PKGBUILD |   41 -
 community-x86_64/PERMISSION |   25 
 community-x86_64/PKGBUILD   |   41 -
 6 files changed, 132 insertions(+), 132 deletions(-)

Deleted: community-i686/PERMISSION
===
--- community-i686/PERMISSION   2015-03-11 13:34:37 UTC (rev 129074)
+++ community-i686/PERMISSION   2015-03-11 13:34:43 UTC (rev 129075)
@@ -1,25 +0,0 @@
-Hi Sven,
-sounds ok to me.
-regards,
-
-Brett Paterson | CEO
-FMOD by Firelight Technologies Pty Ltd
-Interactive Audio Middleware | www.fmod.org
-PH: +61 3 96635947 Fax: +61 3 96635951
-
-
--Original Message-
-From: Sven-Hendrik Haase [mailto:s...@lutzhaase.com] 
-Sent: Thursday, 15 July 2010 9:51 AM
-To: sa...@fmod.org
-Subject: Redistribution for Arch Linux
-
- Hello,
-
- I'm a packager for the Arch Linux project (http://www.archlinux.org) and
- I would like to ask you for permission for redistributing FMOD in binary
- form in our project. Arch Linux is a free operating system and is run
- entirely by volunteers. There is no commercial context.
-
- Regards,
- Sven-Hendrik Haase

Copied: fmodex/repos/community-i686/PERMISSION (from rev 129074, 
fmodex/trunk/PERMISSION)
===
--- community-i686/PERMISSION   (rev 0)
+++ community-i686/PERMISSION   2015-03-11 13:34:43 UTC (rev 129075)
@@ -0,0 +1,25 @@
+Hi Sven,
+sounds ok to me.
+regards,
+
+Brett Paterson | CEO
+FMOD by Firelight Technologies Pty Ltd
+Interactive Audio Middleware | www.fmod.org
+PH: +61 3 96635947 Fax: +61 3 96635951
+
+
+-Original Message-
+From: Sven-Hendrik Haase [mailto:s...@lutzhaase.com] 
+Sent: Thursday, 15 July 2010 9:51 AM
+To: sa...@fmod.org
+Subject: Redistribution for Arch Linux
+
+ Hello,
+
+ I'm a packager for the Arch Linux project (http://www.archlinux.org) and
+ I would like to ask you for permission for redistributing FMOD in binary
+ form in our project. Arch Linux is a free operating system and is run
+ entirely by volunteers. There is no commercial context.
+
+ Regards,
+ Sven-Hendrik Haase

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-03-11 13:34:37 UTC (rev 129074)
+++ community-i686/PKGBUILD 2015-03-11 13:34:43 UTC (rev 129075)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Christoph Zeiler 
-
-# Note: This packae is proprietary and distribution is limited. However, we
-# have written permission to by the FMOD CEO to distribute this in binary form.
-pkgname=fmodex
-pkgver=4.44.41
-pkgrel=1
-pkgdesc="An advanced audio engine"
-arch=('i686' 'x86_64')
-url="http://www.fmod.org/";
-license=('custom')
-source=("http://www.fmod.org/download/fmodex/api/Linux/fmodapi${pkgver//./}linux.tar.gz";)
-md5sums=('0537faee354a5f302b08000e6816fcdc')
-
-package() {
-  cd fmodapi${pkgver//./}linux
-
-  mkdir -p ${pkgdir}/usr/lib
-  mkdir -p ${pkgdir}/usr/include/fmodex
-
-  cp -d api/lib/* ${pkgdir}/usr/lib/
-  [[ $CARCH == "i686" ]] && rm ${pkgdir}/usr/lib/*64*
-
-  if [[ $CARCH == "x86_64" ]]; then
-cd ${pkgdir}/usr/lib
-ln -sf libfmodex64-${pkgver}.so libfmodex-${pkgver}.so
-ln -sf libfmodexL64-${pkgver}.so libfmodexL-${pkgver}.so
-cd ${srcdir}/fmodapi${pkgver//./}linux
-  fi
-
-  cp api/inc/* ${pkgdir}/usr/include/fmodex/
-
-  install -Dm644 documentation/LICENSE.TXT 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  mkdir -p ${pkgdir}/usr/share/doc/fmodex
-  cp -r documentation examples ${pkgdir}/usr/share/doc/fmodex
-}
-
-# vim:set ts=2 sw=2 et:

Copied: fmodex/repos/community-i686/PKGBUILD (from rev 129074, 
fmodex/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-03-11 13:34:43 UTC (rev 129075)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Christoph Zeiler 
+
+# Note: This pa

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

2015-03-11 Thread Evangelos Foutras
Date: Wednesday, March 11, 2015 @ 13:40:33
  Author: foutrelis
Revision: 233350

upgpkg: opal 3.10.11-6

libx264.so.144 rebuild.

Modified:
  opal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 12:31:07 UTC (rev 233349)
+++ PKGBUILD2015-03-11 12:40:33 UTC (rev 233350)
@@ -3,7 +3,7 @@
 # Contributor: Tom K 
 pkgname=opal
 pkgver=3.10.11
-pkgrel=5
+pkgrel=6
 pkgdesc="Open Phone Abstraction Library"
 arch=(i686 x86_64)
 url="http://www.opalvoip.org";


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

2015-03-11 Thread Evangelos Foutras
Date: Wednesday, March 11, 2015 @ 13:40:41
  Author: foutrelis
Revision: 233351

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

Added:
  opal/repos/staging-i686/
  opal/repos/staging-i686/PKGBUILD
(from rev 233350, opal/trunk/PKGBUILD)
  opal/repos/staging-i686/opal-ffmpeg.patch
(from rev 233350, opal/trunk/opal-ffmpeg.patch)
  opal/repos/staging-x86_64/
  opal/repos/staging-x86_64/PKGBUILD
(from rev 233350, opal/trunk/PKGBUILD)
  opal/repos/staging-x86_64/opal-ffmpeg.patch
(from rev 233350, opal/trunk/opal-ffmpeg.patch)

--+
 staging-i686/PKGBUILD|   35 +++
 staging-i686/opal-ffmpeg.patch   |  389 +
 staging-x86_64/PKGBUILD  |   35 +++
 staging-x86_64/opal-ffmpeg.patch |  389 +
 4 files changed, 848 insertions(+)

Copied: opal/repos/staging-i686/PKGBUILD (from rev 233350, opal/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-03-11 12:40:41 UTC (rev 233351)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Tom K 
+pkgname=opal
+pkgver=3.10.11
+pkgrel=6
+pkgdesc="Open Phone Abstraction Library"
+arch=(i686 x86_64)
+url="http://www.opalvoip.org";
+license=(GPL)
+depends=(ptlib libtheora libx264 speex gsm celt)
+makedepends=(ffmpeg x264)
+optdepends=('ffmpeg: h263 and mpeg4 plugins')
+options=(!makeflags)
+source=(http://downloads.sourceforge.net/opalvoip/$pkgname-$pkgver.tar.bz2
+opal-ffmpeg.patch)
+sha256sums=('f38e7969e88a28dd9a10a6051315aceecde79d0bbd1a35676868dc5787aed706'
+'83f60ecf692e004293ce9dbaae7d7eb64d9713d3bfb71a0e7b1a0d1f936794cd')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../opal-ffmpeg.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  CXXFLAGS="$CXXFLAGS -fpermissive" \
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}

Copied: opal/repos/staging-i686/opal-ffmpeg.patch (from rev 233350, 
opal/trunk/opal-ffmpeg.patch)
===
--- staging-i686/opal-ffmpeg.patch  (rev 0)
+++ staging-i686/opal-ffmpeg.patch  2015-03-11 12:40:41 UTC (rev 233351)
@@ -0,0 +1,389 @@
+diff -Naur opal-3.10.10-orig/plugins/video/H.263-1998/Makefile.in 
opal-3.10.10/plugins/video/H.263-1998/Makefile.in
+--- opal-3.10.10-orig/plugins/video/H.263-1998/Makefile.in 2013-02-20 
03:18:03.0 +0100
 opal-3.10.10/plugins/video/H.263-1998/Makefile.in  2013-09-10 
21:43:11.091108557 +0200
+@@ -35,7 +35,7 @@
+  $(COMMONDIR)/dyna.cxx
+ 
+ CFLAGS += @LIBAVCODEC_CFLAGS@ -I$(COMMONDIR)
+-LIBS   += @DL_LIBS@
++LIBS   += @DL_LIBS@ @LIBAVUTIL_LIBS@
+ 
+ HAVE_LIBAVCODEC_RTP_MODE=@HAVE_LIBAVCODEC_RTP_MODE@
+ ifeq ($(HAVE_LIBAVCODEC_RTP_MODE),yes)
+diff -Naur opal-3.10.10-orig/plugins/video/H.263-1998/h263-1998.cxx 
opal-3.10.10/plugins/video/H.263-1998/h263-1998.cxx
+--- opal-3.10.10-orig/plugins/video/H.263-1998/h263-1998.cxx   2013-02-20 
03:18:03.0 +0100
 opal-3.10.10/plugins/video/H.263-1998/h263-1998.cxx2013-09-10 
21:43:11.091108557 +0200
+@@ -48,6 +48,10 @@
+ #endif
+ 
+ #include "h263-1998.h"
++extern "C"
++{
++#include 
++}
+ #include 
+ #include 
+ #include 
+@@ -203,7 +207,7 @@
+   PTRACE(4, m_prefix, "Encoder closed");
+ }
+ 
+-bool H263_Base_EncoderContext::Init(CodecID codecId)
++bool H263_Base_EncoderContext::Init(AVCodecID codecId)
+ {
+   PTRACE(5, m_prefix, "Opening encoder");
+ 
+@@ -317,9 +321,9 @@
+ // Level 2+ 
+ // works with eyeBeam, signaled via  non-standard "D"
+ if (atoi(value) == 1)
+-  m_context->flags |= CODEC_FLAG_H263P_UMV; 
++  av_opt_set_int(m_context->priv_data, "umv", 1, 0);
+ else
+-  m_context->flags &= ~CODEC_FLAG_H263P_UMV; 
++  av_opt_set_int(m_context->priv_data, "umv", 0, 0);
+ return;
+   }
+ 
+@@ -328,9 +332,9 @@
+ // Annex F: Advanced Prediction Mode
+ // does not work with eyeBeam
+ if (atoi(value) == 1)
+-  m_context->flags |= CODEC_FLAG_OBMC; 
++  av_opt_set_int(m_context->priv_data, "obmc", 1, 0);
+ else
+-  m_context->flags &= ~CODEC_FLAG_OBMC; 
++  av_opt_set_int(m_context->priv_data, "obmc", 0, 0);
+ return;
+   }
+ #endif
+@@ -360,9 +364,9 @@
+ // Annex K: Slice Structure
+ // does not work with eyeBeam
+ if (atoi(value) != 0)
+-  m_context->flags |= CODEC_FLAG_H263P_SLICE_STRUCT; 
++  av_opt_set_int(m_context->priv_data, "structured_slices", 1, 0);
+ else
+-  m_context->flags &= ~CODEC_FLAG_H263P_SLICE_STRUCT; 
++  av_opt_set_int(m_context->priv_data, "structured_slices", 0, 0);
+ return;
+   }
+ 
+@@ -370,9 +374,9 @@
+ // Annex S: Alternative INTER VLC mode
+ // does not work with eyeBeam
+ if (

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

2015-03-11 Thread Evangelos Foutras
Date: Wednesday, March 11, 2015 @ 13:31:07
  Author: foutrelis
Revision: 233349

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

Added:
  gst-plugins-ugly/repos/staging-i686/
  gst-plugins-ugly/repos/staging-i686/PKGBUILD
(from rev 233348, gst-plugins-ugly/trunk/PKGBUILD)
  gst-plugins-ugly/repos/staging-x86_64/
  gst-plugins-ugly/repos/staging-x86_64/PKGBUILD
(from rev 233348, gst-plugins-ugly/trunk/PKGBUILD)

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

Copied: gst-plugins-ugly/repos/staging-i686/PKGBUILD (from rev 233348, 
gst-plugins-ugly/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-03-11 12:31:07 UTC (rev 233349)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gst-plugins-ugly
+pkgver=1.4.5
+pkgrel=2
+pkgdesc="GStreamer Multimedia Framework Ugly Plugins"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://gstreamer.freedesktop.org/";
+depends=('gst-plugins-base-libs' 'libdvdread' 'lame' 'libmpeg2' 'a52dec' 
'libmad' 'libsidplay' 'libcdio' 'libx264' 'opencore-amr')
+makedepends=('python' 'gtk-doc' 'x264')
+options=(!emptydirs)
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('5cd5e81cf618944f4dc935f1669b2125e8bb2fe9cc7dc8dc15b72237aca49067')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental --enable-gtk-doc \
+--with-package-name="GStreamer Ugly Plugins (Arch Linux)" \
+--with-package-origin="http://www.archlinux.org/";
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}

Copied: gst-plugins-ugly/repos/staging-x86_64/PKGBUILD (from rev 233348, 
gst-plugins-ugly/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-03-11 12:31:07 UTC (rev 233349)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gst-plugins-ugly
+pkgver=1.4.5
+pkgrel=2
+pkgdesc="GStreamer Multimedia Framework Ugly Plugins"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://gstreamer.freedesktop.org/";
+depends=('gst-plugins-base-libs' 'libdvdread' 'lame' 'libmpeg2' 'a52dec' 
'libmad' 'libsidplay' 'libcdio' 'libx264' 'opencore-amr')
+makedepends=('python' 'gtk-doc' 'x264')
+options=(!emptydirs)
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('5cd5e81cf618944f4dc935f1669b2125e8bb2fe9cc7dc8dc15b72237aca49067')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental --enable-gtk-doc \
+--with-package-name="GStreamer Ugly Plugins (Arch Linux)" \
+--with-package-origin="http://www.archlinux.org/";
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}


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

2015-03-11 Thread Evangelos Foutras
Date: Wednesday, March 11, 2015 @ 13:31:00
  Author: foutrelis
Revision: 233348

upgpkg: gst-plugins-ugly 1.4.5-2

libx264.so.144 rebuild.

Modified:
  gst-plugins-ugly/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 11:47:38 UTC (rev 233347)
+++ PKGBUILD2015-03-11 12:31:00 UTC (rev 233348)
@@ -3,7 +3,7 @@
 
 pkgname=gst-plugins-ugly
 pkgver=1.4.5
-pkgrel=1
+pkgrel=2
 pkgdesc="GStreamer Multimedia Framework Ugly Plugins"
 arch=('i686' 'x86_64')
 license=('LGPL')


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

2015-03-11 Thread Evangelos Foutras
Date: Wednesday, March 11, 2015 @ 13:28:06
  Author: foutrelis
Revision: 129073

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

Added:
  cinelerra-cv/repos/community-staging-i686/
  cinelerra-cv/repos/community-staging-i686/PKGBUILD
(from rev 129072, cinelerra-cv/trunk/PKGBUILD)
  cinelerra-cv/repos/community-staging-i686/cinelerra-std_and_str_h.patch
(from rev 129072, cinelerra-cv/trunk/cinelerra-std_and_str_h.patch)
  cinelerra-cv/repos/community-staging-i686/ffmpeg2.0.patch
(from rev 129072, cinelerra-cv/trunk/ffmpeg2.0.patch)
  cinelerra-cv/repos/community-staging-i686/ffmpeg_api.patch
(from rev 129072, cinelerra-cv/trunk/ffmpeg_api.patch)
  cinelerra-cv/repos/community-staging-i686/v4l1_removal.patch
(from rev 129072, cinelerra-cv/trunk/v4l1_removal.patch)
  cinelerra-cv/repos/community-staging-x86_64/
  cinelerra-cv/repos/community-staging-x86_64/PKGBUILD
(from rev 129072, cinelerra-cv/trunk/PKGBUILD)
  cinelerra-cv/repos/community-staging-x86_64/cinelerra-std_and_str_h.patch
(from rev 129072, cinelerra-cv/trunk/cinelerra-std_and_str_h.patch)
  cinelerra-cv/repos/community-staging-x86_64/ffmpeg2.0.patch
(from rev 129072, cinelerra-cv/trunk/ffmpeg2.0.patch)
  cinelerra-cv/repos/community-staging-x86_64/ffmpeg_api.patch
(from rev 129072, cinelerra-cv/trunk/ffmpeg_api.patch)
  cinelerra-cv/repos/community-staging-x86_64/v4l1_removal.patch
(from rev 129072, cinelerra-cv/trunk/v4l1_removal.patch)

+
 community-staging-i686/PKGBUILD|  105 +
 community-staging-i686/cinelerra-std_and_str_h.patch   |   81 +++
 community-staging-i686/ffmpeg2.0.patch |   98 +
 community-staging-i686/ffmpeg_api.patch|  163 +++
 community-staging-i686/v4l1_removal.patch  |  125 +++
 community-staging-x86_64/PKGBUILD  |  105 +
 community-staging-x86_64/cinelerra-std_and_str_h.patch |   81 +++
 community-staging-x86_64/ffmpeg2.0.patch   |   98 +
 community-staging-x86_64/ffmpeg_api.patch  |  163 +++
 community-staging-x86_64/v4l1_removal.patch|  125 +++
 10 files changed, 1144 insertions(+)

Copied: cinelerra-cv/repos/community-staging-i686/PKGBUILD (from rev 129072, 
cinelerra-cv/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-03-11 12:28:06 UTC (rev 129073)
@@ -0,0 +1,105 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: Daniel J Griffiths 
+# Contributor: Jaroslaw Swierczynski 
+# Contributor: Alexander Rødseth 
+
+pkgname=cinelerra-cv
+pkgver=2.2
+_gitrel=2.2.0
+pkgrel=24
+epoch=1
+pkgdesc="Professional video editing and compositing environment"
+arch=('x86_64' 'i686')
+url="http://cinelerra.org/";
+license=('GPL')
+depends=('e2fsprogs' 'libavc1394' 'libiec61883' 'libxv'
+ 'libtiff' 'mjpegtools' 'fftw' 'a52dec' 'glu'
+ 'ffmpeg' 'faad2' 'faac' 'openexr>=2.0.0')
+makedepends=('git' 'nasm' 'mesa')
+source=("$pkgname::git+git://git.cinelerra-cv.org/CinelerraCV.git#branch=rel$_gitrel"
+'v4l1_removal.patch'
+'ffmpeg_api.patch'
+'ffmpeg2.0.patch'
+'cinelerra-std_and_str_h.patch')
+md5sums=('SKIP'
+ 'bfa85e20809429d88eba4ab83e569612'
+ 'b05ec2fb54e7d02f6167525417802111'
+ '14dd897084d64cd0b5e9caa8a69818bd'
+ '02d8222e596133bbc05eaad15bef242c')
+
+_confit() {
+  ./configure --prefix=/usr \
+  --with-buildinfo=git/recompile \
+  --with-external-ffmpeg \
+  --enable-opengl \
+  --disable-esd $@
+}
+
+prepare() {
+  cd "$srcdir/$pkgname"
+
+  ## Patches (oldest first) ##
+
+  # v4l1 removal patch
+  patch -Np1 -i "$srcdir/v4l1_removal.patch"
+
+  # ffmpeg api patch update for 0.11
+  patch -Np1 -i "$srcdir/ffmpeg_api.patch"
+
+  # fix some missing headers
+  patch -Np0 -i "$srcdir/cinelerra-std_and_str_h.patch"
+
+  # fix avcodec_alloc_context and alloc_open
+  patch -Np1 -i "$srcdir/ffmpeg2.0.patch"
+
+  ## Hacks ##
+
+  # if you don't need OpenGL comment out the next line (and no glu/mesa dep)
+  # TODO: check if this is still needed (pre-svn commit) --schiv
+  sed -i '/\/X11R6/s///' configure.in
+
+  # TODO: check if this is still needed (old commit; r29539 by ibiru) --schiv
+  sed -i -e '/Debian/d' admin/nasm
+
+  # fix some pngs that break with newer libpng
+  # see 
https://mailman.archlinux.org/pipermail/arch-dev-public/2013-May/024872.html
+  #msg2 "Fixing PNGs, please wait..."
+  #find -name '*.png' -exec optipng -quiet -force -fix {} +
+
+  # ffmpeg 2.0 related replacements
+  find -type f -exec sed -i 's/AVCODEC_MAX_AUDIO_FRAME_SIZE/192000/' {} \;
+  find -type f -exec sed -i 's/CodecID/AVCodecID/' {} \;
+}
+
+build() {
+

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

2015-03-11 Thread Evangelos Foutras
Date: Wednesday, March 11, 2015 @ 13:27:49
  Author: foutrelis
Revision: 129072

upgpkg: cinelerra-cv 1:2.2-24

libx264.so.144 rebuild.

Modified:
  cinelerra-cv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 11:55:22 UTC (rev 129071)
+++ PKGBUILD2015-03-11 12:27:49 UTC (rev 129072)
@@ -7,7 +7,7 @@
 pkgname=cinelerra-cv
 pkgver=2.2
 _gitrel=2.2.0
-pkgrel=23
+pkgrel=24
 epoch=1
 pkgdesc="Professional video editing and compositing environment"
 arch=('x86_64' 'i686')


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

2015-03-11 Thread Sven-Hendrik Haase
Date: Wednesday, March 11, 2015 @ 12:55:17
  Author: svenstaro
Revision: 129070

upgpkg: python-werkzeug 0.10-1

upstream release 0.10

Modified:
  python-werkzeug/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 11:50:47 UTC (rev 129069)
+++ PKGBUILD2015-03-11 11:55:17 UTC (rev 129070)
@@ -6,7 +6,7 @@
 # Contributor: Richard Murri
 
 pkgname=('python-werkzeug' 'python2-werkzeug')
-pkgver=0.9.6
+pkgver=0.10
 pkgrel=1
 pkgdesc='Swiss Army knife of Python web development'
 url='http://werkzeug.pocoo.org/'
@@ -14,7 +14,7 @@
 license=('custom:BSD')
 makedepends=('python-setuptools' 'python2-setuptools')
 
source=("http://pypi.python.org/packages/source/W/Werkzeug/Werkzeug-$pkgver.tar.gz";)
-sha256sums=('7f11e7e2e73eb22677cac1b3eb6106f66cedef13d140e83cf6563c90b79c')
+sha256sums=('9a97a6fcf87390172748da9e5250710b352dff18e979db925d276112cdcfa7ac')
 
 prepare() {
   cp -r "Werkzeug-$pkgver" "python-werkzeug-$pkgver"


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

2015-03-11 Thread Sven-Hendrik Haase
Date: Wednesday, March 11, 2015 @ 12:55:22
  Author: svenstaro
Revision: 129071

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-03-11 11:55:17 UTC (rev 129070)
+++ PKGBUILD2015-03-11 11:55:22 UTC (rev 129071)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Alexander Rødseth 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Dan Serban
-# Contributor: Richard Murri
-
-pkgname=('python-werkzeug' 'python2-werkzeug')
-pkgver=0.9.6
-pkgrel=1
-pkgdesc='Swiss Army knife of Python web development'
-url='http://werkzeug.pocoo.org/'
-arch=('any')
-license=('custom:BSD')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("http://pypi.python.org/packages/source/W/Werkzeug/Werkzeug-$pkgver.tar.gz";)
-sha256sums=('7f11e7e2e73eb22677cac1b3eb6106f66cedef13d140e83cf6563c90b79c')
-
-prepare() {
-  cp -r "Werkzeug-$pkgver" "python-werkzeug-$pkgver"
-  cp -r "Werkzeug-$pkgver" "python2-werkzeug-$pkgver"
-}
-
-build_python-werkzeug() {
-  cd "$pkgname-$pkgver"
-
-  python setup.py build
-}
-
-build_python2-werkzeug() {
-  cd "$pkgname-$pkgver"
-
-  python2 setup.py build
-}
-
-#check() {
-#  cd "python-werkzeug-$pkgver"
-#  python setup.py test || true
-#
-#  cd "python-werkzeug-$pkgver"
-#  p3ython2 setup.py test || true
-#}
-
-package_python-werkzeug() {
-  depends+=('python')
-  cd "$pkgname-$pkgver"
-
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-werkzeug() {
-  depends+=('python2')
-  cd "$pkgname-$pkgver"
-
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-werkzeug/repos/community-any/PKGBUILD (from rev 129070, 
python-werkzeug/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-03-11 11:55:22 UTC (rev 129071)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Alexander Rødseth 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Dan Serban
+# Contributor: Richard Murri
+
+pkgname=('python-werkzeug' 'python2-werkzeug')
+pkgver=0.10
+pkgrel=1
+pkgdesc='Swiss Army knife of Python web development'
+url='http://werkzeug.pocoo.org/'
+arch=('any')
+license=('custom:BSD')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("http://pypi.python.org/packages/source/W/Werkzeug/Werkzeug-$pkgver.tar.gz";)
+sha256sums=('9a97a6fcf87390172748da9e5250710b352dff18e979db925d276112cdcfa7ac')
+
+prepare() {
+  cp -r "Werkzeug-$pkgver" "python-werkzeug-$pkgver"
+  cp -r "Werkzeug-$pkgver" "python2-werkzeug-$pkgver"
+}
+
+build_python-werkzeug() {
+  cd "$pkgname-$pkgver"
+
+  python setup.py build
+}
+
+build_python2-werkzeug() {
+  cd "$pkgname-$pkgver"
+
+  python2 setup.py build
+}
+
+#check() {
+#  cd "python-werkzeug-$pkgver"
+#  python setup.py test || true
+#
+#  cd "python-werkzeug-$pkgver"
+#  p3ython2 setup.py test || true
+#}
+
+package_python-werkzeug() {
+  depends+=('python')
+  cd "$pkgname-$pkgver"
+
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-werkzeug() {
+  depends+=('python2')
+  cd "$pkgname-$pkgver"
+
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in freecol/repos/community-any (6 files)

2015-03-11 Thread Sven-Hendrik Haase
Date: Wednesday, March 11, 2015 @ 12:50:47
  Author: svenstaro
Revision: 129069

archrelease: copy trunk to community-any

Added:
  freecol/repos/community-any/PKGBUILD
(from rev 129068, freecol/trunk/PKGBUILD)
  freecol/repos/community-any/fc.desktop
(from rev 129068, freecol/trunk/fc.desktop)
  freecol/repos/community-any/fc.sh
(from rev 129068, freecol/trunk/fc.sh)
Deleted:
  freecol/repos/community-any/PKGBUILD
  freecol/repos/community-any/fc.desktop
  freecol/repos/community-any/fc.sh

+
 PKGBUILD   |   74 +--
 fc.desktop |   20 +++
 fc.sh  |   10 +++
 3 files changed, 52 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-03-11 11:50:43 UTC (rev 129068)
+++ PKGBUILD2015-03-11 11:50:47 UTC (rev 129069)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: TDY 
-# Contributor: Nelson Menon 
-
-pkgname=freecol
-pkgver=0.11.2
-pkgrel=1
-pkgdesc="A turn-based strategy game based on Colonization"
-arch=('any')
-url="http://www.freecol.org/";
-license=('GPL')
-depends=('java-runtime')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.zip
-fc.desktop
-fc.sh)
-md5sums=('ddd86dd9bf8f4411bd77dec8a66623ef'
- '55594d770904af3e3e3852d375085357'
- '5f8e99b4e5ab0e79895a31c6f5a15420')
-
-build() {
-  cd "$srcdir/$pkgname"
-}
-
-package() {
-  cd "$srcdir/$pkgname"
-
-  install -Dm644 FreeCol.jar "$pkgdir/usr/share/java/$pkgname/FreeCol.jar"
-  install -Dm644 FreeCol.pdf "$pkgdir/usr/share/doc/$pkgname/FreeCol.pdf"
-  install -Dm644 $pkgname.xpm "$pkgdir/usr/share/pixmaps/$pkgname.xpm"
-  install -Dm644 ../fc.desktop 
"$pkgdir/usr/share/applications/$pkgname.desktop"
-  install -Dm755 ../fc.sh "$pkgdir/usr/bin/$pkgname"
-
-  cp -r data jars "$pkgdir/usr/share/java/$pkgname/"
-  find "$pkgdir/usr/share/java/$pkgname" -type d -exec chmod 755 '{}' \;
-  find "$pkgdir/usr/share/java/$pkgname" -type f -exec chmod 644 '{}' \;
-}

Copied: freecol/repos/community-any/PKGBUILD (from rev 129068, 
freecol/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-03-11 11:50:47 UTC (rev 129069)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: TDY 
+# Contributor: Nelson Menon 
+
+pkgname=freecol
+pkgver=0.11.3
+pkgrel=1
+pkgdesc="A turn-based strategy game based on Colonization"
+arch=('any')
+url="http://www.freecol.org/";
+license=('GPL')
+depends=('java-runtime')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.zip
+fc.desktop
+fc.sh)
+md5sums=('ac2627c88357cbda29aee5b2494a3029'
+ '55594d770904af3e3e3852d375085357'
+ '5f8e99b4e5ab0e79895a31c6f5a15420')
+
+build() {
+  cd "$srcdir/$pkgname"
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+
+  install -Dm644 FreeCol.jar "$pkgdir/usr/share/java/$pkgname/FreeCol.jar"
+  install -Dm644 FreeCol.pdf "$pkgdir/usr/share/doc/$pkgname/FreeCol.pdf"
+  install -Dm644 $pkgname.xpm "$pkgdir/usr/share/pixmaps/$pkgname.xpm"
+  install -Dm644 ../fc.desktop 
"$pkgdir/usr/share/applications/$pkgname.desktop"
+  install -Dm755 ../fc.sh "$pkgdir/usr/bin/$pkgname"
+
+  cp -r data jars "$pkgdir/usr/share/java/$pkgname/"
+  find "$pkgdir/usr/share/java/$pkgname" -type d -exec chmod 755 '{}' \;
+  find "$pkgdir/usr/share/java/$pkgname" -type f -exec chmod 644 '{}' \;
+}

Deleted: fc.desktop
===
--- fc.desktop  2015-03-11 11:50:43 UTC (rev 129068)
+++ fc.desktop  2015-03-11 11:50:47 UTC (rev 129069)
@@ -1,10 +0,0 @@
-[Desktop Entry]
-Version=1.0
-Type=Application
-Name=FreeCol
-GenericName=Strategy Game
-Comment=A free Colonization clone
-TryExec=/usr/bin/freecol
-Exec=freecol
-Icon=/usr/share/pixmaps/freecol.xpm
-Categories=Game;StrategyGame;

Copied: freecol/repos/community-any/fc.desktop (from rev 129068, 
freecol/trunk/fc.desktop)
===
--- fc.desktop  (rev 0)
+++ fc.desktop  2015-03-11 11:50:47 UTC (rev 129069)
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Version=1.0
+Type=Application
+Name=FreeCol
+GenericName=Strategy Game
+Comment=A free Colonization clone
+TryExec=/usr/bin/freecol
+Exec=freecol
+Icon=/usr/share/pixmaps/freecol.xpm
+Categories=Game;StrategyGame;

Deleted: fc.sh
===
--- fc.sh   2015-03-11 11:50:43 UTC (rev 129068)
+++ fc.sh   2015-03-11 11:50:47 UTC (rev 129069)
@@ -1,5 +0,0 @@
-#!/bin/bash
-
-FC_PATH=/usr/share/java/freecol
-
-java -Xmx512M -jar $FC_PATH/FreeCol.jar "$@" --freecol-data $FC_PATH/data 
--no-intro

Copied: freecol/repos/community-any/fc.sh (from rev 129068, freecol/trunk/fc.sh)

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

2015-03-11 Thread Sven-Hendrik Haase
Date: Wednesday, March 11, 2015 @ 12:50:43
  Author: svenstaro
Revision: 129068

upgpkg: freecol 0.11.3-1

upstream release 11.3

Modified:
  freecol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 11:45:55 UTC (rev 129067)
+++ PKGBUILD2015-03-11 11:50:43 UTC (rev 129068)
@@ -4,7 +4,7 @@
 # Contributor: Nelson Menon 
 
 pkgname=freecol
-pkgver=0.11.2
+pkgver=0.11.3
 pkgrel=1
 pkgdesc="A turn-based strategy game based on Colonization"
 arch=('any')
@@ -14,7 +14,7 @@
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.zip
 fc.desktop
 fc.sh)
-md5sums=('ddd86dd9bf8f4411bd77dec8a66623ef'
+md5sums=('ac2627c88357cbda29aee5b2494a3029'
  '55594d770904af3e3e3852d375085357'
  '5f8e99b4e5ab0e79895a31c6f5a15420')
 


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

2015-03-11 Thread Dave Reisner
Date: Wednesday, March 11, 2015 @ 12:47:38
  Author: dreisner
Revision: 233347

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

Added:
  libssh2/repos/testing-i686/
  libssh2/repos/testing-i686/PKGBUILD
(from rev 233346, libssh2/trunk/PKGBUILD)
  libssh2/repos/testing-x86_64/
  libssh2/repos/testing-x86_64/PKGBUILD
(from rev 233346, libssh2/trunk/PKGBUILD)

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

Copied: libssh2/repos/testing-i686/PKGBUILD (from rev 233346, 
libssh2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-03-11 11:47:38 UTC (rev 233347)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Contributor: Angel Velasquez  
+# Contributor: Sergej Pupykin 
+# Contributor: Andrea Scarpino 
+# Contributor: ice-man 
+
+pkgname=libssh2
+pkgver=1.5.0
+pkgrel=1
+pkgdesc="A library implementing the SSH2 protocol as defined by Internet 
Drafts"
+url="http://www.libssh2.org/";
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('openssl')
+makedepends=('zlib')
+provides=('libssh2.so')
+validpgpkeys=('914C533DF9B2ADA2204F586D78E11C6B279D5C91')  # Daniel Stenberg
+source=("http://www.libssh2.org/download/$pkgname-$pkgver.tar.gz"{,.asc})
+md5sums=('e7fa3f5c6bd2d67a9b360ff726bbc6ba'
+ 'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: libssh2/repos/testing-x86_64/PKGBUILD (from rev 233346, 
libssh2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-03-11 11:47:38 UTC (rev 233347)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Contributor: Angel Velasquez  
+# Contributor: Sergej Pupykin 
+# Contributor: Andrea Scarpino 
+# Contributor: ice-man 
+
+pkgname=libssh2
+pkgver=1.5.0
+pkgrel=1
+pkgdesc="A library implementing the SSH2 protocol as defined by Internet 
Drafts"
+url="http://www.libssh2.org/";
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('openssl')
+makedepends=('zlib')
+provides=('libssh2.so')
+validpgpkeys=('914C533DF9B2ADA2204F586D78E11C6B279D5C91')  # Daniel Stenberg
+source=("http://www.libssh2.org/download/$pkgname-$pkgver.tar.gz"{,.asc})
+md5sums=('e7fa3f5c6bd2d67a9b360ff726bbc6ba'
+ 'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2015-03-11 Thread Dave Reisner
Date: Wednesday, March 11, 2015 @ 12:47:07
  Author: dreisner
Revision: 233346

upgpkg: libssh2 1.5.0-1

Modified:
  libssh2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 11:41:18 UTC (rev 233345)
+++ PKGBUILD2015-03-11 11:47:07 UTC (rev 233346)
@@ -6,8 +6,8 @@
 # Contributor: ice-man 
 
 pkgname=libssh2
-pkgver=1.4.3
-pkgrel=2
+pkgver=1.5.0
+pkgrel=1
 pkgdesc="A library implementing the SSH2 protocol as defined by Internet 
Drafts"
 url="http://www.libssh2.org/";
 arch=('i686' 'x86_64')
@@ -15,9 +15,10 @@
 depends=('openssl')
 makedepends=('zlib')
 provides=('libssh2.so')
+validpgpkeys=('914C533DF9B2ADA2204F586D78E11C6B279D5C91')  # Daniel Stenberg
 source=("http://www.libssh2.org/download/$pkgname-$pkgver.tar.gz"{,.asc})
-md5sums=('071004c60c5d6f90354ad1b701013a0b'
- 'bd01eca1e58c15233d69dae411dd2656')
+md5sums=('e7fa3f5c6bd2d67a9b360ff726bbc6ba'
+ 'SKIP')
 
 build() {
   cd "$pkgname-$pkgver"


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

2015-03-11 Thread Sven-Hendrik Haase
Date: Wednesday, March 11, 2015 @ 12:45:47
  Author: svenstaro
Revision: 129066

upgpkg: nbd 3.9.1-1

upstream release 3.9.1

Modified:
  nbd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 11:24:37 UTC (rev 129065)
+++ PKGBUILD2015-03-11 11:45:47 UTC (rev 129066)
@@ -5,7 +5,7 @@
 # Contributor: Gerhard Brauer 
 
 pkgname=nbd
-pkgver=3.9
+pkgver=3.9.1
 pkgrel=1
 pkgdesc="tools for network block devices, allowing you to use remote block 
devices over TCP/IP"
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 backup=('etc/nbd-server/config')
 depends=('glib2')
 install=nbd.install
-md5sums=('74698c6844387397983c97c56fd1336f'
+md5sums=('895e843129449fa3e6ad819bbcd6c1e2'
  '2d05d426b8c2708d5f8a0d028fcbae05'
  '5d1acc143018117174f79eff15afa038')
 


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

2015-03-11 Thread Sven-Hendrik Haase
Date: Wednesday, March 11, 2015 @ 12:45:55
  Author: svenstaro
Revision: 129067

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

Added:
  nbd/repos/community-i686/PKGBUILD
(from rev 129066, nbd/trunk/PKGBUILD)
  nbd/repos/community-i686/config
(from rev 129066, nbd/trunk/config)
  nbd/repos/community-i686/nbd.install
(from rev 129066, nbd/trunk/nbd.install)
  nbd/repos/community-i686/nbd.service
(from rev 129066, nbd/trunk/nbd.service)
  nbd/repos/community-x86_64/PKGBUILD
(from rev 129066, nbd/trunk/PKGBUILD)
  nbd/repos/community-x86_64/config
(from rev 129066, nbd/trunk/config)
  nbd/repos/community-x86_64/nbd.install
(from rev 129066, nbd/trunk/nbd.install)
  nbd/repos/community-x86_64/nbd.service
(from rev 129066, nbd/trunk/nbd.service)
Deleted:
  nbd/repos/community-i686/PKGBUILD
  nbd/repos/community-i686/config
  nbd/repos/community-i686/nbd.install
  nbd/repos/community-i686/nbd.service
  nbd/repos/community-x86_64/PKGBUILD
  nbd/repos/community-x86_64/config
  nbd/repos/community-x86_64/nbd.install
  nbd/repos/community-x86_64/nbd.service

--+
 /PKGBUILD|   80 +
 /config  |   66 +
 /nbd.install |   16 
 /nbd.service |   20 ++
 community-i686/PKGBUILD  |   40 
 community-i686/config|   33 
 community-i686/nbd.install   |8 
 community-i686/nbd.service   |   10 -
 community-x86_64/PKGBUILD|   40 
 community-x86_64/config  |   33 
 community-x86_64/nbd.install |8 
 community-x86_64/nbd.service |   10 -
 12 files changed, 182 insertions(+), 182 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-03-11 11:45:47 UTC (rev 129066)
+++ community-i686/PKGBUILD 2015-03-11 11:45:55 UTC (rev 129067)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Christian Hesse 
-# Contributor: Ionut Biru 
-# Contributor: Gerhard Brauer 
-
-pkgname=nbd
-pkgver=3.9
-pkgrel=1
-pkgdesc="tools for network block devices, allowing you to use remote block 
devices over TCP/IP"
-arch=('i686' 'x86_64')
-url="http://nbd.sourceforge.net";
-license=('GPL')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.xz
-   config nbd.service)
-backup=('etc/nbd-server/config')
-depends=('glib2')
-install=nbd.install
-md5sums=('74698c6844387397983c97c56fd1336f'
- '2d05d426b8c2708d5f8a0d028fcbae05'
- '5d1acc143018117174f79eff15afa038')
-
-build(){
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --enable-syslog 
--sbindir=/usr/bin
-
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-
-  install -D -m644 "${srcdir}"/config "${pkgdir}"/etc/nbd-server/config
-  install -D -m644 "${srcdir}"/nbd.service 
"${pkgdir}"/usr/lib/systemd/system/nbd.service
-
-  install -D -m644 doc/README "${pkgdir}"/usr/share/doc/nbd/README
-}

Copied: nbd/repos/community-i686/PKGBUILD (from rev 129066, nbd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-03-11 11:45:55 UTC (rev 129067)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Christian Hesse 
+# Contributor: Ionut Biru 
+# Contributor: Gerhard Brauer 
+
+pkgname=nbd
+pkgver=3.9.1
+pkgrel=1
+pkgdesc="tools for network block devices, allowing you to use remote block 
devices over TCP/IP"
+arch=('i686' 'x86_64')
+url="http://nbd.sourceforge.net";
+license=('GPL')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.xz
+   config nbd.service)
+backup=('etc/nbd-server/config')
+depends=('glib2')
+install=nbd.install
+md5sums=('895e843129449fa3e6ad819bbcd6c1e2'
+ '2d05d426b8c2708d5f8a0d028fcbae05'
+ '5d1acc143018117174f79eff15afa038')
+
+build(){
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr --sysconfdir=/etc --enable-syslog 
--sbindir=/usr/bin
+
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m644 "${srcdir}"/config "${pkgdir}"/etc/nbd-server/config
+  install -D -m644 "${srcdir}"/nbd.service 
"${pkgdir}"/usr/lib/systemd/system/nbd.service
+
+  install -D -m644 doc/README "${pkgdir}"/usr/share/doc/nbd/README
+}

Deleted: community-i686/config
===
--- community-i686/config   2015-03-11 11:45:47 UTC (rev 129066)
+++ community-i686/config   2015-03-11 11:45:55 UTC (rev 129067)
@@ -1,33 +0,0 @@
-[generic]
-   # The [generic] section is required, even if 

[arch-commits] Commit in qtcreator/repos (community-i686 community-x86_64)

2015-03-11 Thread Sven-Hendrik Haase
Date: Wednesday, March 11, 2015 @ 12:41:18
  Author: svenstaro
Revision: 233345

Remove derp

Deleted:
  qtcreator/repos/community-i686/
  qtcreator/repos/community-x86_64/


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

2015-03-11 Thread Sven-Hendrik Haase
Date: Wednesday, March 11, 2015 @ 12:40:32
  Author: svenstaro
Revision: 233344

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

Added:
  qtcreator/repos/extra-i686/PKGBUILD
(from rev 233343, qtcreator/trunk/PKGBUILD)
  qtcreator/repos/extra-i686/qtcreator.desktop
(from rev 233343, qtcreator/trunk/qtcreator.desktop)
  qtcreator/repos/extra-i686/qtcreator.install
(from rev 233343, qtcreator/trunk/qtcreator.install)
  qtcreator/repos/extra-x86_64/PKGBUILD
(from rev 233343, qtcreator/trunk/PKGBUILD)
  qtcreator/repos/extra-x86_64/qtcreator.desktop
(from rev 233343, qtcreator/trunk/qtcreator.desktop)
  qtcreator/repos/extra-x86_64/qtcreator.install
(from rev 233343, qtcreator/trunk/qtcreator.install)
Deleted:
  qtcreator/repos/extra-i686/PKGBUILD
  qtcreator/repos/extra-i686/qtcreator.desktop
  qtcreator/repos/extra-i686/qtcreator.install
  qtcreator/repos/extra-x86_64/PKGBUILD
  qtcreator/repos/extra-x86_64/qtcreator.desktop
  qtcreator/repos/extra-x86_64/qtcreator.install

+
 /PKGBUILD  |  134 +++
 /qtcreator.desktop |   18 +
 /qtcreator.install |   24 ++
 extra-i686/PKGBUILD|   67 ---
 extra-i686/qtcreator.desktop   |9 --
 extra-i686/qtcreator.install   |   12 ---
 extra-x86_64/PKGBUILD  |   67 ---
 extra-x86_64/qtcreator.desktop |9 --
 extra-x86_64/qtcreator.install |   12 ---
 9 files changed, 176 insertions(+), 176 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-03-11 11:39:37 UTC (rev 233343)
+++ extra-i686/PKGBUILD 2015-03-11 11:40:32 UTC (rev 233344)
@@ -1,67 +0,0 @@
-# $Id: PKGBUILD 101820 2013-12-02 00:06:01Z svenstaro $
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Imanol Celaya 
-# Contributor: Lukas Jirkovsky 
-# Contributor: Dan Vratil 
-# Contributor: thotypous 
-# Contributor: delor 
-
-pkgname=qtcreator
-pkgver=3.3.1
-_pkgver=v3.3.1
-pkgrel=1
-pkgdesc='Lightweight, cross-platform integrated development environment'
-arch=('i686' 'x86_64')
-url='http://qt-project.org'
-license=('LGPL')
-depends=('qt5-quick1' 'qt5-tools' 'qt5-quickcontrols')
-makedepends=('git' 'mesa' 'clang')
-options=('docs')
-optdepends=('qt5-doc: for the integrated Qt documentation'
-'gdb: for the debugger'
-'cmake: for cmake project support'
-'openssh-askpass: for ssh support'
-'git: for git support'
-'mercurial: for mercurial support'
-'bzr: for bazaar support'
-'clang: Clang code model'
-'valgrind: for analyze support')
-install=qtcreator.install
-source=("git+https://gitorious.org/qt-creator/qt-creator.git#tag=${_pkgver}";
-"git+https://gitorious.org/qt-labs/qbs.git";
-'qtcreator.desktop')
-md5sums=('SKIP'
- 'SKIP'
- '50880836fd62ccd87550940feb995f06')
-
-prepare() {
-  cd qt-creator
-  git submodule init
-  git config submodule.qbs.url $srcdir/qbs
-  git submodule update
-}
-
-build() {
-  [[ -d build ]] && rm -r build
-  mkdir build && cd build
-
-  LLVM_INSTALL_DIR=/usr qmake -r ../qt-creator/qtcreator.pro
-  make
-  make docs -j1
-}
-
-package() {
-  cd build
-
-  make INSTALL_ROOT="${pkgdir}/usr/" install
-  make INSTALL_ROOT="${pkgdir}/usr/" install_docs
-
-  # Workaround for FS#40583
-  mv "${pkgdir}"/usr/bin/qtcreator "${pkgdir}"/usr/bin/qtcreator-bin
-  echo "#!/bin/sh" > "${pkgdir}"/usr/bin/qtcreator
-  echo "QT_LOGGING_TO_CONSOLE=1 qtcreator-bin \$@" >> 
"${pkgdir}"/usr/bin/qtcreator
-  chmod +x "${pkgdir}"/usr/bin/qtcreator
-
-  install -Dm644 ${srcdir}/qtcreator.desktop 
${pkgdir}/usr/share/applications/qtcreator.desktop
-  install -Dm644 ${srcdir}/qt-creator/LGPL_EXCEPTION.TXT 
${pkgdir}/usr/share/licenses/qtcreator/LGPL_EXCEPTION.TXT
-}

Copied: qtcreator/repos/extra-i686/PKGBUILD (from rev 233343, 
qtcreator/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-03-11 11:40:32 UTC (rev 233344)
@@ -0,0 +1,67 @@
+# $Id: PKGBUILD 101820 2013-12-02 00:06:01Z svenstaro $
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Imanol Celaya 
+# Contributor: Lukas Jirkovsky 
+# Contributor: Dan Vratil 
+# Contributor: thotypous 
+# Contributor: delor 
+
+pkgname=qtcreator
+pkgver=3.3.2
+_pkgver=v3.3.2
+pkgrel=1
+pkgdesc='Lightweight, cross-platform integrated development environment'
+arch=('i686' 'x86_64')
+url='http://qt-project.org'
+license=('LGPL')
+depends=('qt5-quick1' 'qt5-tools' 'qt5-quickcontrols')
+makedepends=('git' 'mesa' 'clang')
+options=('docs')
+optdepends=('qt5-doc: for the integrated Qt documentation'
+'gdb: for the debugger'
+'cmake: for cmake project support'
+'openssh-askpass: for ssh support'
+'git: for g

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

2015-03-11 Thread Sven-Hendrik Haase
Date: Wednesday, March 11, 2015 @ 12:39:37
  Author: svenstaro
Revision: 233343

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

Added:
  qtcreator/repos/community-i686/
  qtcreator/repos/community-i686/PKGBUILD
(from rev 233342, qtcreator/trunk/PKGBUILD)
  qtcreator/repos/community-i686/qtcreator.desktop
(from rev 233342, qtcreator/trunk/qtcreator.desktop)
  qtcreator/repos/community-i686/qtcreator.install
(from rev 233342, qtcreator/trunk/qtcreator.install)
  qtcreator/repos/community-x86_64/
  qtcreator/repos/community-x86_64/PKGBUILD
(from rev 233342, qtcreator/trunk/PKGBUILD)
  qtcreator/repos/community-x86_64/qtcreator.desktop
(from rev 233342, qtcreator/trunk/qtcreator.desktop)
  qtcreator/repos/community-x86_64/qtcreator.install
(from rev 233342, qtcreator/trunk/qtcreator.install)

+
 community-i686/PKGBUILD|   67 +++
 community-i686/qtcreator.desktop   |9 
 community-i686/qtcreator.install   |   12 ++
 community-x86_64/PKGBUILD  |   67 +++
 community-x86_64/qtcreator.desktop |9 
 community-x86_64/qtcreator.install |   12 ++
 6 files changed, 176 insertions(+)

Copied: qtcreator/repos/community-i686/PKGBUILD (from rev 233342, 
qtcreator/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-03-11 11:39:37 UTC (rev 233343)
@@ -0,0 +1,67 @@
+# $Id: PKGBUILD 101820 2013-12-02 00:06:01Z svenstaro $
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Imanol Celaya 
+# Contributor: Lukas Jirkovsky 
+# Contributor: Dan Vratil 
+# Contributor: thotypous 
+# Contributor: delor 
+
+pkgname=qtcreator
+pkgver=3.3.2
+_pkgver=v3.3.2
+pkgrel=1
+pkgdesc='Lightweight, cross-platform integrated development environment'
+arch=('i686' 'x86_64')
+url='http://qt-project.org'
+license=('LGPL')
+depends=('qt5-quick1' 'qt5-tools' 'qt5-quickcontrols')
+makedepends=('git' 'mesa' 'clang')
+options=('docs')
+optdepends=('qt5-doc: for the integrated Qt documentation'
+'gdb: for the debugger'
+'cmake: for cmake project support'
+'openssh-askpass: for ssh support'
+'git: for git support'
+'mercurial: for mercurial support'
+'bzr: for bazaar support'
+'clang: Clang code model'
+'valgrind: for analyze support')
+install=qtcreator.install
+source=("git+https://gitorious.org/qt-creator/qt-creator.git#tag=${_pkgver}";
+"git+https://gitorious.org/qt-labs/qbs.git";
+'qtcreator.desktop')
+md5sums=('SKIP'
+ 'SKIP'
+ '50880836fd62ccd87550940feb995f06')
+
+prepare() {
+  cd qt-creator
+  git submodule init
+  git config submodule.qbs.url $srcdir/qbs
+  git submodule update
+}
+
+build() {
+  [[ -d build ]] && rm -r build
+  mkdir build && cd build
+
+  LLVM_INSTALL_DIR=/usr qmake -r ../qt-creator/qtcreator.pro
+  make
+  make docs -j1
+}
+
+package() {
+  cd build
+
+  make INSTALL_ROOT="${pkgdir}/usr/" install
+  make INSTALL_ROOT="${pkgdir}/usr/" install_docs
+
+  # Workaround for FS#40583
+  mv "${pkgdir}"/usr/bin/qtcreator "${pkgdir}"/usr/bin/qtcreator-bin
+  echo "#!/bin/sh" > "${pkgdir}"/usr/bin/qtcreator
+  echo "QT_LOGGING_TO_CONSOLE=1 qtcreator-bin \$@" >> 
"${pkgdir}"/usr/bin/qtcreator
+  chmod +x "${pkgdir}"/usr/bin/qtcreator
+
+  install -Dm644 ${srcdir}/qtcreator.desktop 
${pkgdir}/usr/share/applications/qtcreator.desktop
+  install -Dm644 ${srcdir}/qt-creator/LGPL_EXCEPTION.TXT 
${pkgdir}/usr/share/licenses/qtcreator/LGPL_EXCEPTION.TXT
+}

Copied: qtcreator/repos/community-i686/qtcreator.desktop (from rev 233342, 
qtcreator/trunk/qtcreator.desktop)
===
--- community-i686/qtcreator.desktop(rev 0)
+++ community-i686/qtcreator.desktop2015-03-11 11:39:37 UTC (rev 233343)
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Exec=/usr/bin/qtcreator
+Name=Qt Creator
+GenericName=C++ IDE
+X-KDE-StartupNotify=true
+Icon=QtProject-qtcreator.png
+Terminal=false
+Type=Application
+Categories=Qt;Development;

Copied: qtcreator/repos/community-i686/qtcreator.install (from rev 233342, 
qtcreator/trunk/qtcreator.install)
===
--- community-i686/qtcreator.install(rev 0)
+++ community-i686/qtcreator.install2015-03-11 11:39:37 UTC (rev 233343)
@@ -0,0 +1,12 @@
+post_install() {
+update-desktop-database -q
+gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: qtcreator/repos/community-x86_64/PKGBUILD (from rev 233342, 
qtcreator/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   

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

2015-03-11 Thread Sven-Hendrik Haase
Date: Wednesday, March 11, 2015 @ 12:39:20
  Author: svenstaro
Revision: 233342

upgpkg: qtcreator 3.3.2-1

upstream release 3.2.2

Modified:
  qtcreator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 09:49:11 UTC (rev 233341)
+++ PKGBUILD2015-03-11 11:39:20 UTC (rev 233342)
@@ -7,8 +7,8 @@
 # Contributor: delor 
 
 pkgname=qtcreator
-pkgver=3.3.1
-_pkgver=v3.3.1
+pkgver=3.3.2
+_pkgver=v3.3.2
 pkgrel=1
 pkgdesc='Lightweight, cross-platform integrated development environment'
 arch=('i686' 'x86_64')


[arch-commits] Commit in perl-test-deep/repos/community-any (PKGBUILD PKGBUILD)

2015-03-11 Thread Sergej Pupykin
Date: Wednesday, March 11, 2015 @ 12:24:37
  Author: spupykin
Revision: 129065

archrelease: copy trunk to community-any

Added:
  perl-test-deep/repos/community-any/PKGBUILD
(from rev 129064, perl-test-deep/trunk/PKGBUILD)
Deleted:
  perl-test-deep/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-03-11 11:24:28 UTC (rev 129064)
+++ PKGBUILD2015-03-11 11:24:37 UTC (rev 129065)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Francois Charette 
-
-pkgname=perl-test-deep
-pkgver=0.113
-pkgrel=1
-pkgdesc="Extremely flexible deep comparison "
-arch=('any')
-url="http://search.cpan.org/dist/Test-Deep";
-license=('GPL' 'PerlArtistic')
-depends=('perl-test-nowarnings' 'perl-test-tester')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Test-Deep-$pkgver.tar.gz)
-md5sums=('1b68990b46afee0ad89f2d6b86ea4114')
-
-build() {
-  cd  $srcdir/Test-Deep-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  $srcdir/Test-Deep-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-test-deep/repos/community-any/PKGBUILD (from rev 129064, 
perl-test-deep/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-03-11 11:24:37 UTC (rev 129065)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Francois Charette 
+
+pkgname=perl-test-deep
+pkgver=0.115
+pkgrel=1
+pkgdesc="Extremely flexible deep comparison "
+arch=('any')
+url="http://search.cpan.org/dist/Test-Deep";
+license=('GPL' 'PerlArtistic')
+depends=('perl-test-nowarnings' 'perl-test-tester')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Test-Deep-$pkgver.tar.gz)
+md5sums=('63bf86f7cddb09320c846acb1a1ec263')
+
+build() {
+  cd  $srcdir/Test-Deep-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  $srcdir/Test-Deep-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}


[arch-commits] Commit in perl-email-send/trunk (PKGBUILD)

2015-03-11 Thread Sergej Pupykin
Date: Wednesday, March 11, 2015 @ 12:24:17
  Author: spupykin
Revision: 129062

upgpkg: perl-email-send 2.201-1

upd

Modified:
  perl-email-send/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 11:24:14 UTC (rev 129061)
+++ PKGBUILD2015-03-11 11:24:17 UTC (rev 129062)
@@ -3,8 +3,8 @@
 # Contributor: Sergej Pupykin 
 
 pkgname=perl-email-send
-pkgver=2.199
-pkgrel=2
+pkgver=2.201
+pkgrel=1
 pkgdesc="simply sending email"
 arch=('any')
 url="http://search.cpan.org/dist/Email-Send";
@@ -13,7 +13,7 @@
 'perl-module-pluggable')
 options=('!emptydirs')
 source=(http://www.cpan.org/authors/id/R/RJ/RJBS/Email-Send-$pkgver.tar.gz)
-md5sums=('1865147aa1f63bb65bef8e4edc20a29d')
+md5sums=('cde13222a2d4b56f3b3c13ae72b5c5b7')
 
 build() {
   cd  $srcdir/Email-Send-$pkgver


[arch-commits] Commit in perl-email-send/repos/community-any (PKGBUILD PKGBUILD)

2015-03-11 Thread Sergej Pupykin
Date: Wednesday, March 11, 2015 @ 12:24:25
  Author: spupykin
Revision: 129063

archrelease: copy trunk to community-any

Added:
  perl-email-send/repos/community-any/PKGBUILD
(from rev 129062, perl-email-send/trunk/PKGBUILD)
Deleted:
  perl-email-send/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-03-11 11:24:17 UTC (rev 129062)
+++ PKGBUILD2015-03-11 11:24:25 UTC (rev 129063)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Sergej Pupykin 
-
-pkgname=perl-email-send
-pkgver=2.199
-pkgrel=2
-pkgdesc="simply sending email"
-arch=('any')
-url="http://search.cpan.org/dist/Email-Send";
-license=('GPL' 'PerlArtistic')
-depends=('perl-email-address>=1.80' 'perl-email-simple>=1.92' 
'perl-return-value>=1.28'
-'perl-module-pluggable')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/R/RJ/RJBS/Email-Send-$pkgver.tar.gz)
-md5sums=('1865147aa1f63bb65bef8e4edc20a29d')
-
-build() {
-  cd  $srcdir/Email-Send-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  $srcdir/Email-Send-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-email-send/repos/community-any/PKGBUILD (from rev 129062, 
perl-email-send/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-03-11 11:24:25 UTC (rev 129063)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sergej Pupykin 
+
+pkgname=perl-email-send
+pkgver=2.201
+pkgrel=1
+pkgdesc="simply sending email"
+arch=('any')
+url="http://search.cpan.org/dist/Email-Send";
+license=('GPL' 'PerlArtistic')
+depends=('perl-email-address>=1.80' 'perl-email-simple>=1.92' 
'perl-return-value>=1.28'
+'perl-module-pluggable')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/R/RJ/RJBS/Email-Send-$pkgver.tar.gz)
+md5sums=('cde13222a2d4b56f3b3c13ae72b5c5b7')
+
+build() {
+  cd  $srcdir/Email-Send-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  $srcdir/Email-Send-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}


[arch-commits] Commit in perl-test-deep/trunk (PKGBUILD)

2015-03-11 Thread Sergej Pupykin
Date: Wednesday, March 11, 2015 @ 12:24:28
  Author: spupykin
Revision: 129064

upgpkg: perl-test-deep 0.115-1

upd

Modified:
  perl-test-deep/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 11:24:25 UTC (rev 129063)
+++ PKGBUILD2015-03-11 11:24:28 UTC (rev 129064)
@@ -3,7 +3,7 @@
 # Contributor: Francois Charette 
 
 pkgname=perl-test-deep
-pkgver=0.113
+pkgver=0.115
 pkgrel=1
 pkgdesc="Extremely flexible deep comparison "
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('perl-test-nowarnings' 'perl-test-tester')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Test-Deep-$pkgver.tar.gz)
-md5sums=('1b68990b46afee0ad89f2d6b86ea4114')
+md5sums=('63bf86f7cddb09320c846acb1a1ec263')
 
 build() {
   cd  $srcdir/Test-Deep-$pkgver


[arch-commits] Commit in perl-email-mime/repos/community-any (PKGBUILD PKGBUILD)

2015-03-11 Thread Sergej Pupykin
Date: Wednesday, March 11, 2015 @ 12:24:14
  Author: spupykin
Revision: 129061

archrelease: copy trunk to community-any

Added:
  perl-email-mime/repos/community-any/PKGBUILD
(from rev 129060, perl-email-mime/trunk/PKGBUILD)
Deleted:
  perl-email-mime/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-03-11 11:24:06 UTC (rev 129060)
+++ PKGBUILD2015-03-11 11:24:14 UTC (rev 129061)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Sergej Pupykin 
-
-pkgname=perl-email-mime
-pkgver=1.928
-pkgrel=1
-pkgdesc="Easy MIME message parsing"
-arch=('any')
-url="http://search.cpan.org/dist/Email-MIME";
-license=('GPL' 'PerlArtistic')
-depends=('perl-email-mime-encodings>=1.3' 'perl-mime-types>=1.13'
-'perl-email-simple>=2.003' 'perl-email-mime-contenttype>=1.011'
-'perl-email-messageid')
-provides=("perl-email-mime-creator=$pkgver" "perl-email-mime-modifier=$pkgver")
-replaces=("perl-email-mime-creator" "perl-email-mime-modifier")
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/R/RJ/RJBS/Email-MIME-$pkgver.tar.gz)
-md5sums=('3d5d8b4651f74ce08e9e598d0a92be5c')
-
-build() {
-  cd  $srcdir/Email-MIME-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package(){
-  cd  $srcdir/Email-MIME-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-email-mime/repos/community-any/PKGBUILD (from rev 129060, 
perl-email-mime/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-03-11 11:24:14 UTC (rev 129061)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sergej Pupykin 
+
+pkgname=perl-email-mime
+pkgver=1.929
+pkgrel=1
+pkgdesc="Easy MIME message parsing"
+arch=('any')
+url="http://search.cpan.org/dist/Email-MIME";
+license=('GPL' 'PerlArtistic')
+depends=('perl-email-mime-encodings>=1.3' 'perl-mime-types>=1.13'
+'perl-email-simple>=2.003' 'perl-email-mime-contenttype>=1.011'
+'perl-email-messageid')
+provides=("perl-email-mime-creator=$pkgver" "perl-email-mime-modifier=$pkgver")
+replaces=("perl-email-mime-creator" "perl-email-mime-modifier")
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/R/RJ/RJBS/Email-MIME-$pkgver.tar.gz)
+md5sums=('3766d7ec87740dd9318b2d36368401ea')
+
+build() {
+  cd  $srcdir/Email-MIME-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package(){
+  cd  $srcdir/Email-MIME-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}


[arch-commits] Commit in perl-email-address/trunk (PKGBUILD)

2015-03-11 Thread Sergej Pupykin
Date: Wednesday, March 11, 2015 @ 12:23:54
  Author: spupykin
Revision: 129058

upgpkg: perl-email-address 1.907-1

upd

Modified:
  perl-email-address/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 11:23:52 UTC (rev 129057)
+++ PKGBUILD2015-03-11 11:23:54 UTC (rev 129058)
@@ -3,7 +3,7 @@
 # Contributor: Sergej Pupykin 
 
 pkgname=perl-email-address
-pkgver=1.905
+pkgver=1.907
 pkgrel=1
 pkgdesc="RFC 2822 Address Parsing and Creation "
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('perl')
 options=('!emptydirs')
 
source=("http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Email-Address-$pkgver.tar.gz";)
-md5sums=('3ed17b42a797bbc0103eabbb2d130766')
+md5sums=('2257bc32a338196fef4f4bcb76cd1eb1')
 
 build() {
   cd  $srcdir/Email-Address-$pkgver


[arch-commits] Commit in perl-email-address/repos/community-any (PKGBUILD PKGBUILD)

2015-03-11 Thread Sergej Pupykin
Date: Wednesday, March 11, 2015 @ 12:24:03
  Author: spupykin
Revision: 129059

archrelease: copy trunk to community-any

Added:
  perl-email-address/repos/community-any/PKGBUILD
(from rev 129058, perl-email-address/trunk/PKGBUILD)
Deleted:
  perl-email-address/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-03-11 11:23:54 UTC (rev 129058)
+++ PKGBUILD2015-03-11 11:24:03 UTC (rev 129059)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Sergej Pupykin 
-
-pkgname=perl-email-address
-pkgver=1.905
-pkgrel=1
-pkgdesc="RFC 2822 Address Parsing and Creation "
-arch=('any')
-url="http://search.cpan.org/dist/Email-Address";
-license=('GPL' 'PerlArtistic')
-depends=('perl')
-options=('!emptydirs')
-source=("http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Email-Address-$pkgver.tar.gz";)
-md5sums=('3ed17b42a797bbc0103eabbb2d130766')
-
-build() {
-  cd  $srcdir/Email-Address-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  $srcdir/Email-Address-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-email-address/repos/community-any/PKGBUILD (from rev 129058, 
perl-email-address/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-03-11 11:24:03 UTC (rev 129059)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sergej Pupykin 
+
+pkgname=perl-email-address
+pkgver=1.907
+pkgrel=1
+pkgdesc="RFC 2822 Address Parsing and Creation "
+arch=('any')
+url="http://search.cpan.org/dist/Email-Address";
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+options=('!emptydirs')
+source=("http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Email-Address-$pkgver.tar.gz";)
+md5sums=('2257bc32a338196fef4f4bcb76cd1eb1')
+
+build() {
+  cd  $srcdir/Email-Address-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  $srcdir/Email-Address-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}


[arch-commits] Commit in perl-email-mime/trunk (PKGBUILD)

2015-03-11 Thread Sergej Pupykin
Date: Wednesday, March 11, 2015 @ 12:24:06
  Author: spupykin
Revision: 129060

upgpkg: perl-email-mime 1.929-1

upd

Modified:
  perl-email-mime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 11:24:03 UTC (rev 129059)
+++ PKGBUILD2015-03-11 11:24:06 UTC (rev 129060)
@@ -3,7 +3,7 @@
 # Contributor: Sergej Pupykin 
 
 pkgname=perl-email-mime
-pkgver=1.928
+pkgver=1.929
 pkgrel=1
 pkgdesc="Easy MIME message parsing"
 arch=('any')
@@ -16,7 +16,7 @@
 replaces=("perl-email-mime-creator" "perl-email-mime-modifier")
 options=('!emptydirs')
 source=(http://www.cpan.org/authors/id/R/RJ/RJBS/Email-MIME-$pkgver.tar.gz)
-md5sums=('3d5d8b4651f74ce08e9e598d0a92be5c')
+md5sums=('3766d7ec87740dd9318b2d36368401ea')
 
 build() {
   cd  $srcdir/Email-MIME-$pkgver


[arch-commits] Commit in perl-email-abstract/repos/community-any (PKGBUILD PKGBUILD)

2015-03-11 Thread Sergej Pupykin
Date: Wednesday, March 11, 2015 @ 12:23:52
  Author: spupykin
Revision: 129057

archrelease: copy trunk to community-any

Added:
  perl-email-abstract/repos/community-any/PKGBUILD
(from rev 129056, perl-email-abstract/trunk/PKGBUILD)
Deleted:
  perl-email-abstract/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-03-11 11:23:44 UTC (rev 129056)
+++ PKGBUILD2015-03-11 11:23:52 UTC (rev 129057)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Sergej Pupykin 
-
-pkgname=perl-email-abstract
-pkgver=3.007
-pkgrel=1
-pkgdesc="unified interface to mail representations"
-arch=('any')
-url="http://search.cpan.org/dist/Email-Abstract";
-license=('GPL' 'PerlArtistic')
-depends=('perl-email-simple>=1.91')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Email-Abstract-$pkgver.tar.gz)
-md5sums=('a1e9d40882ee32cf5e329297aba9e3ed')
-
-build() {
-  cd  $srcdir/Email-Abstract-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  $srcdir/Email-Abstract-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-email-abstract/repos/community-any/PKGBUILD (from rev 129056, 
perl-email-abstract/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-03-11 11:23:52 UTC (rev 129057)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sergej Pupykin 
+
+pkgname=perl-email-abstract
+pkgver=3.008
+pkgrel=1
+pkgdesc="unified interface to mail representations"
+arch=('any')
+url="http://search.cpan.org/dist/Email-Abstract";
+license=('GPL' 'PerlArtistic')
+depends=('perl-email-simple>=1.91')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Email-Abstract-$pkgver.tar.gz)
+md5sums=('dbfc069ffb5f8c96989bf62f0df5d756')
+
+build() {
+  cd  $srcdir/Email-Abstract-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  $srcdir/Email-Abstract-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}


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

2015-03-11 Thread Sergej Pupykin
Date: Wednesday, March 11, 2015 @ 12:23:41
  Author: spupykin
Revision: 129055

archrelease: copy trunk to community-any

Added:
  perl-chart/repos/community-any/PKGBUILD
(from rev 129054, perl-chart/trunk/PKGBUILD)
Deleted:
  perl-chart/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-03-11 11:23:30 UTC (rev 129054)
+++ PKGBUILD2015-03-11 11:23:41 UTC (rev 129055)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Sergej Pupykin 
-
-pkgname=perl-chart
-pkgver=2.4.6
-pkgrel=2
-pkgdesc="Business chart widget collection"
-arch=('any')
-url="http://search.cpan.org/dist/Chart";
-license=('GPL' 'PerlArtistic')
-depends=('perl-gd>=1.2')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/C/CH/CHARTGRP/Chart-$pkgver.tar.gz)
-md5sums=('dfcd2b72c56491aa7fc45cd18236de70')
-
-build() {
-  cd  $srcdir/Chart-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  $srcdir/Chart-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-chart/repos/community-any/PKGBUILD (from rev 129054, 
perl-chart/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-03-11 11:23:41 UTC (rev 129055)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sergej Pupykin 
+
+pkgname=perl-chart
+pkgver=2.4.10
+pkgrel=1
+pkgdesc="Business chart widget collection"
+arch=('any')
+url="http://search.cpan.org/dist/Chart";
+license=('GPL' 'PerlArtistic')
+depends=('perl-gd>=1.2')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/C/CH/CHARTGRP/Chart-$pkgver.tar.gz)
+md5sums=('f493c2b3c4594e92716b956a367cc93a')
+
+build() {
+  cd  $srcdir/Chart-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  $srcdir/Chart-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}


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

2015-03-11 Thread Sergej Pupykin
Date: Wednesday, March 11, 2015 @ 12:23:30
  Author: spupykin
Revision: 129054

upgpkg: perl-chart 2.4.10-1

upd

Modified:
  perl-chart/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 11:10:10 UTC (rev 129053)
+++ PKGBUILD2015-03-11 11:23:30 UTC (rev 129054)
@@ -3,8 +3,8 @@
 # Contributor: Sergej Pupykin 
 
 pkgname=perl-chart
-pkgver=2.4.6
-pkgrel=2
+pkgver=2.4.10
+pkgrel=1
 pkgdesc="Business chart widget collection"
 arch=('any')
 url="http://search.cpan.org/dist/Chart";
@@ -12,7 +12,7 @@
 depends=('perl-gd>=1.2')
 options=('!emptydirs')
 source=(http://www.cpan.org/authors/id/C/CH/CHARTGRP/Chart-$pkgver.tar.gz)
-md5sums=('dfcd2b72c56491aa7fc45cd18236de70')
+md5sums=('f493c2b3c4594e92716b956a367cc93a')
 
 build() {
   cd  $srcdir/Chart-$pkgver


[arch-commits] Commit in perl-email-abstract/trunk (PKGBUILD)

2015-03-11 Thread Sergej Pupykin
Date: Wednesday, March 11, 2015 @ 12:23:44
  Author: spupykin
Revision: 129056

upgpkg: perl-email-abstract 3.008-1

upd

Modified:
  perl-email-abstract/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 11:23:41 UTC (rev 129055)
+++ PKGBUILD2015-03-11 11:23:44 UTC (rev 129056)
@@ -3,7 +3,7 @@
 # Contributor: Sergej Pupykin 
 
 pkgname=perl-email-abstract
-pkgver=3.007
+pkgver=3.008
 pkgrel=1
 pkgdesc="unified interface to mail representations"
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('perl-email-simple>=1.91')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Email-Abstract-$pkgver.tar.gz)
-md5sums=('a1e9d40882ee32cf5e329297aba9e3ed')
+md5sums=('dbfc069ffb5f8c96989bf62f0df5d756')
 
 build() {
   cd  $srcdir/Email-Abstract-$pkgver


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

2015-03-11 Thread Sven-Hendrik Haase
Date: Wednesday, March 11, 2015 @ 12:10:10
  Author: svenstaro
Revision: 129053

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

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

+
 /PKGBUILD  |   56 +++
 /texstudio.install |   30 ++
 community-i686/PKGBUILD|   28 -
 community-i686/texstudio.install   |   15 -
 community-x86_64/PKGBUILD  |   28 -
 community-x86_64/texstudio.install |   15 -
 6 files changed, 86 insertions(+), 86 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-03-11 11:10:01 UTC (rev 129052)
+++ community-i686/PKGBUILD 2015-03-11 11:10:10 UTC (rev 129053)
@@ -1,28 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Clément DEMOULINS 
-
-pkgname=texstudio
-pkgver=2.8.8
-pkgrel=1
-pkgdesc="Integrated writing environment for creating LaTeX documents"
-arch=('i686' 'x86_64')
-url="http://texstudio.sourceforge.net/";
-license=('GPL')
-depends=('poppler-qt4')
-optdepends=('evince: pdf reader', 'okular: alternate pdf reader')
-replaces=('texmakerx')
-install=$pkgname.install
-
-source=(http://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%20${pkgver}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('9f7e837078ce345fb6c2b55f6dbfb97c')
-
-build() {
-cd "$srcdir/$pkgname$pkgver"
-qmake-qt4 CONFIG-="debug" texstudio.pro
-make
-}
-
-package() {
-cd "$srcdir/$pkgname$pkgver"
-make INSTALL_ROOT="$pkgdir" install
-}

Copied: texstudio/repos/community-i686/PKGBUILD (from rev 129052, 
texstudio/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-03-11 11:10:10 UTC (rev 129053)
@@ -0,0 +1,28 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Clément DEMOULINS 
+
+pkgname=texstudio
+pkgver=2.9.0
+pkgrel=1
+pkgdesc="Integrated writing environment for creating LaTeX documents"
+arch=('i686' 'x86_64')
+url="http://texstudio.sourceforge.net/";
+license=('GPL')
+depends=('poppler-qt4')
+optdepends=('evince: pdf reader', 'okular: alternate pdf reader')
+replaces=('texmakerx')
+install=$pkgname.install
+
+source=(http://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%20${pkgver}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('2eff83fdf55ed5918f6b1de4b86c53d1')
+
+build() {
+cd "$srcdir/$pkgname$pkgver"
+qmake-qt4 CONFIG-="debug" texstudio.pro
+make
+}
+
+package() {
+cd "$srcdir/$pkgname$pkgver"
+make INSTALL_ROOT="$pkgdir" install
+}

Deleted: community-i686/texstudio.install
===
--- community-i686/texstudio.install2015-03-11 11:10:01 UTC (rev 129052)
+++ community-i686/texstudio.install2015-03-11 11:10:10 UTC (rev 129053)
@@ -1,15 +0,0 @@
-pkgname=texstudio
-
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install "$1"
-}
-
-post_remove() {
-  update-desktop-database -q
-}
-
-# vim:set ts=2 sw=2 et:

Copied: texstudio/repos/community-i686/texstudio.install (from rev 129052, 
texstudio/trunk/texstudio.install)
===
--- community-i686/texstudio.install(rev 0)
+++ community-i686/texstudio.install2015-03-11 11:10:10 UTC (rev 129053)
@@ -0,0 +1,15 @@
+pkgname=texstudio
+
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install "$1"
+}
+
+post_remove() {
+  update-desktop-database -q
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-03-11 11:10:01 UTC (rev 129052)
+++ community-x86_64/PKGBUILD   2015-03-11 11:10:10 UTC (rev 129053)
@@ -1,28 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Clément DEMOULINS 
-
-pkgname=texstudio
-pkgver=2.8.8
-pkgrel=1
-pkgdesc="Integrated writing environment for creating LaTeX documents"
-arch=('i686' 'x86_64')
-url="http://texstudio.sourceforge.net/";
-license=('GPL')
-depends=('poppler-qt4')
-optdepends=('evince: pdf reader', 'okular: alternate pdf reader')
-replaces=('texmakerx')

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

2015-03-11 Thread Sven-Hendrik Haase
Date: Wednesday, March 11, 2015 @ 12:10:01
  Author: svenstaro
Revision: 129052

upgpkg: texstudio 2.9.0-1

upstream release 2.9.0

Modified:
  texstudio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 07:36:41 UTC (rev 129051)
+++ PKGBUILD2015-03-11 11:10:01 UTC (rev 129052)
@@ -2,7 +2,7 @@
 # Contributor: Clément DEMOULINS 
 
 pkgname=texstudio
-pkgver=2.8.8
+pkgver=2.9.0
 pkgrel=1
 pkgdesc="Integrated writing environment for creating LaTeX documents"
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 install=$pkgname.install
 
 
source=(http://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%20${pkgver}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('9f7e837078ce345fb6c2b55f6dbfb97c')
+md5sums=('2eff83fdf55ed5918f6b1de4b86c53d1')
 
 build() {
 cd "$srcdir/$pkgname$pkgver"


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

2015-03-11 Thread Evangelos Foutras
Date: Wednesday, March 11, 2015 @ 10:49:11
  Author: foutrelis
Revision: 233341

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

Added:
  chromium/repos/extra-i686/PKGBUILD
(from rev 233340, chromium/trunk/PKGBUILD)
  chromium/repos/extra-i686/chromium-webkit-buffer-overflow.patch
(from rev 233340, chromium/trunk/chromium-webkit-buffer-overflow.patch)
  chromium/repos/extra-i686/chromium.default
(from rev 233340, chromium/trunk/chromium.default)
  chromium/repos/extra-i686/chromium.desktop
(from rev 233340, chromium/trunk/chromium.desktop)
  chromium/repos/extra-i686/chromium.install
(from rev 233340, chromium/trunk/chromium.install)
  chromium/repos/extra-i686/chromium.sh
(from rev 233340, chromium/trunk/chromium.sh)
  chromium/repos/extra-x86_64/PKGBUILD
(from rev 233340, chromium/trunk/PKGBUILD)
  chromium/repos/extra-x86_64/chromium-webkit-buffer-overflow.patch
(from rev 233340, chromium/trunk/chromium-webkit-buffer-overflow.patch)
  chromium/repos/extra-x86_64/chromium.default
(from rev 233340, chromium/trunk/chromium.default)
  chromium/repos/extra-x86_64/chromium.desktop
(from rev 233340, chromium/trunk/chromium.desktop)
  chromium/repos/extra-x86_64/chromium.install
(from rev 233340, chromium/trunk/chromium.install)
  chromium/repos/extra-x86_64/chromium.sh
(from rev 233340, chromium/trunk/chromium.sh)
Deleted:
  chromium/repos/extra-i686/PKGBUILD
  chromium/repos/extra-i686/chromium-webkit-buffer-overflow.patch
  chromium/repos/extra-i686/chromium.default
  chromium/repos/extra-i686/chromium.desktop
  chromium/repos/extra-i686/chromium.install
  chromium/repos/extra-i686/chromium.sh
  chromium/repos/extra-x86_64/PKGBUILD
  chromium/repos/extra-x86_64/chromium-webkit-buffer-overflow.patch
  chromium/repos/extra-x86_64/chromium.default
  chromium/repos/extra-x86_64/chromium.desktop
  chromium/repos/extra-x86_64/chromium.install
  chromium/repos/extra-x86_64/chromium.sh

+
 /PKGBUILD  |  396 +++
 /chromium-webkit-buffer-overflow.patch |   46 ++
 /chromium.default  |8 
 /chromium.desktop  |  226 ++
 /chromium.install  |   24 +
 /chromium.sh   |   50 ++
 extra-i686/PKGBUILD|  198 -
 extra-i686/chromium-webkit-buffer-overflow.patch   |   23 -
 extra-i686/chromium.default|4 
 extra-i686/chromium.desktop|  113 -
 extra-i686/chromium.install|   12 
 extra-i686/chromium.sh |   25 -
 extra-x86_64/PKGBUILD  |  198 -
 extra-x86_64/chromium-webkit-buffer-overflow.patch |   23 -
 extra-x86_64/chromium.default  |4 
 extra-x86_64/chromium.desktop  |  113 -
 extra-x86_64/chromium.install  |   12 
 extra-x86_64/chromium.sh   |   25 -
 18 files changed, 750 insertions(+), 750 deletions(-)

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


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

2015-03-11 Thread Evangelos Foutras
Date: Wednesday, March 11, 2015 @ 10:48:48
  Author: foutrelis
Revision: 233340

upgpkg: chromium 41.0.2272.89-1

New upstream release.

Modified:
  chromium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 07:33:12 UTC (rev 29)
+++ PKGBUILD2015-03-11 09:48:48 UTC (rev 233340)
@@ -5,7 +5,7 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=chromium
-pkgver=41.0.2272.76
+pkgver=41.0.2272.89
 pkgrel=1
 pkgdesc="The open-source project behind Google Chrome, an attempt at creating 
a safer, faster, and more stable browser"
 arch=('i686' 'x86_64')
@@ -30,7 +30,7 @@
 chromium.default
 chromium.sh
 chromium-webkit-buffer-overflow.patch)
-sha256sums=('31e2ae88ad4604e79dbcf7258f66106bd51e88413ebda6a1b1d181967535cd8a'
+sha256sums=('93474277cefcf59973e0a65449178b891a4a3b6e84bec6b149e45f74b1675de9'
 '09bfac44104f4ccda4c228053f689c947b3e97da9a4ab6fa34ce061ee83d0322'
 '478340d5760a9bd6c549e19b1b5d1c5b4933ebf5f8cfb2b3e2d70d07443fe232'
 'db3a2ea59c64f5aa4618a385b9db0ac488e900664126af578676b5f09939f9f6'


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

2015-03-11 Thread Laurent Carlier
Date: Wednesday, March 11, 2015 @ 08:36:35
  Author: lcarlier
Revision: 129050

upgpkg: lib32-libx11 1.6.3-1

upstream update 1.6.3

Modified:
  lib32-libx11/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 07:21:34 UTC (rev 129049)
+++ PKGBUILD2015-03-11 07:36:35 UTC (rev 129050)
@@ -3,7 +3,7 @@
 
 _pkgbasename=libx11
 pkgname=lib32-$_pkgbasename
-pkgver=1.6.2
+pkgver=1.6.3
 pkgrel=1
 pkgdesc="X11 client-side library (32-bit)"
 arch=(x86_64)
@@ -12,8 +12,10 @@
 makedepends=('xorg-util-macros' 'xextproto' 'xtrans' 'inputproto' 
'gcc-multilib')
 options=('!libtool')
 license=('custom:XFREE86')
-source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2)
-sha256sums=('2aa027e837231d2eeea90f3a4afe19948a6eb4c8b2bec0241eba7dbc8106bd16')
+source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2{,.sig})
+sha256sums=('cf31a7c39f2f52e8ebd0db95640384e63451f9b014eed2bb7f5de03e8adc8111'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E')
 
 build() {
   export CC="gcc -m32"


[arch-commits] Commit in lib32-libx11/repos (2 files)

2015-03-11 Thread Laurent Carlier
Date: Wednesday, March 11, 2015 @ 08:36:41
  Author: lcarlier
Revision: 129051

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-libx11/repos/multilib-testing-x86_64/
  lib32-libx11/repos/multilib-testing-x86_64/PKGBUILD
(from rev 129050, lib32-libx11/trunk/PKGBUILD)

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

Copied: lib32-libx11/repos/multilib-testing-x86_64/PKGBUILD (from rev 129050, 
lib32-libx11/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2015-03-11 07:36:41 UTC (rev 129051)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+_pkgbasename=libx11
+pkgname=lib32-$_pkgbasename
+pkgver=1.6.3
+pkgrel=1
+pkgdesc="X11 client-side library (32-bit)"
+arch=(x86_64)
+url="http://xorg.freedesktop.org/";
+depends=('lib32-libxcb' $_pkgbasename)
+makedepends=('xorg-util-macros' 'xextproto' 'xtrans' 'inputproto' 
'gcc-multilib')
+options=('!libtool')
+license=('custom:XFREE86')
+source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2{,.sig})
+sha256sums=('cf31a7c39f2f52e8ebd0db95640384e63451f9b014eed2bb7f5de03e8adc8111'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E')
+
+build() {
+  export CC="gcc -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  cd "${srcdir}/libX11-${pkgver}"
+  ./configure --prefix=/usr --disable-static --disable-xf86bigfont \
+  --libdir=/usr/lib32 --disable-specs
+  make
+}
+
+check() {
+  cd "${srcdir}/libX11-${pkgver}"
+
+  make check
+}
+
+package() {
+  cd "${srcdir}/libX11-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  rm -rf "${pkgdir}"/usr/{include,share}
+
+  mkdir -p "$pkgdir/usr/share/licenses"
+  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
+}


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

2015-03-11 Thread Laurent Carlier
Date: Wednesday, March 11, 2015 @ 08:33:12
  Author: lcarlier
Revision: 29

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

Added:
  libx11/repos/testing-i686/
  libx11/repos/testing-i686/PKGBUILD
(from rev 28, libx11/trunk/PKGBUILD)
  libx11/repos/testing-i686/fix_typo.diff
(from rev 28, libx11/trunk/fix_typo.diff)
  libx11/repos/testing-x86_64/
  libx11/repos/testing-x86_64/PKGBUILD
(from rev 28, libx11/trunk/PKGBUILD)
  libx11/repos/testing-x86_64/fix_typo.diff
(from rev 28, libx11/trunk/fix_typo.diff)

--+
 testing-i686/PKGBUILD|   36 
 testing-i686/fix_typo.diff   |   27 +++
 testing-x86_64/PKGBUILD  |   36 
 testing-x86_64/fix_typo.diff |   27 +++
 4 files changed, 126 insertions(+)

Copied: libx11/repos/testing-i686/PKGBUILD (from rev 28, 
libx11/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-03-11 07:33:12 UTC (rev 29)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot 
+
+pkgname=libx11
+pkgver=1.6.3
+pkgrel=1
+pkgdesc="X11 client-side library"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+depends=('libxcb' 'xproto' 'kbproto')
+makedepends=('xorg-util-macros' 'xextproto' 'xtrans' 'inputproto')
+license=('custom')
+source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2{,.sig})
+sha256sums=('cf31a7c39f2f52e8ebd0db95640384e63451f9b014eed2bb7f5de03e8adc8111'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E')
+
+build() {
+  cd "${srcdir}/libX11-${pkgver}"
+  ./configure --prefix=/usr --disable-static --disable-xf86bigfont
+  make
+}
+
+check() {
+  cd "${srcdir}/libX11-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/libX11-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Copied: libx11/repos/testing-i686/fix_typo.diff (from rev 28, 
libx11/trunk/fix_typo.diff)
===
--- testing-i686/fix_typo.diff  (rev 0)
+++ testing-i686/fix_typo.diff  2015-03-11 07:33:12 UTC (rev 29)
@@ -0,0 +1,27 @@
+From 5dcb40f28d59587597d2ff6e6ac64c71cfe6ff7b Mon Sep 17 00:00:00 2001
+From: James Cloos 
+Date: Tue, 17 Sep 2013 16:50:42 +
+Subject: nls/en_US.UTF-8/Compose.pre: Fix typo.
+
+Fix typo added in 215ce6a67863, s/actute/acute/.
+
+Fixes bug #69476.  Reported by Jean Krohn.
+
+Signed-off-by: James Cloos 
+---
+diff --git a/nls/en_US.UTF-8/Compose.pre b/nls/en_US.UTF-8/Compose.pre
+index a741332..7314d7f 100644
+--- a/nls/en_US.UTF-8/Compose.pre
 b/nls/en_US.UTF-8/Compose.pre
+@@ -743,7 +743,7 @@ XCOMM Part 3
+   : "ï"   idiaeresis # LATIN SMALL LETTER 
I WITH DIAERESIS
+  : "ï"   idiaeresis # LATIN SMALL LETTER 
I WITH DIAERESIS
+  : "ï"   idiaeresis # LATIN SMALL LETTER 
I WITH DIAERESIS
+-  : "j́"# LATIN SMALL LETTER J U006A 
with COMBINING ACUTE ACCENT U0301
++   : "j́"# LATIN SMALL LETTER J U006A 
with COMBINING ACUTE ACCENT U0301
+ : "j́"# LATIN SMALL LETTER J U006A 
with COMBINING ACUTE ACCENT U0301
+ : "j́"# LATIN SMALL LETTER J U006A 
with COMBINING ACUTE ACCENT U0301
+  : "j́"# LATIN SMALL LETTER J U006A 
with COMBINING ACUTE ACCENT U0301
+--
+cgit v0.9.0.2-2-gbebe
+

Copied: libx11/repos/testing-x86_64/PKGBUILD (from rev 28, 
libx11/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-03-11 07:33:12 UTC (rev 29)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot 
+
+pkgname=libx11
+pkgver=1.6.3
+pkgrel=1
+pkgdesc="X11 client-side library"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+depends=('libxcb' 'xproto' 'kbproto')
+makedepends=('xorg-util-macros' 'xextproto' 'xtrans' 'inputproto')
+license=('custom')
+source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2{,.sig})
+sha256sums=('cf31a7c39f2f52e8ebd0db95640384e63451f9b014eed2bb7f5de03e8adc8111'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E')
+
+build() {
+  cd "${srcdir}/libX11-${pkgver}"
+  ./configure --prefix=/usr --disable-static --disable-xf86bigfont
+  make
+}
+
+check() {
+  cd "${srcdir}/libX11-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/libX11-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/

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

2015-03-11 Thread Laurent Carlier
Date: Wednesday, March 11, 2015 @ 08:33:04
  Author: lcarlier
Revision: 28

upgpkg: libx11 1.6.3-1

upstream update 1.6.3

Modified:
  libx11/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 07:19:57 UTC (rev 27)
+++ PKGBUILD2015-03-11 07:33:04 UTC (rev 28)
@@ -3,8 +3,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=libx11
-pkgver=1.6.2
-pkgrel=2
+pkgver=1.6.3
+pkgrel=1
 pkgdesc="X11 client-side library"
 arch=(i686 x86_64)
 url="http://xorg.freedesktop.org/";
@@ -11,17 +11,11 @@
 depends=('libxcb' 'xproto' 'kbproto')
 makedepends=('xorg-util-macros' 'xextproto' 'xtrans' 'inputproto')
 license=('custom')
-source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2
-fix_typo.diff)
-sha256sums=('2aa027e837231d2eeea90f3a4afe19948a6eb4c8b2bec0241eba7dbc8106bd16'
-'384a10e57e0d6125ebb7e6eaca046e02f59e8101eaa7ba470e52b5bcc18bedf3')
+source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2{,.sig})
+sha256sums=('cf31a7c39f2f52e8ebd0db95640384e63451f9b014eed2bb7f5de03e8adc8111'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E')
 
-prepare() {
-  cd "${srcdir}/libX11-${pkgver}"
-  # upstream patch for https://bugs.archlinux.org/task/40537
-  patch -Np1 -i ${srcdir}/fix_typo.diff
-}
-
 build() {
   cd "${srcdir}/libX11-${pkgver}"
   ./configure --prefix=/usr --disable-static --disable-xf86bigfont


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

2015-03-11 Thread Antonio Rojas
Date: Wednesday, March 11, 2015 @ 08:21:34
  Author: arojas
Revision: 129049

Really remove patch

Modified:
  sage-mathematics/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 07:19:30 UTC (rev 129048)
+++ PKGBUILD2015-03-11 07:21:34 UTC (rev 129049)
@@ -29,7 +29,7 @@
 makedepends=('cython2' 'boost' 'scons' 'ratpoints' 'symmetrica' 'fflas-ffpack' 
'python2-jinja' 'coin-or-cbc' 'mcqd' 'libfes' 'coxeter3'
   'cryptominisat')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/sagemath/sage/archive/$pkgver.tar.gz";
 "http://www.sagemath.org/packages/upstream/pexpect/pexpect-2.0.tar.bz2";
-'anal.h' 'package.patch' 'c_lib.patch' 'env.patch' 'paths.patch' 'blas.patch' 
'clean.patch' 'skip-check.patch'
+'anal.h' 'package.patch' 'c_lib.patch' 'env.patch' 'paths.patch' 'clean.patch' 
'skip-check.patch'
 'pexpect-env.patch' 'pexpect-del.patch' 'fes02.patch' 'tests_parallel.patch' 
'ipython3.patch')
 md5sums=('5a173b1ecce89c845626653cfb3d199f'
  'd9a3e113ed147dcee8f89962a8dccd43'


[arch-commits] Commit in nfs-utils/repos (22 files)

2015-03-11 Thread Tobias Powalowski
Date: Wednesday, March 11, 2015 @ 08:19:57
  Author: tpowa
Revision: 27

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

Added:
  nfs-utils/repos/testing-i686/
  nfs-utils/repos/testing-i686/PKGBUILD
(from rev 26, nfs-utils/trunk/PKGBUILD)
  nfs-utils/repos/testing-i686/exports
(from rev 26, nfs-utils/trunk/exports)
  nfs-utils/repos/testing-i686/id_resolver.conf
(from rev 26, nfs-utils/trunk/id_resolver.conf)
  nfs-utils/repos/testing-i686/nfs-common.conf
(from rev 26, nfs-utils/trunk/nfs-common.conf)
  nfs-utils/repos/testing-i686/nfs-server.conf
(from rev 26, nfs-utils/trunk/nfs-server.conf)
  nfs-utils/repos/testing-i686/nfs-utils-1.3.2-statd-bg.patch
(from rev 26, nfs-utils/trunk/nfs-utils-1.3.2-statd-bg.patch)
  nfs-utils/repos/testing-i686/nfs-utils-1.3.2-statd-nowait.patch
(from rev 26, nfs-utils/trunk/nfs-utils-1.3.2-statd-nowait.patch)
  nfs-utils/repos/testing-i686/nfs-utils.conf
(from rev 26, nfs-utils/trunk/nfs-utils.conf)
  nfs-utils/repos/testing-i686/nfs-utils.install
(from rev 26, nfs-utils/trunk/nfs-utils.install)
  nfs-utils/repos/testing-i686/nfs-utils_env.sh
(from rev 26, nfs-utils/trunk/nfs-utils_env.sh)
  nfs-utils/repos/testing-x86_64/
  nfs-utils/repos/testing-x86_64/PKGBUILD
(from rev 26, nfs-utils/trunk/PKGBUILD)
  nfs-utils/repos/testing-x86_64/exports
(from rev 26, nfs-utils/trunk/exports)
  nfs-utils/repos/testing-x86_64/id_resolver.conf
(from rev 26, nfs-utils/trunk/id_resolver.conf)
  nfs-utils/repos/testing-x86_64/nfs-common.conf
(from rev 26, nfs-utils/trunk/nfs-common.conf)
  nfs-utils/repos/testing-x86_64/nfs-server.conf
(from rev 26, nfs-utils/trunk/nfs-server.conf)
  nfs-utils/repos/testing-x86_64/nfs-utils-1.3.2-statd-bg.patch
(from rev 26, nfs-utils/trunk/nfs-utils-1.3.2-statd-bg.patch)
  nfs-utils/repos/testing-x86_64/nfs-utils-1.3.2-statd-nowait.patch
(from rev 26, nfs-utils/trunk/nfs-utils-1.3.2-statd-nowait.patch)
  nfs-utils/repos/testing-x86_64/nfs-utils.conf
(from rev 26, nfs-utils/trunk/nfs-utils.conf)
  nfs-utils/repos/testing-x86_64/nfs-utils.install
(from rev 26, nfs-utils/trunk/nfs-utils.install)
  nfs-utils/repos/testing-x86_64/nfs-utils_env.sh
(from rev 26, nfs-utils/trunk/nfs-utils_env.sh)

---+
 testing-i686/PKGBUILD |   94 
 testing-i686/exports  |   12 ++
 testing-i686/id_resolver.conf |9 +
 testing-i686/nfs-common.conf  |   22 
 testing-i686/nfs-server.conf  |   17 +++
 testing-i686/nfs-utils-1.3.2-statd-bg.patch   |   25 +
 testing-i686/nfs-utils-1.3.2-statd-nowait.patch   |   35 +++
 testing-i686/nfs-utils.conf   |1 
 testing-i686/nfs-utils.install|   28 +
 testing-i686/nfs-utils_env.sh |   20 
 testing-x86_64/PKGBUILD   |   94 
 testing-x86_64/exports|   12 ++
 testing-x86_64/id_resolver.conf   |9 +
 testing-x86_64/nfs-common.conf|   22 
 testing-x86_64/nfs-server.conf|   17 +++
 testing-x86_64/nfs-utils-1.3.2-statd-bg.patch |   25 +
 testing-x86_64/nfs-utils-1.3.2-statd-nowait.patch |   35 +++
 testing-x86_64/nfs-utils.conf |1 
 testing-x86_64/nfs-utils.install  |   28 +
 testing-x86_64/nfs-utils_env.sh   |   20 
 20 files changed, 526 insertions(+)

Copied: nfs-utils/repos/testing-i686/PKGBUILD (from rev 26, 
nfs-utils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-03-11 07:19:57 UTC (rev 27)
@@ -0,0 +1,94 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Maintainer: Tobias Powalowski 
+# Contributor: John Proctor 
+# Contributor: dibblethewrecker 
+# Contributor: abelstr 
+# Contributor: Marco Lima 
+
+pkgname=nfs-utils
+pkgver=1.3.2
+pkgrel=6
+pkgdesc="Support programs for Network File Systems"
+arch=('i686' 'x86_64')
+url='http://nfs.sourceforge.net'
+license=('GPL2')
+backup=(etc/{exports,nfsmount.conf} 
etc/conf.d/{nfs-common.conf,nfs-server.conf})
+depends=('rpcbind' 'librpcsecgss>=0.19-2' 'nfsidmap' 'gssproxy' 
+ 'libevent>=2.0.10' 'device-mapper')
+makedepends=('sqlite')
+source=(http://downloads.sourceforge.net/project/nfs/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.{bz2,sign}
+nfs-common.conf nfs-server.conf exports nfs-utils.conf id_resolver.conf
+nfs-utils_env.sh
+nfs-utils-1.3.2-statd-bg.patch
+nfs-utils-1.3.2-statd-nowait.patch)
+install=nfs-utils.install
+optdepends=('sqlite: for nfsdcltrack usage'
+

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

2015-03-11 Thread Tobias Powalowski
Date: Wednesday, March 11, 2015 @ 08:19:35
  Author: tpowa
Revision: 26

upgpkg: nfs-utils 1.3.2-6

move python2 depend to optdepends

Modified:
  nfs-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 07:18:07 UTC (rev 25)
+++ PKGBUILD2015-03-11 07:19:35 UTC (rev 26)
@@ -24,7 +24,7 @@
 nfs-utils-1.3.2-statd-nowait.patch)
 install=nfs-utils.install
 optdepends=('sqlite: for nfsdcltrack usage'
-   ('python2: for nfsiostat and mountstats usage')
+'python2: for nfsiostat and mountstats usage')
 md5sums=('1e2f3c1ed468dee02d00c534c002ea10'
  'SKIP'
  '95129639a19da1f262d4eb3ac73e0bdb'


[arch-commits] Commit in sage-mathematics/trunk (PKGBUILD blas.patch)

2015-03-11 Thread Antonio Rojas
Date: Wednesday, March 11, 2015 @ 08:19:30
  Author: arojas
Revision: 129048

- Use new ipython2-notebook virtual package in depends
- Remove no longer needed patch

Modified:
  sage-mathematics/trunk/PKGBUILD
Deleted:
  sage-mathematics/trunk/blas.patch

+
 PKGBUILD   |   10 --
 blas.patch |   30 --
 2 files changed, 4 insertions(+), 36 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 06:53:43 UTC (rev 129047)
+++ PKGBUILD2015-03-11 07:19:30 UTC (rev 129048)
@@ -20,8 +20,8 @@
   'sage-data-combinatorial_designs' 'sage-data-elliptic_curves' 
'sage-data-graphs' 'sage-data-polytopes_db' 'sage-data-conway_polynomials')
 optdepends=('cython2: to compile cython code' 'jmol: 3D plots' 'sage-notebook: 
Browser-based (flask) notebook interface'
   'sage-mathematics-doc: Documentation and inline help' 'sage-mathematics-src: 
source files needed to build cython code'
-  'python2-pyzmq: IPython notebook' 'python2-tornado: IPython notebook' 
'python2-jinja: IPython notebook' 'python2-jsonschema: IPython notebook'
-  'mathjax: IPython notebook'  'coin-or-cbc: COIN backend for numerical 
computations' 'nauty: for generating some classes of graphs'
+  'ipython2-notebook: IPython notebook interface'  'mathjax: IPython notebook 
interface'
+  'coin-or-cbc: COIN backend for numerical computations' 'nauty: for 
generating some classes of graphs'
   'buckygen: for generating fullerene graphs' 'plantri: for generating some 
classes of graphs' 'benzene: for generating fusenes and benzenoids'
   'libfes: exhaustive search of solutions for boolean polynomial systems'
   'lrs: Algorithms for linear reverse search used in game theory and for 
computing volume of polytopes'
@@ -38,7 +38,6 @@
  '5216dbb3d80cecc8ec4a36cc9706f8b5'
  '563bc42699116d71ca6b06b9f149304e'
  'acc25f13728517badafa70d220ab7b8e'
- 'eee444d32b8a818a67b1e0ce0850b8bb'
  '46c212a3a6713b0f78c370c7186d0982'
  '5947a420a0b1483f0cbc74c76895789b'
  'a83a3b1bc7fcb7cbf752a83a8311fc42'
@@ -64,9 +63,8 @@
   patch -p0 -i "$srcdir"/env.patch
 # fix paths in python imports
   patch -p0 -i "$srcdir"/paths.patch
-# fix linking to blas/cblas
-  patch -p0 -i "$srcdir"/blas.patch
-  sed -e "s|cblas(), atlas(),|'cblas', 'blas',|" -i src/sage/misc/cython.py
+# fix cython linking
+  sed -e "s| atlas(),||" -i src/sage/misc/cython.py
 # don't try to remove installed files
   patch -p0 -i "$srcdir"/clean.patch
 # skip checking build status

Deleted: blas.patch
===
--- blas.patch  2015-03-11 06:53:43 UTC (rev 129047)
+++ blas.patch  2015-03-11 07:19:30 UTC (rev 129048)
@@ -1,30 +0,0 @@
 src/module_list.py.orig2014-11-12 20:34:01.861234916 +0100
-+++ src/module_list.py 2014-11-12 20:35:39.411508934 +0100
-@@ -10,25 +10,8 @@
- ### BLAS setup
- #
- 
--## Choose cblas library -- note -- make sure to update sage/misc/cython.py
--## if you change this!!
--if os.environ.has_key('SAGE_BLAS'):
--BLAS=os.environ['SAGE_BLAS']
--BLAS2=os.environ['SAGE_BLAS']
--elif os.path.exists('%s/lib/libatlas.so'%os.environ['SAGE_LOCAL']):
--BLAS='cblas'
--BLAS2='atlas'
--elif os.path.exists('/usr/lib/libcblas.dylib') or \
-- os.path.exists('/usr/lib/libcblas.so'):
--BLAS='cblas'
--BLAS2='cblas'
--elif os.path.exists('/usr/lib/libblas.dll.a'):
--BLAS='gslcblas'
--BLAS2='gslcblas'
--else:
--# This is very slow  (?), but *guaranteed* to be available.
--BLAS='gslcblas'
--BLAS2='gslcblas'
-+BLAS='blas'
-+BLAS2='cblas'
- 
- 
- #


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

2015-03-11 Thread Tobias Powalowski
Date: Wednesday, March 11, 2015 @ 08:18:07
  Author: tpowa
Revision: 25

upgpkg: nfs-utils 1.3.2-6

move python2 depend to optdepends

Modified:
  nfs-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-11 02:01:56 UTC (rev 24)
+++ PKGBUILD2015-03-11 07:18:07 UTC (rev 25)
@@ -8,7 +8,7 @@
 
 pkgname=nfs-utils
 pkgver=1.3.2
-pkgrel=5
+pkgrel=6
 pkgdesc="Support programs for Network File Systems"
 arch=('i686' 'x86_64')
 url='http://nfs.sourceforge.net'
@@ -15,7 +15,7 @@
 license=('GPL2')
 backup=(etc/{exports,nfsmount.conf} 
etc/conf.d/{nfs-common.conf,nfs-server.conf})
 depends=('rpcbind' 'librpcsecgss>=0.19-2' 'nfsidmap' 'gssproxy' 
- 'libevent>=2.0.10' 'device-mapper' 'python2')
+ 'libevent>=2.0.10' 'device-mapper')
 makedepends=('sqlite')
 
source=(http://downloads.sourceforge.net/project/nfs/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.{bz2,sign}
 nfs-common.conf nfs-server.conf exports nfs-utils.conf id_resolver.conf
@@ -23,7 +23,8 @@
 nfs-utils-1.3.2-statd-bg.patch
 nfs-utils-1.3.2-statd-nowait.patch)
 install=nfs-utils.install
-optdepends=('sqlite: for nfsdcltrack usage')
+optdepends=('sqlite: for nfsdcltrack usage'
+   ('python2: for nfsiostat and mountstats usage')
 md5sums=('1e2f3c1ed468dee02d00c534c002ea10'
  'SKIP'
  '95129639a19da1f262d4eb3ac73e0bdb'