[arch-commits] Commit in python-astroid/repos (staging-any staging-any/PKGBUILD)

2015-09-21 Thread Felix Yan
Date: Monday, September 21, 2015 @ 08:01:44
  Author: fyan
Revision: 247022

archrelease: copy trunk to staging-any

Added:
  python-astroid/repos/staging-any/
  python-astroid/repos/staging-any/PKGBUILD
(from rev 247021, python-astroid/trunk/PKGBUILD)

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

Copied: python-astroid/repos/staging-any/PKGBUILD (from rev 247021, 
python-astroid/trunk/PKGBUILD)
===
--- staging-any/PKGBUILD(rev 0)
+++ staging-any/PKGBUILD2015-09-21 06:01:44 UTC (rev 247022)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+
+pkgbase=python-astroid
+pkgname=('python2-astroid' 'python-astroid')
+pkgver=1.3.8.20150919
+_commit=21f676e1e04042dfebd0024161a2cff72c53
+pkgrel=1
+pkgdesc="Useful miscellaneous modules used by Logilab projects"
+arch=('any')
+url="https://bitbucket.org/logilab/astroid;
+license=('LGPL')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six' 'mercurial'
+ 'python-lazy-object-proxy' 'python2-lazy-object-proxy' 
'python-wrapt' 'python2-wrapt'
+ 'python2-singledispatch')
+source=("hg+https://bitbucket.org/logilab/astroid#revision=$_commit;)
+sha1sums=('SKIP')
+
+prepare() {
+  cp -a astroid{,-py2}
+}
+
+build() {
+  cd astroid
+  python setup.py build
+
+  cd ../astroid-py2
+  python2 setup.py build
+}
+
+check() {
+  cd astroid
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -Wi -m unittest discover -s 
build/lib/astroid/tests -p "unittest*.py"
+
+  cd ../astroid-py2
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -Wi -m unittest discover -s 
build/lib/astroid/tests -p "unittest*.py"
+}
+
+package_python-astroid() {
+  depends=('python-six' 'python-lazy-object-proxy' 'python-wrapt')
+  replaces=('python-logilab-astng')
+  conflicts=('python-logilab-astng')
+
+  cd astroid
+
+  python setup.py install --optimize=1 --skip-build --prefix=/usr 
--root="${pkgdir}"
+}
+
+package_python2-astroid() {
+  depends=('python2-six' 'python2-lazy-object-proxy' 'python2-wrapt' 
'python2-singledispatch')
+  replaces=('python2-logilab-astng')
+  conflicts=('python2-logilab-astng')
+
+  cd astroid-py2
+
+  python2 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root="${pkgdir}"
+}


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

2015-09-21 Thread Felix Yan
Date: Monday, September 21, 2015 @ 08:01:29
  Author: fyan
Revision: 247021

upgpkg: python-astroid 1.3.8.20150919-1

Modified:
  python-astroid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 05:51:25 UTC (rev 247020)
+++ PKGBUILD2015-09-21 06:01:29 UTC (rev 247021)
@@ -4,53 +4,55 @@
 
 pkgbase=python-astroid
 pkgname=('python2-astroid' 'python-astroid')
-pkgver=1.3.6
+pkgver=1.3.8.20150919
+_commit=21f676e1e04042dfebd0024161a2cff72c53
 pkgrel=1
 pkgdesc="Useful miscellaneous modules used by Logilab projects"
 arch=('any')
 url="https://bitbucket.org/logilab/astroid;
 license=('LGPL')
-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=('bcf21cfa9891c70f63a9730b792ce9cf8ea3bb2b')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six' 'mercurial'
+ 'python-lazy-object-proxy' 'python2-lazy-object-proxy' 
'python-wrapt' 'python2-wrapt'
+ 'python2-singledispatch')
+source=("hg+https://bitbucket.org/logilab/astroid#revision=$_commit;)
+sha1sums=('SKIP')
 
 prepare() {
-  cp -a astroid-${pkgver}{,-py3}
+  cp -a astroid{,-py2}
 }
 
 build() {
-  cd astroid-${pkgver}
+  cd astroid
+  python setup.py build
+
+  cd ../astroid-py2
   python2 setup.py build
-
-  cd ../astroid-${pkgver}-py3
-  python3 setup.py build
 }
 
 check() {
-  cd astroid-${pkgver}
-  PYTHONPATH="$PWD/../build/lib:$PYTHONPATH" python2 -Wi -m unittest discover 
-s build/lib/astroid/tests -p "unittest*.py"
+  cd astroid
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -Wi -m unittest discover -s 
build/lib/astroid/tests -p "unittest*.py"
 
-  cd ../astroid-${pkgver}-py3
-  PYTHONPATH="$PWD/../build/lib:$PYTHONPATH" python -Wi -m unittest discover 
-s build/lib/astroid/tests -p "unittest*.py"
+  cd ../astroid-py2
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -Wi -m unittest discover -s 
build/lib/astroid/tests -p "unittest*.py"
 }
 
+package_python-astroid() {
+  depends=('python-six' 'python-lazy-object-proxy' 'python-wrapt')
+  replaces=('python-logilab-astng')
+  conflicts=('python-logilab-astng')
+
+  cd astroid
+
+  python setup.py install --optimize=1 --skip-build --prefix=/usr 
--root="${pkgdir}"
+}
+
 package_python2-astroid() {
-  depends=('python2-logilab-common' 'python2-six')
+  depends=('python2-six' 'python2-lazy-object-proxy' 'python2-wrapt' 
'python2-singledispatch')
   replaces=('python2-logilab-astng')
   conflicts=('python2-logilab-astng')
 
-  cd astroid-${pkgver}
+  cd astroid-py2
 
   python2 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root="${pkgdir}"
 }
-
-package_python-astroid() {
-  depends=('python-logilab-common' 'python-six')
-  replaces=('python-logilab-astng')
-  conflicts=('python-logilab-astng')
-
-  cd astroid-${pkgver}-py3
-
-  python3 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root="${pkgdir}"
-}


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

2015-09-21 Thread Felix Yan
Date: Monday, September 21, 2015 @ 08:08:56
  Author: fyan
Revision: 247023

upgpkg: pylint 1.4.4.20150921-1

bumping to git master for compatibility with new astroid

Modified:
  pylint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 06:01:44 UTC (rev 247022)
+++ PKGBUILD2015-09-21 06:08:56 UTC (rev 247023)
@@ -6,40 +6,41 @@
 
 pkgbase=pylint
 pkgname=('python2-pylint' 'python-pylint')
-pkgver=1.4.4
-pkgrel=2
+pkgver=1.4.4.20150921
+_commit=794a019236afead67c745777f5927cbe6b3f0711
+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')
+makedepends=('python2-astroid' 'python-astroid' 'python2-setuptools' 
'python-setuptools' 'python2-six' 'python-six' 'mercurial')
 optdepends=('tk: Pylint GUI')
-source=("http://pypi.python.org/packages/source/p/${pkgbase}/${pkgbase}-${pkgver}.tar.gz;)
-sha1sums=('4f46ee34830cebb51a1c5f8fa27e132bd0952ae3')
+source=("hg+https://felixonm...@bitbucket.org/logilab/pylint#revision=$_commit;)
+sha1sums=('SKIP')
 
 prepare() {
-  cp -a ${pkgbase}-${pkgver}{,-py3}
+  cp -a ${pkgbase}{,-py3}
 
-  cd ${pkgbase}-${pkgver}/pylint
+  cd ${pkgbase}/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
+  cd ../../${pkgbase}-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}
+  cd ${pkgbase}
   python2 setup.py build
 
-  cd ../${pkgbase}-${pkgver}-py3
+  cd ../${pkgbase}-py3
   python3 setup.py build
 }
 
 check() {
-  cd ${pkgbase}-${pkgver}
+  cd ${pkgbase}
   PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -Wi -m unittest discover -s 
pylint/test/ -p *test_*.py || warning "Tests failed"
 
-  cd ../${pkgbase}-${pkgver}-py3
+  cd ../${pkgbase}-py3
   PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -Wi -m unittest discover -s 
pylint/test/ -p *test_*.py || warning "Tests failed"
 }
 
@@ -46,7 +47,7 @@
 package_python2-pylint() {
   depends=('python2-astroid' 'python2-setuptools' 'python2-six')
 
-  cd ${pkgbase}-${pkgver}
+  cd ${pkgbase}
 
   python2 setup.py install --prefix=/usr --root="${pkgdir}" --skip-build 
--optimize=1
 
@@ -62,7 +63,7 @@
 package_python-pylint() {
   depends=('python-astroid' 'python-setuptools' 'python-six')
 
-  cd ${pkgbase}-${pkgver}-py3
+  cd ${pkgbase}-py3
 
   python3 setup.py install --prefix=/usr --root="${pkgdir}" --skip-build 
--optimize=1
 


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

2015-09-21 Thread Felix Yan
Date: Monday, September 21, 2015 @ 08:09:13
  Author: fyan
Revision: 247024

archrelease: copy trunk to staging-any

Added:
  pylint/repos/staging-any/PKGBUILD
(from rev 247023, pylint/trunk/PKGBUILD)
Deleted:
  pylint/repos/staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-21 06:08:56 UTC (rev 247023)
+++ PKGBUILD2015-09-21 06:09:13 UTC (rev 247024)
@@ -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.4
-pkgrel=2
-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=('4f46ee34830cebb51a1c5f8fa27e132bd0952ae3')
-
-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 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/staging-any/PKGBUILD (from rev 247023, 
pylint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-09-21 06:09:13 UTC (rev 247024)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Alexander Fehr 
+
+pkgbase=pylint
+pkgname=('python2-pylint' 'python-pylint')
+pkgver=1.4.4.20150921
+_commit=794a019236afead67c745777f5927cbe6b3f0711
+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' 'mercurial')
+optdepends=('tk: Pylint GUI')
+source=("hg+https://felixonm...@bitbucket.org/logilab/pylint#revision=$_commit;)
+sha1sums=('SKIP')
+
+prepare() {
+  cp -a ${pkgbase}{,-py3}
+
+  cd ${pkgbase}/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}-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}
+  python2 setup.py build
+
+  cd ../${pkgbase}-py3
+  python3 setup.py build
+}
+
+check() {
+  cd ${pkgbase}
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -Wi -m unittest discover -s 
pylint/test/ -p *test_*.py || warning "Tests failed"
+
+  cd ../${pkgbase}-py3
+  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 python-pyperclip/trunk (PKGBUILD)

2015-09-21 Thread Felix Yan
Date: Monday, September 21, 2015 @ 08:16:02
  Author: fyan
Revision: 141349

upgpkg: python-pyperclip 1.5.12-1

Modified:
  python-pyperclip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 05:56:20 UTC (rev 141348)
+++ PKGBUILD2015-09-21 06:16:02 UTC (rev 141349)
@@ -6,8 +6,8 @@
 pkgbase=python-pyperclip
 pkgname=('python-pyperclip' 'python2-pyperclip')
 _pypiname=pyperclip
-pkgver=1.5.11
-pkgrel=2
+pkgver=1.5.12
+pkgrel=1
 pkgdesc="A cross-platform clipboard module for Python"
 arch=('any')
 
url="http://coffeeghost.net/2010/10/09/pyperclip-a-cross-platform-clipboard-module-for-python/;
@@ -16,7 +16,7 @@
 checkdepends=('xorg-server-xvfb')
 
source=("https://pypi.python.org/packages/source/p/$_pypiname/$_pypiname-$pkgver.zip;
 LICENSE.txt)
-md5sums=('800b0e2c8aefee2e026da0acf3379a2d'
+md5sums=('8be09a9d9991a02df5b71f6a27362a43'
  'b6cd06fd72984ac1f8428337aec8cff7')
 
 prepare() {


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

2015-09-21 Thread Felix Yan
Date: Monday, September 21, 2015 @ 08:16:21
  Author: fyan
Revision: 141350

archrelease: copy trunk to community-staging-any

Added:
  python-pyperclip/repos/community-staging-any/LICENSE.txt
(from rev 141349, python-pyperclip/trunk/LICENSE.txt)
  python-pyperclip/repos/community-staging-any/PKGBUILD
(from rev 141349, python-pyperclip/trunk/PKGBUILD)
Deleted:
  python-pyperclip/repos/community-staging-any/LICENSE.txt
  python-pyperclip/repos/community-staging-any/PKGBUILD

-+
 LICENSE.txt |   54 +++
 PKGBUILD|  100 +-
 2 files changed, 77 insertions(+), 77 deletions(-)

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-21 06:16:02 UTC (rev 141349)
+++ PKGBUILD2015-09-21 06:16:21 UTC (rev 141350)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Jim Bridgewater 
-# Contributor: delta48  
-
-pkgbase=python-pyperclip
-pkgname=('python-pyperclip' 'python2-pyperclip')
-_pypiname=pyperclip
-pkgver=1.5.11
-pkgrel=2
-pkgdesc="A cross-platform clipboard module for Python"
-arch=('any')
-url="http://coffeeghost.net/2010/10/09/pyperclip-a-cross-platform-clipboard-module-for-python/;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'xclip')

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

2015-09-21 Thread Felix Yan
Date: Monday, September 21, 2015 @ 08:47:16
  Author: fyan
Revision: 247026

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

Added:
  vim/repos/staging-i686/
  vim/repos/staging-i686/PKGBUILD
(from rev 247025, vim/trunk/PKGBUILD)
  vim/repos/staging-i686/archlinux.vim
(from rev 247025, vim/trunk/archlinux.vim)
  vim/repos/staging-i686/gvim.desktop
(from rev 247025, vim/trunk/gvim.desktop)
  vim/repos/staging-i686/gvim.install
(from rev 247025, vim/trunk/gvim.install)
  vim/repos/staging-i686/vimrc
(from rev 247025, vim/trunk/vimrc)
  vim/repos/staging-x86_64/
  vim/repos/staging-x86_64/PKGBUILD
(from rev 247025, vim/trunk/PKGBUILD)
  vim/repos/staging-x86_64/archlinux.vim
(from rev 247025, vim/trunk/archlinux.vim)
  vim/repos/staging-x86_64/gvim.desktop
(from rev 247025, vim/trunk/gvim.desktop)
  vim/repos/staging-x86_64/gvim.install
(from rev 247025, vim/trunk/gvim.install)
  vim/repos/staging-x86_64/vimrc
(from rev 247025, vim/trunk/vimrc)

--+
 staging-i686/PKGBUILD|  376 +
 staging-i686/archlinux.vim   |   25 ++
 staging-i686/gvim.desktop|   63 ++
 staging-i686/gvim.install|   15 +
 staging-i686/vimrc   |   16 +
 staging-x86_64/PKGBUILD  |  376 +
 staging-x86_64/archlinux.vim |   25 ++
 staging-x86_64/gvim.desktop  |   63 ++
 staging-x86_64/gvim.install  |   15 +
 staging-x86_64/vimrc |   16 +
 10 files changed, 990 insertions(+)

Copied: vim/repos/staging-i686/PKGBUILD (from rev 247025, vim/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-09-21 06:47:16 UTC (rev 247026)
@@ -0,0 +1,376 @@
+# $Id$
+# Maintainer: Thomas Dziedzic 
+# Contributor: Jan "heftig" Steffens 
+# Contributor: tobias [ tobias at archlinux org ]
+# Contributor: Daniel J Griffiths 
+
+pkgbase=vim
+pkgname=(vim-minimal vim vim-python3 gvim gvim-python3 vim-runtime)
+pkgver=7.4.854
+_versiondir=74
+pkgrel=3
+arch=(i686 x86_64)
+license=('custom:vim')
+url='http://www.vim.org'
+makedepends=(gpm python2 python ruby libxt desktop-file-utils gtk2 lua)
+source=(vim-$pkgver.tar.gz::http://github.com/vim/vim/archive/v$pkgver.tar.gz
+vimrc
+archlinux.vim
+gvim.desktop)
+sha1sums=('SKIP'
+  '15ebf3f48693f1f219fe2d8edb7643683139eb6b'
+  '94f7bb87b5d06bace86bc4b3ef1372813b4eedf2'
+  '4a579cf66590d711f49c5dfb4a25e5df116ff7ba')
+
+prepare() {
+  cd vim-$pkgver
+
+  # define the place for the global (g)vimrc file (set to /etc/vimrc)
+  sed -i 's|^.*\(#define SYS_.*VIMRC_FILE.*"\) .*$|\1|' \
+src/feature.h
+  sed -i 's|^.*\(#define VIMRC_FILE.*"\) .*$|\1|' \
+src/feature.h
+
+  (cd src && autoconf)
+
+  cd "$srcdir"
+  for pkg in ${pkgname[@]}
+  do
+cp -a vim-$pkgver ${pkg}-build
+  done
+}
+
+build() {
+  cd "${srcdir}"/vim-runtime-build
+
+  ./configure \
+--prefix=/usr \
+--localstatedir=/var/lib/vim \
+--with-features=huge \
+--with-compiledby='Arch Linux' \
+--enable-gpm \
+--enable-acl \
+--with-x=no \
+--disable-gui \
+--enable-multibyte \
+--enable-cscope \
+--disable-netbeans \
+--enable-perlinterp \
+--disable-pythoninterp \
+--disable-python3interp \
+--disable-rubyinterp \
+--disable-luainterp
+
+  make
+
+  cd "${srcdir}"/vim-minimal-build
+
+  ./configure \
+--prefix=/usr \
+--localstatedir=/var/lib/vim \
+--with-features=huge \
+--with-compiledby='Arch Linux' \
+--enable-gpm \
+--enable-acl \
+--with-x=no \
+--disable-gui \
+--enable-multibyte \
+--enable-cscope \
+--disable-netbeans \
+--enable-perlinterp \
+--disable-pythoninterp \
+--disable-python3interp \
+--disable-rubyinterp \
+--disable-luainterp
+
+  make
+
+  cd "${srcdir}"/vim-build
+
+  ./configure \
+--prefix=/usr \
+--localstatedir=/var/lib/vim \
+--with-features=huge \
+--with-compiledby='Arch Linux' \
+--enable-gpm \
+--enable-acl \
+--with-x=no \
+--disable-gui \
+--enable-multibyte \
+--enable-cscope \
+--enable-netbeans \
+--enable-perlinterp \
+--enable-pythoninterp \
+--disable-python3interp \
+--enable-rubyinterp \
+--enable-luainterp
+
+  make
+
+  cd "${srcdir}"/vim-python3-build
+
+  ./configure \
+--prefix=/usr \
+--localstatedir=/var/lib/vim \
+--with-features=huge \
+--with-compiledby='Arch Linux' \
+--enable-gpm \
+--enable-acl \
+--with-x=no \
+--disable-gui \
+--enable-multibyte \
+--enable-cscope \
+--enable-netbeans \
+--enable-perlinterp \
+--disable-pythoninterp \
+--enable-python3interp \
+--enable-rubyinterp \
+--enable-luainterp
+
+  

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

2015-09-21 Thread Felix Yan
Date: Monday, September 21, 2015 @ 08:46:32
  Author: fyan
Revision: 247025

upgpkg: vim 7.4.854-3

rebuild for python 3.5

Modified:
  vim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 06:09:13 UTC (rev 247024)
+++ PKGBUILD2015-09-21 06:46:32 UTC (rev 247025)
@@ -8,7 +8,7 @@
 pkgname=(vim-minimal vim vim-python3 gvim gvim-python3 vim-runtime)
 pkgver=7.4.854
 _versiondir=74
-pkgrel=2
+pkgrel=3
 arch=(i686 x86_64)
 license=('custom:vim')
 url='http://www.vim.org'


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

2015-09-21 Thread Felix Yan
Date: Monday, September 21, 2015 @ 09:26:45
  Author: fyan
Revision: 141353

upgpkg: sopel 6.0.0-2

rebuild for python 3.5

Modified:
  sopel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 07:24:34 UTC (rev 141352)
+++ PKGBUILD2015-09-21 07:26:45 UTC (rev 141353)
@@ -3,7 +3,7 @@
 
 pkgname=sopel
 pkgver=6.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc="An easy-to-use and highly extensible IRC Bot framework (Formerly 
Willie)"
 arch=('any')
 license=('custom:EFL')


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

2015-09-21 Thread Felix Yan
Date: Monday, September 21, 2015 @ 09:27:02
  Author: fyan
Revision: 141354

archrelease: copy trunk to community-staging-any

Added:
  sopel/repos/community-staging-any/
  sopel/repos/community-staging-any/PKGBUILD
(from rev 141353, sopel/trunk/PKGBUILD)

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

Copied: sopel/repos/community-staging-any/PKGBUILD (from rev 141353, 
sopel/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-09-21 07:27:02 UTC (rev 141354)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=sopel
+pkgver=6.0.0
+pkgrel=2
+pkgdesc="An easy-to-use and highly extensible IRC Bot framework (Formerly 
Willie)"
+arch=('any')
+license=('custom:EFL')
+url='http://sopel.chat'
+depends=('python-setuptools' 'sqlite')
+optdepends=('python-feedparser: nws and rss modules'
+'python-pytz: remind module'
+'python-lxml: xkcd module'
+'python-pyenchant: spellchek module'
+'python-praw: reddit module'
+'python-pygeoip: geoip module')
+makedepends=('git' 'python-sphinx')
+checkdepends=('python-pytest' 'python-feedparser' 'python-pytz' 'python-lxml'
+  'python-pyenchant' 'python-praw' 'python-pygeoip' 'ipython')
+backup=('etc/sopel.cfg')
+source=("git+https://github.com/sopel-irc/sopel.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  sed -e 's|willie|sopel|g' -e 's|Willie|Sopel|g' -i 
sopel/contrib/willie{.cfg,.service,.conf}
+}
+
+build() {
+  cd "$srcdir/sopel"
+  python setup.py build
+  make -C docs man
+}
+
+check() {
+  cd "$srcdir/sopel"
+  py.test --ignore build || warning "Tests failed"
+}
+
+package() {
+  cd "$srcdir/sopel"
+  python setup.py install --root="${pkgdir}" --optimize=1
+
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 contrib/willie.cfg "$pkgdir/etc/sopel.cfg"
+  install -Dm644 contrib/willie.service 
"$pkgdir/usr/lib/systemd/system/sopel.service"
+  install -Dm644 contrib/willie.conf "$pkgdir/usr/lib/tmpfiles.d/sopel.conf"
+  install -Dm644 docs/build/man/sopel.1 "$pkgdir/usr/share/man/man1/sopel.1"
+}


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

2015-09-21 Thread Felix Yan
Date: Monday, September 21, 2015 @ 10:01:32
  Author: fyan
Revision: 141364

archrelease: copy trunk to community-staging-any

Added:
  python-gnuplot/repos/community-staging-any/
  python-gnuplot/repos/community-staging-any/PKGBUILD
(from rev 141363, python-gnuplot/trunk/PKGBUILD)

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

Copied: python-gnuplot/repos/community-staging-any/PKGBUILD (from rev 141363, 
python-gnuplot/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-09-21 08:01:32 UTC (rev 141364)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Michael Krauss 
+# Contributor: Baptiste Jonglez 
+
+pkgbase=python-gnuplot
+pkgname=('python2-gnuplot' 'python-gnuplot')
+pkgver=1.8
+pkgrel=5
+pkgdesc='Plot graphs with Gnuplot'
+arch=('any')
+license=('LGPL')
+url='http://gnuplot-py.sourceforge.net/'
+makedepends=('python-setuptools' 'python2-setuptools' 'python-numpy' 
'python2-numpy' 'git')
+source=("http://downloads.sourceforge.net/gnuplot-py/gnuplot-py-$pkgver.tar.gz;
+"git://github.com/yuyichao/gnuplot-py.git#commit=2c2218dc67") # python 
3 port
+sha256sums=('ab339be7847d30a8acfd616f27b5021bfde0999b7bf2d68400fbe62c53106e21'
+'SKIP')
+
+package_python2-gnuplot() {
+  depends=('python2' 'python2-numpy' 'gnuplot')
+
+  cd "gnuplot-py-$pkgver"
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+}
+
+package_python-gnuplot() {
+  depends=('python' 'python-numpy' 'gnuplot')
+
+  cd "gnuplot-py"
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-09-21 Thread Allan McRae
Date: Monday, September 21, 2015 @ 10:14:44
  Author: allan
Revision: 141366

archrelease: copy trunk to community-staging-any

Added:
  python-gtkspellcheck/repos/community-staging-any/
  python-gtkspellcheck/repos/community-staging-any/PKGBUILD
(from rev 141365, python-gtkspellcheck/trunk/PKGBUILD)

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

Copied: python-gtkspellcheck/repos/community-staging-any/PKGBUILD (from rev 
141365, python-gtkspellcheck/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-09-21 08:14:44 UTC (rev 141366)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Maximilian Köhl 
+
+pkgname=('python-gtkspellcheck' 'python2-gtkspellcheck')
+pkgver=4.0.2
+pkgrel=3
+pkgdesc="Spell-checking library written in Python for Gtk based on Enchant"
+arch=('any')
+url="http://koehlma.github.com/projects/pygtkspellcheck.html;
+license=('GPL')
+makedepends=('python-pyenchant' 'python2-pyenchant' 'python-sphinx'
+ 'python2-sphinx')
+source=(http://pypi.python.org/packages/source/p/pygtkspellcheck/pygtkspellcheck-$pkgver.tar.gz)
+sha256sums=('da3762a7c4c23de1762eb697cbc2819441e34fb7f3a9a418f38367e73d9bf850')
+
+package_python-gtkspellcheck() {
+  depends=('python-pyenchant')
+
+  cd "$srcdir/pygtkspellcheck-$pkgver"
+  python3 setup.py install --root="$pkgdir" -O1
+}
+
+package_python2-gtkspellcheck() {
+  depends=('python2-pyenchant')
+
+  cd "$srcdir/pygtkspellcheck-$pkgver"
+  python2 setup.py install --root="$pkgdir" -O1
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-09-21 Thread Felix Yan
Date: Monday, September 21, 2015 @ 09:24:34
  Author: fyan
Revision: 141352

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

Added:
  shiboken/repos/community-staging-i686/
  shiboken/repos/community-staging-i686/PKGBUILD
(from rev 141351, shiboken/trunk/PKGBUILD)
  shiboken/repos/community-staging-i686/python-3.5.patch
(from rev 141351, shiboken/trunk/python-3.5.patch)
  shiboken/repos/community-staging-x86_64/
  shiboken/repos/community-staging-x86_64/PKGBUILD
(from rev 141351, shiboken/trunk/PKGBUILD)
  shiboken/repos/community-staging-x86_64/python-3.5.patch
(from rev 141351, shiboken/trunk/python-3.5.patch)

---+
 community-staging-i686/PKGBUILD   |   96 
 community-staging-i686/python-3.5.patch   |   11 +++
 community-staging-x86_64/PKGBUILD |   96 
 community-staging-x86_64/python-3.5.patch |   11 +++
 4 files changed, 214 insertions(+)

Copied: shiboken/repos/community-staging-i686/PKGBUILD (from rev 141351, 
shiboken/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-21 07:24:34 UTC (rev 141352)
@@ -0,0 +1,96 @@
+# Maintainer: Florian Pritz 
+# Contributor: Jelle van der Waa 
+# Contributor: Hugo Osvaldo Barrera 
+# Contributor: Matthias Maennich 
+
+pkgbase=shiboken
+pkgname=(python{2,}-shiboken shiboken)
+pkgver=1.2.2
+pkgrel=6
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://www.pyside.org;
+makedepends=('cmake' 'python2' 'python' 'qt4' 'libxslt')
+source=("http://download.qt-project.org/official_releases/pyside/$pkgbase-$pkgver.tar.bz2;
+python-3.5.patch)
+md5sums=('9f5bee9d414ce51be07ff7a20054a48d'
+ '0433387f1716148883d15a7f6360f1e3')
+
+prepare(){
+cd "$srcdir/shiboken-$pkgver"
+patch -p1 -i ../python-3.5.patch
+}
+
+build(){
+cd "$srcdir/shiboken-$pkgver"
+# build python2
+mkdir -p build-py2 && cd build-py2
+cmake ../ -DCMAKE_INSTALL_PREFIX=/usr  \
+  -DCMAKE_BUILD_TYPE=Release   \
+  -DBUILD_TESTS=OFF\
+  -DPYTHON_EXECUTABLE=/usr/bin/python2 \
+  -DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
+  -DPYTHON_INCLUDE_DIR=/usr/include/python2.7 \
+  -DQT_QMAKE_EXECUTABLE=qmake-qt4
+make
+
+# build python3
+cd "$srcdir/shiboken-$pkgver"
+mkdir -p build-py3 && cd build-py3
+cmake ../ -DCMAKE_INSTALL_PREFIX=/usr  \
+  -DCMAKE_BUILD_TYPE=Release   \
+  -DBUILD_TESTS=OFF\
+  -DUSE_PYTHON3=yes\
+  -DQT_QMAKE_EXECUTABLE=qmake-qt4
+make
+}
+
+package_shiboken() {
+  pkgdesc="CPython bindings generator for C++ libraries"
+  depends=(python qt4 libxslt)
+  optdepends=("python2-shiboken: for compilation against python2"
+  "python-shiboken: for compilation against python")
+
+  # Header files/ /usr/bin/shiboke, pkgconfig, man page
+  cd "$srcdir/shiboken-$pkgver/build-py3"
+  make DESTDIR="$pkgdir" install
+
+  cd "$srcdir/shiboken-$pkgver/build-py2"
+  cd data
+  install -Dm 644 ShibokenConfig-python2.7.cmake 
"$pkgdir/usr/lib/cmake/Shiboken-$pkgver/"
+  install -Dm 644 shiboken.pc "$pkgdir/usr/lib/pkgconfig/shiboken-py2.pc"
+
+  rm -rf "$pkgdir/usr/lib/python"*
+  rm -rf "$pkgdir/usr/lib/libshiboken"*
+  rm -rf "$pkgdir/usr/lib/pkgconfig/"
+  rm "$pkgdir"/usr/lib/cmake/Shiboken-$pkgver/ShibokenConfig*python*.cmake
+}
+package_python2-shiboken() {
+  pkgdesc="Support library for Python2 bindings"
+  depends=("qt4>=4.8" "libxslt" "python2" "shiboken")
+
+  cd "$srcdir/shiboken-$pkgver/build-py2"
+  make DESTDIR="$pkgdir" install
+
+  cd "$srcdir/shiboken-$pkgver/build-py2"
+  cd data
+  install -Dm 644 ShibokenConfig-python2.7.cmake 
"$pkgdir/usr/lib/cmake/Shiboken-$pkgver/"
+  mv "$pkgdir"/usr/lib/pkgconfig/shiboken{,-py2}.pc
+
+  rm -rf "$pkgdir"/usr/{include,bin,share}
+  rm "$pkgdir/usr/lib/cmake/Shiboken-$pkgver/ShibokenConfigVersion.cmake"
+  rm "$pkgdir/usr/lib/cmake/Shiboken-$pkgver/ShibokenConfig.cmake"
+}
+
+package_python-shiboken() {
+  pkgdesc="Support library for Python bindings"
+  depends=("qt4>=4.8" "libxslt" "python" "shiboken")
+
+  cd "$srcdir/shiboken-$pkgver/build-py3"
+  make DESTDIR="$pkgdir" install
+
+  rm -rf "$pkgdir"/usr/{include,bin,share}
+  rm "$pkgdir/usr/lib/cmake/Shiboken-$pkgver/ShibokenConfigVersion.cmake"
+  rm "$pkgdir/usr/lib/cmake/Shiboken-$pkgver/ShibokenConfig.cmake"
+}
+

Copied: shiboken/repos/community-staging-i686/python-3.5.patch (from rev 
141351, shiboken/trunk/python-3.5.patch)
===
--- community-staging-i686/python-3.5.patch (rev 0)
+++ 

[arch-commits] Commit in shiboken/trunk (PKGBUILD python-3.5.patch)

2015-09-21 Thread Felix Yan
Date: Monday, September 21, 2015 @ 09:24:08
  Author: fyan
Revision: 141351

upgpkg: shiboken 1.2.2-6

rebuild for python 3.5

Added:
  shiboken/trunk/python-3.5.patch
Modified:
  shiboken/trunk/PKGBUILD

--+
 PKGBUILD |   13 ++---
 python-3.5.patch |   11 +++
 2 files changed, 21 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 06:16:21 UTC (rev 141350)
+++ PKGBUILD2015-09-21 07:24:08 UTC (rev 141351)
@@ -6,14 +6,21 @@
 pkgbase=shiboken
 pkgname=(python{2,}-shiboken shiboken)
 pkgver=1.2.2
-pkgrel=5
+pkgrel=6
 arch=('i686' 'x86_64')
 license=('LGPL')
 url="http://www.pyside.org;
 makedepends=('cmake' 'python2' 'python' 'qt4' 'libxslt')
-source=("http://download.qt-project.org/official_releases/pyside/$pkgbase-$pkgver.tar.bz2;)
-md5sums=('9f5bee9d414ce51be07ff7a20054a48d')
+source=("http://download.qt-project.org/official_releases/pyside/$pkgbase-$pkgver.tar.bz2;
+python-3.5.patch)
+md5sums=('9f5bee9d414ce51be07ff7a20054a48d'
+ '0433387f1716148883d15a7f6360f1e3')
 
+prepare(){
+cd "$srcdir/shiboken-$pkgver"
+patch -p1 -i ../python-3.5.patch
+}
+
 build(){
 cd "$srcdir/shiboken-$pkgver"
 # build python2

Added: python-3.5.patch
===
--- python-3.5.patch(rev 0)
+++ python-3.5.patch2015-09-21 07:24:08 UTC (rev 141351)
@@ -0,0 +1,11 @@
+--- a/cmake/Modules/FindPython3Libs.cmake  2014-04-22 23:42:48.0 
+0800
 b/cmake/Modules/FindPython3Libs.cmake  2015-09-21 15:17:27.014598399 
+0800
+@@ -27,7 +27,7 @@
+ # Search for the python framework on Apple.
+ # CMAKE_FIND_FRAMEWORKS(Python)
+ 
+-FOREACH(_CURRENT_VERSION 3.4 3.3 3.2 3.1 3.0)
++FOREACH(_CURRENT_VERSION 3.5 3.4 3.3 3.2 3.1 3.0)
+   IF(_CURRENT_VERSION GREATER 3.1)
+   SET(_32FLAGS "m" "u" "mu" "dm" "du" "dmu" "")
+   ELSE()


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

2015-09-21 Thread Allan McRae
Date: Monday, September 21, 2015 @ 09:40:28
  Author: allan
Revision: 141357

Python 3.5 rebuild

Modified:
  shadowsocks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 07:40:10 UTC (rev 141356)
+++ PKGBUILD2015-09-21 07:40:28 UTC (rev 141357)
@@ -3,7 +3,7 @@
 
 pkgname=shadowsocks
 pkgver=2.8.2
-pkgrel=1
+pkgrel=2
 pkgdesc="A lightweight tunnel proxy"
 license=('Apache')
 url="http://pypi.python.org/pypi/shadowsocks;


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

2015-09-21 Thread Felix Yan
Date: Monday, September 21, 2015 @ 09:40:10
  Author: fyan
Revision: 141356

archrelease: copy trunk to community-staging-any

Added:
  python-flickrapi/repos/community-staging-any/
  python-flickrapi/repos/community-staging-any/PKGBUILD
(from rev 141355, python-flickrapi/trunk/PKGBUILD)
  python-flickrapi/repos/community-staging-any/fix_setuptools.patch
(from rev 141355, python-flickrapi/trunk/fix_setuptools.patch)

--+
 PKGBUILD |   63 +
 fix_setuptools.patch |   19 ++
 2 files changed, 82 insertions(+)

Copied: python-flickrapi/repos/community-staging-any/PKGBUILD (from rev 141355, 
python-flickrapi/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-09-21 07:40:10 UTC (rev 141356)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Francois Garillot 
+# Contributor: György Balló 
+
+pkgbase=python-flickrapi
+pkgname=(python-flickrapi python2-flickrapi)
+_pkgname=flickrapi
+pkgver=2.1.1
+pkgrel=2
+pkgdesc="The official Python interface to the Flickr API"
+arch=('any')
+url="http://stuvel.eu/flickrapi;
+license=('Python')
+makedepends=('python-docutils' 'python2-docutils' 'python-setuptools' 
'python2-setuptools' 'python-requests-toolbelt' 'python2-requests-toolbelt'
+ 'python-requests-oauthlib' 'python2-requests-oauthlib' 
'python-six' 'python2-six')
+checkdepends=('python-nose' 'python2-nose')
+source=("http://pypi.python.org/packages/source/f/$_pkgname/$_pkgname-$pkgver.tar.gz;)
+sha512sums=('15e3e9e0c08fbc9d7226e4b1f0f18e6d1c69a049f169cf10f9400b9e030907bf590ae1da4ffcf72a8abe1c13cf24ff55f0851feaa9499abe5c0cb96e0a420c55')
+
+prepare() {
+  cp -a $_pkgname-$pkgver{,-py2}
+
+  cd $_pkgname-$pkgver-py2
+  find . -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
+}
+
+build() {
+  cd $_pkgname-$pkgver
+  python setup.py build
+
+  cd ../$_pkgname-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  # Tests not shipped
+  return
+
+  cd $_pkgname-$pkgver
+  python runtests
+
+  cd ../$_pkgname-$pkgver-py2
+  python2 runtests
+}
+
+package_python-flickrapi() {
+  depends=('python-six' 'python-requests-oauthlib' 'python-requests-toolbelt')
+
+  cd "$srcdir/$_pkgname-$pkgver"
+
+  python setup.py install --root=$pkgdir/ --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}
+
+package_python2-flickrapi() {
+  depends=('python2-six' 'python2-requests-oauthlib' 
'python2-requests-toolbelt')
+
+  cd "$srcdir/$_pkgname-$pkgver-py2"
+
+  python2 setup.py install --root=$pkgdir/ --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}

Copied: python-flickrapi/repos/community-staging-any/fix_setuptools.patch (from 
rev 141355, python-flickrapi/trunk/fix_setuptools.patch)
===
--- community-staging-any/fix_setuptools.patch  (rev 0)
+++ community-staging-any/fix_setuptools.patch  2015-09-21 07:40:10 UTC (rev 
141356)
@@ -0,0 +1,19 @@
+--- a/distribute_setup.py  2013-08-17 22:57:41.227220859 +0800
 b/distribute_setup.py  2013-08-17 22:57:29.343673408 +0800
+@@ -133,6 +133,16 @@
+ try:
+ try:
+ import pkg_resources
++
++# Setuptools 0.7b and later is a suitable (and preferable)
++# substitute for any Distribute version.
++try:
++pkg_resources.require("setuptools>=0.7b")
++return
++except (pkg_resources.DistributionNotFound,
++pkg_resources.VersionConflict):
++pass
++
+ if not hasattr(pkg_resources, '_distribute'):
+ if not no_fake:
+ _fake_setuptools()


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

2015-09-21 Thread Felix Yan
Date: Monday, September 21, 2015 @ 09:39:53
  Author: fyan
Revision: 141355

upgpkg: python-flickrapi 2.1.1-2

rebuild for python 3.5

Modified:
  python-flickrapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 07:27:02 UTC (rev 141354)
+++ PKGBUILD2015-09-21 07:39:53 UTC (rev 141355)
@@ -7,7 +7,7 @@
 pkgname=(python-flickrapi python2-flickrapi)
 _pkgname=flickrapi
 pkgver=2.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc="The official Python interface to the Flickr API"
 arch=('any')
 url="http://stuvel.eu/flickrapi;


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

2015-09-21 Thread Allan McRae
Date: Monday, September 21, 2015 @ 09:55:18
  Author: allan
Revision: 247030

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

Added:
  lirc/repos/staging-i686/
  lirc/repos/staging-i686/PKGBUILD
(from rev 247029, lirc/trunk/PKGBUILD)
  lirc/repos/staging-i686/lirc.install
(from rev 247029, lirc/trunk/lirc.install)
  lirc/repos/staging-i686/lirc.logrotate
(from rev 247029, lirc/trunk/lirc.logrotate)
  lirc/repos/staging-i686/lirc.tmpfiles
(from rev 247029, lirc/trunk/lirc.tmpfiles)
  lirc/repos/staging-x86_64/
  lirc/repos/staging-x86_64/PKGBUILD
(from rev 247029, lirc/trunk/PKGBUILD)
  lirc/repos/staging-x86_64/lirc.install
(from rev 247029, lirc/trunk/lirc.install)
  lirc/repos/staging-x86_64/lirc.logrotate
(from rev 247029, lirc/trunk/lirc.logrotate)
  lirc/repos/staging-x86_64/lirc.tmpfiles
(from rev 247029, lirc/trunk/lirc.tmpfiles)

---+
 staging-i686/PKGBUILD |   45 
 staging-i686/lirc.install |   13 +++
 staging-i686/lirc.logrotate   |5 
 staging-i686/lirc.tmpfiles|1 
 staging-x86_64/PKGBUILD   |   45 
 staging-x86_64/lirc.install   |   13 +++
 staging-x86_64/lirc.logrotate |5 
 staging-x86_64/lirc.tmpfiles  |1 
 8 files changed, 128 insertions(+)

Copied: lirc/repos/staging-i686/PKGBUILD (from rev 247029, lirc/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-09-21 07:55:18 UTC (rev 247030)
@@ -0,0 +1,45 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Paul Mattal 
+
+pkgname=lirc
+_pkgver=0.9.2a
+[[ $_pkgver =~ [a-z]$ ]] && pkgver="${_pkgver:0:-1}.${_pkgver: -1}" || 
pkgver="$_pkgver"
+pkgrel=2
+epoch=1
+pkgdesc="Linux Infrared Remote Control utils"
+arch=('i686' 'x86_64')
+url="http://www.lirc.org/;
+license=('GPL')
+depends=('alsa-lib' 'libx11' 'libftdi-compat' 'libirman')
+makedepends=('help2man' 'alsa-lib' 'libx11' 'libftdi-compat' 'libirman' 
'python')
+optdepends=('python: for lirc-setup, irdb-get and pronto2lirc')
+provides=('lirc-utils')
+conflicts=('lirc-utils')
+replaces=('lirc-utils')
+backup=('etc/lirc/lirc_options.conf' 'etc/lirc/lircd.conf' 
'etc/lirc/lircmd.conf')
+install=lirc.install
+source=("http://prdownloads.sourceforge.net/${pkgname}/${pkgname}-${_pkgver}.tar.bz2;
+lirc.logrotate
+lirc.tmpfiles)
+md5sums=('639a14ed0b3b34ae227a047b952ea368'
+ '3deb02604b37811d41816e9b4385fcc3'
+ 'febf25c154a7d36f01159e84f26c2d9a')
+
+build() {
+  cd "${srcdir}/lirc-${_pkgver}"
+
+  ./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc 
--localstatedir=/var \
+ --with-transmitter --enable-sandboxed 
+  make
+}
+
+package() {
+  cd "${srcdir}/lirc-${_pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 "${srcdir}"/lirc.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/lirc.conf
+  install -Dm644 "${srcdir}"/lirc.logrotate "${pkgdir}"/etc/logrotate.d/lirc
+
+  rmdir "${pkgdir}"/var/{run/lirc/,run/,}
+}

Copied: lirc/repos/staging-i686/lirc.install (from rev 247029, 
lirc/trunk/lirc.install)
===
--- staging-i686/lirc.install   (rev 0)
+++ staging-i686/lirc.install   2015-09-21 07:55:18 UTC (rev 247030)
@@ -0,0 +1,13 @@
+post_install() {
+   systemd-tmpfiles --create lirc.conf
+}
+
+post_upgrade() {
+   post_install
+
+   if [[ "$(vercmp $2 1:0.9.1-1)" -lt 0 ]]; then
+   echo ':: lirc.service and lircm.service have been replaced'
+   echo '   by the upstream unit files lircd.service and'
+   echo '   lircmd.service.'
+   fi
+}

Copied: lirc/repos/staging-i686/lirc.logrotate (from rev 247029, 
lirc/trunk/lirc.logrotate)
===
--- staging-i686/lirc.logrotate (rev 0)
+++ staging-i686/lirc.logrotate 2015-09-21 07:55:18 UTC (rev 247030)
@@ -0,0 +1,5 @@
+/var/log/lircd {
+   missingok
+   notifempty
+   delaycompress
+}

Copied: lirc/repos/staging-i686/lirc.tmpfiles (from rev 247029, 
lirc/trunk/lirc.tmpfiles)
===
--- staging-i686/lirc.tmpfiles  (rev 0)
+++ staging-i686/lirc.tmpfiles  2015-09-21 07:55:18 UTC (rev 247030)
@@ -0,0 +1 @@
+d /run/lirc 0755 root root -

Copied: lirc/repos/staging-x86_64/PKGBUILD (from rev 247029, 
lirc/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-09-21 07:55:18 UTC (rev 247030)
@@ -0,0 +1,45 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Paul Mattal 
+
+pkgname=lirc
+_pkgver=0.9.2a
+[[ 

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

2015-09-21 Thread Felix Yan
Date: Monday, September 21, 2015 @ 10:01:15
  Author: fyan
Revision: 141363

upgpkg: python-gnuplot 1.8-5

rebuild for python 3.5

Modified:
  python-gnuplot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 07:53:23 UTC (rev 141362)
+++ PKGBUILD2015-09-21 08:01:15 UTC (rev 141363)
@@ -6,7 +6,7 @@
 pkgbase=python-gnuplot
 pkgname=('python2-gnuplot' 'python-gnuplot')
 pkgver=1.8
-pkgrel=4
+pkgrel=5
 pkgdesc='Plot graphs with Gnuplot'
 arch=('any')
 license=('LGPL')


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

2015-09-21 Thread Allan McRae
Date: Monday, September 21, 2015 @ 10:14:05
  Author: allan
Revision: 141365

Python 3.5 rebuild

Modified:
  python-gtkspellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 08:01:32 UTC (rev 141364)
+++ PKGBUILD2015-09-21 08:14:05 UTC (rev 141365)
@@ -4,7 +4,7 @@
 
 pkgname=('python-gtkspellcheck' 'python2-gtkspellcheck')
 pkgver=4.0.2
-pkgrel=2
+pkgrel=3
 pkgdesc="Spell-checking library written in Python for Gtk based on Enchant"
 arch=('any')
 url="http://koehlma.github.com/projects/pygtkspellcheck.html;


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

2015-09-21 Thread Felix Yan
Date: Monday, September 21, 2015 @ 10:19:04
  Author: fyan
Revision: 141367

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

Added:
  python-pyside/repos/community-staging-i686/
  python-pyside/repos/community-staging-i686/PKGBUILD
(from rev 141366, python-pyside/trunk/PKGBUILD)
  python-pyside/repos/community-staging-x86_64/
  python-pyside/repos/community-staging-x86_64/PKGBUILD
(from rev 141366, python-pyside/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   85 
 community-staging-x86_64/PKGBUILD |   85 
 2 files changed, 170 insertions(+)

Copied: python-pyside/repos/community-staging-i686/PKGBUILD (from rev 141366, 
python-pyside/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-21 08:19:04 UTC (rev 141367)
@@ -0,0 +1,85 @@
+# Maintainer: Florian Pritz 
+# Contributor: lilydjwg 
+# Contributor: Matthias Maennich 
+# Contributor: Massimiliano Torromeo 
+# Contributor: Jan-Erik Meyer-Luetgens 
+pkgbase=python-pyside
+pkgname=(python-pyside-common python2-pyside python-pyside)
+_pkgrealname=pyside
+pkgver=1.2.2
+pkgrel=6
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://qt-project.org/wiki/PySide;
+_qtver=4.8
+makedepends=('python' 'python2' "qt4>=${_qtver}" 
"python"{,2}"-shiboken>=$pkgver"
+ 'cmake' 'qtwebkit' 'phonon')
+source=("http://download.qt-project.org/official_releases/pyside/${_pkgrealname}-qt${_qtver}+$pkgver.tar.bz2;)
+md5sums=('1969c2ff90eefaa4b200d234059d2287')
+
+build(){
+cd "$srcdir/${_pkgrealname}-qt${_qtver}+$pkgver"
+mkdir -p build_py3
+cd build_py3
+cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release 
-DBUILD_TESTS=OFF \
+  -DQT_PHONON_INCLUDE_DIR=/usr/include/qt4/phonon 
-DQT_QMAKE_EXECUTABLE=qmake-qt4
+make
+
+cd "$srcdir/${_pkgrealname}-qt${_qtver}+$pkgver"
+mkdir -p build_py2
+cd build_py2
+cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release 
-DBUILD_TESTS=OFF \
+  -DQT_PHONON_INCLUDE_DIR=/usr/include/qt4/phonon 
-DQT_QMAKE_EXECUTABLE=qmake-qt4 \
+  -DPYTHON_SUFFIX=-python2.7
+make
+}
+
+package_python-pyside-common(){
+pkgdesc="Provides LGPL Qt bindings for Python and related tools for 
binding generation (Common Files)"
+# cmake will use Python 3 version by default
+cd "$srcdir/${_pkgrealname}-qt${_qtver}+$pkgver/build_py3"
+make DESTDIR="$pkgdir" install
+
+rm -rf "$pkgdir"/usr/lib/pkgconfig
+rm -rf "$pkgdir"/usr/lib/python* "$pkgdir"/usr/lib/libpyside.*
+rm "$pkgdir"/usr/lib/cmake/PySide-$pkgver/PySideConfig*python*.cmake
+}
+
+package_python-pyside(){
+depends=('python' "qt4>=${_qtver}" "python-shiboken>=$pkgver" 
"python-pyside-common=$pkgver-$pkgrel")
+pkgdesc="Provides LGPL Qt bindings for Python and related tools for 
binding generation (Python 3 version)"
+optdepends=('qtwebkit: for PySide.QtWebKit'
+'phonon: for PySide.phonon')
+
+cd "$srcdir/${_pkgrealname}-qt${_qtver}+$pkgver/build_py3"
+make DESTDIR="$pkgdir" install
+
+mv "$pkgdir"/usr/lib/pkgconfig/pyside.pc \
+  "$pkgdir"/usr/lib/pkgconfig/pyside-py3.pc
+
+rm -rf "$pkgdir"/usr/include
+rm -rf "$pkgdir"/usr/share
+rm "$pkgdir"/usr/lib/cmake/PySide-$pkgver/PySideConfig.cmake
+rm "$pkgdir"/usr/lib/cmake/PySide-$pkgver/PySideConfigVersion.cmake
+}
+
+package_python2-pyside(){
+depends=('python2' "qt4>=${_qtver}" "python2-shiboken>=$pkgver" 
"python-pyside-common=$pkgver-$pkgrel")
+pkgdesc="Provides LGPL Qt bindings for Python and related tools for 
binding generation (Python 2 version)"
+optdepends=('qtwebkit: for PySide.QtWebKit'
+'phonon: for PySide.phonon')
+
+cd "$srcdir/${_pkgrealname}-qt${_qtver}+$pkgver/build_py2"
+make DESTDIR="$pkgdir" install
+
+mv "$pkgdir"/usr/lib/pkgconfig/pyside.pc \
+  "$pkgdir"/usr/lib/pkgconfig/pyside-py2.pc
+
+sed -i 's#^Requires: shiboken$#Requires: shiboken-py2#' 
"$pkgdir"/usr/lib/pkgconfig/pyside-py2.pc
+
+rm -rf "$pkgdir"/usr/include
+rm -rf "$pkgdir"/usr/share
+rm "$pkgdir"/usr/lib/cmake/PySide-$pkgver/PySideConfig.cmake
+rm "$pkgdir"/usr/lib/cmake/PySide-$pkgver/PySideConfigVersion.cmake
+}
+

Copied: python-pyside/repos/community-staging-x86_64/PKGBUILD (from rev 141366, 
python-pyside/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-21 08:19:04 UTC (rev 141367)
@@ -0,0 +1,85 @@
+# Maintainer: Florian Pritz 
+# Contributor: lilydjwg 
+# Contributor: 

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

2015-09-21 Thread Felix Yan
Date: Monday, September 21, 2015 @ 08:56:44
  Author: fyan
Revision: 247028

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

Added:
  brltty/repos/staging-i686/
  brltty/repos/staging-i686/PKGBUILD
(from rev 247027, brltty/trunk/PKGBUILD)
  brltty/repos/staging-i686/brltty.install
(from rev 247027, brltty/trunk/brltty.install)
  brltty/repos/staging-i686/brltty.service
(from rev 247027, brltty/trunk/brltty.service)
  brltty/repos/staging-x86_64/
  brltty/repos/staging-x86_64/PKGBUILD
(from rev 247027, brltty/trunk/PKGBUILD)
  brltty/repos/staging-x86_64/brltty.install
(from rev 247027, brltty/trunk/brltty.install)
  brltty/repos/staging-x86_64/brltty.service
(from rev 247027, brltty/trunk/brltty.service)

---+
 staging-i686/PKGBUILD |   43 
 staging-i686/brltty.install   |   20 ++
 staging-i686/brltty.service   |   12 +++
 staging-x86_64/PKGBUILD   |   43 
 staging-x86_64/brltty.install |   20 ++
 staging-x86_64/brltty.service |   12 +++
 6 files changed, 150 insertions(+)

Copied: brltty/repos/staging-i686/PKGBUILD (from rev 247027, 
brltty/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-09-21 06:56:44 UTC (rev 247028)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor: Jan de Groot 
+# Contributor: Giovanni Scafora 
+
+pkgname=brltty
+pkgver=5.2
+pkgrel=5
+pkgdesc="Braille display driver for Linux/Unix"
+arch=(i686 x86_64)
+url="http://mielke.cc/brltty;
+license=(GPL LGPL)
+depends=(libxaw gpm icu tcl cython bluez-libs)
+makedepends=(at-spi2-core tcl)
+optdepends=('at-spi2-core: X11/GNOME Apps accessibility'
+'atk: ATK bridge for X11/GNOME accessibility')
+backup=(etc/brltty.conf)
+options=('!emptydirs')
+install=brltty.install
+source=(http://mielke.cc/brltty/archive/brltty-$pkgver.tar.xz
+brltty.service)
+md5sums=('b484343461b5a45f95fedfb21d1ceca3'
+ '0cad54bb5470122535f5e3a11d5ca123')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--mandir=/usr/share/man \
+--with-tables-directory=/usr/share/brltty \
+--with-screen-driver=lx \
+--enable-gpm \
+--disable-java-bindings \
+--disable-static
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+  install -Dm644 Documents/brltty.conf "$pkgdir/etc/brltty.conf"
+  install -Dm644 ../brltty.service 
"$pkgdir/usr/lib/systemd/system/brltty.service"
+}

Copied: brltty/repos/staging-i686/brltty.install (from rev 247027, 
brltty/trunk/brltty.install)
===
--- staging-i686/brltty.install (rev 0)
+++ staging-i686/brltty.install 2015-09-21 06:56:44 UTC (rev 247028)
@@ -0,0 +1,20 @@
+post_install () {
+ getent group brlapi  &>/dev/null || groupadd -r brlapi
+ if [ ! -e /etc/brlapi.key ]; then
+ mcookie >/etc/brlapi.key
+ chmod 0640 /etc/brlapi.key
+ chgrp brlapi /etc/brlapi.key
+ echo "Please add your user to the brlapi group."
+ fi
+}
+
+post_upgrade () {
+post_install
+}
+
+post_remove () {
+getent group brlapi >/dev/null 2>&1 && groupdel brlapi
+if [ -e /etc/brlapi.key ]; then
+rm -f /etc/brlapi.key
+fi
+}

Copied: brltty/repos/staging-i686/brltty.service (from rev 247027, 
brltty/trunk/brltty.service)
===
--- staging-i686/brltty.service (rev 0)
+++ staging-i686/brltty.service 2015-09-21 06:56:44 UTC (rev 247028)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Braille Console Driver
+DefaultDependencies=no
+Before=sysinit.target
+
+[Service]
+ExecStart=/usr/bin/brltty --pid-file=/run/brltty.pid
+Type=forking
+PIDFile=/run/brltty.pid
+
+[Install]
+WantedBy=sysinit.target

Copied: brltty/repos/staging-x86_64/PKGBUILD (from rev 247027, 
brltty/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-09-21 06:56:44 UTC (rev 247028)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor: Jan de Groot 
+# Contributor: Giovanni Scafora 
+
+pkgname=brltty
+pkgver=5.2
+pkgrel=5
+pkgdesc="Braille display driver for Linux/Unix"
+arch=(i686 x86_64)
+url="http://mielke.cc/brltty;
+license=(GPL LGPL)
+depends=(libxaw gpm icu tcl cython bluez-libs)
+makedepends=(at-spi2-core tcl)
+optdepends=('at-spi2-core: X11/GNOME Apps accessibility'
+'atk: ATK bridge for X11/GNOME accessibility')

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

2015-09-21 Thread Felix Yan
Date: Monday, September 21, 2015 @ 08:56:12
  Author: fyan
Revision: 247027

upgpkg: brltty 5.2-5

rebuild for python 3.5

Modified:
  brltty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 06:47:16 UTC (rev 247026)
+++ PKGBUILD2015-09-21 06:56:12 UTC (rev 247027)
@@ -5,7 +5,7 @@
 
 pkgname=brltty
 pkgver=5.2
-pkgrel=4
+pkgrel=5
 pkgdesc="Braille display driver for Linux/Unix"
 arch=(i686 x86_64)
 url="http://mielke.cc/brltty;


[arch-commits] Commit in shadowsocks/repos (5 files)

2015-09-21 Thread Allan McRae
Date: Monday, September 21, 2015 @ 09:41:21
  Author: allan
Revision: 141358

archrelease: copy trunk to community-staging-any

Added:
  shadowsocks/repos/community-staging-any/
  shadowsocks/repos/community-staging-any/PKGBUILD
(from rev 141357, shadowsocks/trunk/PKGBUILD)
  shadowsocks/repos/community-staging-any/shadowsocks-server@.service
(from rev 141357, shadowsocks/trunk/shadowsocks-server@.service)
  shadowsocks/repos/community-staging-any/shadowsocks.install
(from rev 141357, shadowsocks/trunk/shadowsocks.install)
  shadowsocks/repos/community-staging-any/shadowsocks@.service
(from rev 141357, shadowsocks/trunk/shadowsocks@.service)

-+
 PKGBUILD|   50 ++
 shadowsocks-server@.service |   12 ++
 shadowsocks.install |5 
 shadowsocks@.service|   12 ++
 4 files changed, 79 insertions(+)

Copied: shadowsocks/repos/community-staging-any/PKGBUILD (from rev 141357, 
shadowsocks/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-09-21 07:41:21 UTC (rev 141358)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=shadowsocks
+pkgver=2.8.2
+pkgrel=2
+pkgdesc="A lightweight tunnel proxy"
+license=('Apache')
+url="http://pypi.python.org/pypi/shadowsocks;
+arch=('any')
+depends=('python' 'python-setuptools')
+optdepends=('libsodium: For salsa20 and chacha20 support')
+makedepends=('git')
+#checkdepends=('dante' 'bind-tools')
+install=${pkgname}.install
+source=("git+https://github.com/shadowsocks/shadowsocks.git#tag=$pkgver;
+"shadowsocks@.service"
+"shadowsocks-server@.service")
+sha512sums=('SKIP'
+
'96ecb174a476f64dec3ec086732d93a76d27e9a1cc56b1dc3fa87bf8e00d4b3c44076a01a0d525e42174cacc58fd5c16d5c8af5d4636dae13df549dec8204f7d'
+
'f2f8240c18a4483bf3e03b3a5ac8822c3deae713224f732bf28f7fddfcc5d0b02aa91652665ff93f05731e162a9407109c18f43d732a3a9b19d9eacfc806a4df')
+
+check() {
+  cd shadowsocks
+
+  # Tests require internet access
+  return
+
+  python tests/test.py -c tests/table.json
+  python tests/test.py -c tests/aes.json
+  python tests/test.py -c tests/rc4-md5.json
+  python tests/test.py -c tests/salsa20.json
+  python tests/test.py -c tests/server-multi-ports.json
+  python tests/test.py -c tests/server-multi-passwd.json
+  python tests/test.py -c tests/server-multi-passwd-table.json
+  python tests/test.py -c tests/workers.json
+}
+
+package() {
+  cd shadowsocks
+
+  python setup.py install -O1 --root="$pkgdir"
+
+  install -dm755 "$pkgdir/usr/share/man/man1"
+  install -m644 debian/{ssserver.1,sslocal.1} "$pkgdir/usr/share/man/man1"
+  install -Dm644 debian/config.json "$pkgdir/etc/shadowsocks/example.json"
+
+  install -Dm644 "$srcdir/shadowsocks@.service" 
"$pkgdir/usr/lib/systemd/system/shadowsocks@.service"
+  install -Dm644 "$srcdir/shadowsocks-server@.service" 
"$pkgdir/usr/lib/systemd/system/shadowsocks-server@.service"
+}

Copied: shadowsocks/repos/community-staging-any/shadowsocks-server@.service 
(from rev 141357, shadowsocks/trunk/shadowsocks-server@.service)
===
--- community-staging-any/shadowsocks-server@.service   
(rev 0)
+++ community-staging-any/shadowsocks-server@.service   2015-09-21 07:41:21 UTC 
(rev 141358)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Shadowsocks Server Service
+After=network.target
+
+[Service]
+Type=simple
+User=nobody
+ExecStart=/usr/bin/ssserver -c /etc/shadowsocks/%i.json
+
+[Install]
+WantedBy=multi-user.target
+

Copied: shadowsocks/repos/community-staging-any/shadowsocks.install (from rev 
141357, shadowsocks/trunk/shadowsocks.install)
===
--- community-staging-any/shadowsocks.install   (rev 0)
+++ community-staging-any/shadowsocks.install   2015-09-21 07:41:21 UTC (rev 
141358)
@@ -0,0 +1,5 @@
+post_install() {
+echo "You can use profiled systemd units to start/stop shadowsocks: 
(Profiles are placed under /etc/shadowsocks/*.json)"
+echo "# systemctl start/stop shadowsocks[-server]@"
+}
+

Copied: shadowsocks/repos/community-staging-any/shadowsocks@.service (from rev 
141357, shadowsocks/trunk/shadowsocks@.service)
===
--- community-staging-any/shadowsocks@.service  (rev 0)
+++ community-staging-any/shadowsocks@.service  2015-09-21 07:41:21 UTC (rev 
141358)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Shadowsocks Client Service
+After=network.target
+
+[Service]
+Type=simple
+User=nobody
+ExecStart=/usr/bin/sslocal -c /etc/shadowsocks/%i.json
+
+[Install]
+WantedBy=multi-user.target
+


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

2015-09-21 Thread Allan McRae
Date: Monday, September 21, 2015 @ 09:49:39
  Author: allan
Revision: 141359

Python 3.5 rebuild

Modified:
  vapoursynth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 07:41:21 UTC (rev 141358)
+++ PKGBUILD2015-09-21 07:49:39 UTC (rev 141359)
@@ -5,7 +5,7 @@
 
 pkgname=vapoursynth
 pkgver=R27
-pkgrel=1
+pkgrel=2
 pkgdesc='A video processing framework with the future in mind'
 arch=('i686' 'x86_64')
 url='http://www.vapoursynth.com/'


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

2015-09-21 Thread Allan McRae
Date: Monday, September 21, 2015 @ 09:50:53
  Author: allan
Revision: 141360

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

Added:
  vapoursynth/repos/community-staging-i686/
  vapoursynth/repos/community-staging-i686/PKGBUILD
(from rev 141359, vapoursynth/trunk/PKGBUILD)
  vapoursynth/repos/community-staging-i686/vapoursynth.install
(from rev 141359, vapoursynth/trunk/vapoursynth.install)
  vapoursynth/repos/community-staging-i686/vapoursynth.xml
(from rev 141359, vapoursynth/trunk/vapoursynth.xml)
  vapoursynth/repos/community-staging-x86_64/
  vapoursynth/repos/community-staging-x86_64/PKGBUILD
(from rev 141359, vapoursynth/trunk/PKGBUILD)
  vapoursynth/repos/community-staging-x86_64/vapoursynth.install
(from rev 141359, vapoursynth/trunk/vapoursynth.install)
  vapoursynth/repos/community-staging-x86_64/vapoursynth.xml
(from rev 141359, vapoursynth/trunk/vapoursynth.xml)

--+
 community-staging-i686/PKGBUILD  |   40 +
 community-staging-i686/vapoursynth.install   |   13 
 community-staging-x86_64/PKGBUILD|   40 +
 community-staging-x86_64/vapoursynth.install |   13 
 4 files changed, 106 insertions(+)

Copied: vapoursynth/repos/community-staging-i686/PKGBUILD (from rev 141359, 
vapoursynth/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-21 07:50:53 UTC (rev 141360)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: sl1pkn07 
+# Contributor: jackoneill 
+
+pkgname=vapoursynth
+pkgver=R27
+pkgrel=2
+pkgdesc='A video processing framework with the future in mind'
+arch=('i686' 'x86_64')
+url='http://www.vapoursynth.com/'
+license=('LGPL2.1' 'custom:OFL')
+depends=('ffmpeg' 'python' 'shared-mime-info' 'tesseract')
+makedepends=('cython' 'python-sphinx' 'yasm')
+install='vapoursynth.install'
+source=("vapoursynth-${pkgver}.tar.gz::https://github.com/vapoursynth/vapoursynth/archive/${pkgver}.tar.gz;
+'vapoursynth.xml')
+sha256sums=('3af82faf8c085ff25b2ad87c2d7e56d31247227d0b291de7769362ac6629b43d'
+'8e51579547d20cd7cb9618a47b3ac508423d09d76649bf038d0ab9acb850b068')
+
+build() {
+  cd vapoursynth-${pkgver}
+
+  ./autogen.sh
+  ./configure \
+--prefix='/usr'
+  make
+}
+
+package() {
+  cd vapoursynth-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+
+  install -dm 755 "${pkgdir}"/usr/share/{licenses/vapoursynth,mime/packages}
+  install -m 644 ofl.txt "${pkgdir}"/usr/share/licenses/vapoursynth/
+  install -m 644 ../vapoursynth.xml "${pkgdir}"/usr/share/mime/packages/
+}
+
+# vim: ts=2 sw=2 et:

Copied: vapoursynth/repos/community-staging-i686/vapoursynth.install (from rev 
141359, vapoursynth/trunk/vapoursynth.install)
===
--- community-staging-i686/vapoursynth.install  (rev 0)
+++ community-staging-i686/vapoursynth.install  2015-09-21 07:50:53 UTC (rev 
141360)
@@ -0,0 +1,13 @@
+post_install() {
+  update-mime-database usr/share/mime
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim: ts=2 sw=2 et:

Copied: vapoursynth/repos/community-staging-i686/vapoursynth.xml (from rev 
141359, vapoursynth/trunk/vapoursynth.xml)
===
(Binary files differ)

Copied: vapoursynth/repos/community-staging-x86_64/PKGBUILD (from rev 141359, 
vapoursynth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-21 07:50:53 UTC (rev 141360)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: sl1pkn07 
+# Contributor: jackoneill 
+
+pkgname=vapoursynth
+pkgver=R27
+pkgrel=2
+pkgdesc='A video processing framework with the future in mind'
+arch=('i686' 'x86_64')
+url='http://www.vapoursynth.com/'
+license=('LGPL2.1' 'custom:OFL')
+depends=('ffmpeg' 'python' 'shared-mime-info' 'tesseract')
+makedepends=('cython' 'python-sphinx' 'yasm')
+install='vapoursynth.install'
+source=("vapoursynth-${pkgver}.tar.gz::https://github.com/vapoursynth/vapoursynth/archive/${pkgver}.tar.gz;
+'vapoursynth.xml')
+sha256sums=('3af82faf8c085ff25b2ad87c2d7e56d31247227d0b291de7769362ac6629b43d'
+'8e51579547d20cd7cb9618a47b3ac508423d09d76649bf038d0ab9acb850b068')
+
+build() {
+  cd vapoursynth-${pkgver}
+
+  ./autogen.sh
+  ./configure \
+--prefix='/usr'
+  make
+}
+
+package() {
+  cd vapoursynth-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+
+  install -dm 755 

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

2015-09-21 Thread Felix Yan
Date: Monday, September 21, 2015 @ 09:52:58
  Author: fyan
Revision: 141361

Python 3.5 rebuild

Modified:
  gst-python/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 07:50:53 UTC (rev 141360)
+++ PKGBUILD2015-09-21 07:52:58 UTC (rev 141361)
@@ -4,7 +4,7 @@
 
 pkgname=gst-python
 pkgver=1.4.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Python bindings for GStreamer"
 arch=('i686' 'x86_64')
 license=('LGPL')


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

2015-09-21 Thread Felix Yan
Date: Monday, September 21, 2015 @ 09:53:23
  Author: fyan
Revision: 141362

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

Added:
  gst-python/repos/community-staging-i686/
  gst-python/repos/community-staging-i686/PKGBUILD
(from rev 141361, gst-python/trunk/PKGBUILD)
  gst-python/repos/community-staging-x86_64/
  gst-python/repos/community-staging-x86_64/PKGBUILD
(from rev 141361, gst-python/trunk/PKGBUILD)

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

Copied: gst-python/repos/community-staging-i686/PKGBUILD (from rev 141361, 
gst-python/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-21 07:53:23 UTC (rev 141362)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan de Groot 
+
+pkgname=gst-python
+pkgver=1.4.0
+pkgrel=4
+pkgdesc="Python bindings for GStreamer"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://gstreamer.freedesktop.org/;
+depends=('python-gobject' 'gst-plugins-base')
+makedepends=('pkg-config')
+source=(http://gstreamer.freedesktop.org/src/gst-python/gst-python-${pkgver}.tar.xz)
+md5sums=('72e3ba811db671366162bbf75a01ed37')
+
+build() {
+  cd "${srcdir}/gst-python-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/gst-python-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: gst-python/repos/community-staging-x86_64/PKGBUILD (from rev 141361, 
gst-python/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-21 07:53:23 UTC (rev 141362)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan de Groot 
+
+pkgname=gst-python
+pkgver=1.4.0
+pkgrel=4
+pkgdesc="Python bindings for GStreamer"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://gstreamer.freedesktop.org/;
+depends=('python-gobject' 'gst-plugins-base')
+makedepends=('pkg-config')
+source=(http://gstreamer.freedesktop.org/src/gst-python/gst-python-${pkgver}.tar.xz)
+md5sums=('72e3ba811db671366162bbf75a01ed37')
+
+build() {
+  cd "${srcdir}/gst-python-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/gst-python-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}


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

2015-09-21 Thread Allan McRae
Date: Monday, September 21, 2015 @ 09:53:52
  Author: allan
Revision: 247029

Python 3.5 rebuild

Modified:
  lirc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 06:56:44 UTC (rev 247028)
+++ PKGBUILD2015-09-21 07:53:52 UTC (rev 247029)
@@ -4,7 +4,7 @@
 pkgname=lirc
 _pkgver=0.9.2a
 [[ $_pkgver =~ [a-z]$ ]] && pkgver="${_pkgver:0:-1}.${_pkgver: -1}" || 
pkgver="$_pkgver"
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="Linux Infrared Remote Control utils"
 arch=('i686' 'x86_64')


[arch-commits] Commit in (4 files)

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 05:17:31
  Author: fyan
Revision: 141429

addpkg: python-pyjwt 1.4.0-1

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

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

Added: python-pyjwt/trunk/PKGBUILD
===
--- python-pyjwt/trunk/PKGBUILD (rev 0)
+++ python-pyjwt/trunk/PKGBUILD 2015-09-22 03:17:31 UTC (rev 141429)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pyjwt
+pkgname=('python-pyjwt' 'python2-pyjwt')
+pkgver=1.4.0
+pkgrel=1
+pkgdesc='JSON Web Token implementation in Python'
+arch=('any')
+url='http://github.com/jpadilla/pyjwt'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-cov' 'python2-pytest-cov')
+source=("git+https://github.com/jpadilla/pyjwt.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a pyjwt{,-py2}
+}
+
+build() {
+  cd "$srcdir/pyjwt"
+  python setup.py build
+
+  cd "$srcdir/pyjwt-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/pyjwt"
+  python setup.py ptr
+
+  cd "$srcdir/pyjwt-py2"
+  python2 setup.py ptr || warning "Tests failed"
+}
+
+package_python-pyjwt() {
+  depends=('python-setuptools')
+
+  cd "$srcdir/pyjwt"
+  python3 setup.py install --root="$pkgdir" -O1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-pyjwt() {
+  depends=('python2-setuptools')
+
+  cd "$srcdir/pyjwt-py2"
+  python2 setup.py install --root="$pkgdir" -O1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  mv "$pkgdir/usr/bin/jwt"{,2}
+}
+


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


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 05:29:03
  Author: fyan
Revision: 141432

archrelease: copy trunk to community-staging-any

Added:
  python-requests-oauthlib/repos/community-staging-any/
  python-requests-oauthlib/repos/community-staging-any/PKGBUILD
(from rev 141431, python-requests-oauthlib/trunk/PKGBUILD)

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

Copied: python-requests-oauthlib/repos/community-staging-any/PKGBUILD (from rev 
141431, python-requests-oauthlib/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-09-22 03:29:03 UTC (rev 141432)
@@ -0,0 +1,57 @@
+# $Id: PKGBUILD 122344 2014-11-11 08:16:49Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Sebastien Leduc 
+# Contributor: Roberto Catini 
+
+pkgbase=python-requests-oauthlib
+pkgname=('python-requests-oauthlib' 'python2-requests-oauthlib')
+_pypiname=requests-oauthlib
+pkgver=0.5.0.20150919
+_commit=c68b16f59bb6922338aaa80d1041e049290e5e3c
+pkgrel=1
+pkgdesc="First-class OAuth library support for Requests"
+arch=('any')
+url="https://pypi.python.org/pypi/requests-oauthlib;
+license=('custom:ISC')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests'
+ 'python-oauthlib' 'python2-oauthlib' 'git')
+checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock'
+  'python-pyjwt' 'python2-pyjwt')
+source=("git+https://github.com/requests/requests-oauthlib.git#commit=$_commit;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a ${_pypiname}{,-py2}
+}
+
+build() {
+  cd "$srcdir/${_pypiname}"
+  python setup.py build
+
+  cd "$srcdir/${_pypiname}-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/${_pypiname}"
+  py.test
+
+  cd "$srcdir/${_pypiname}-py2"
+  py.test2
+}
+
+package_python-requests-oauthlib() {
+  depends=('python-requests' 'python-oauthlib')
+
+  cd "$srcdir/${_pypiname}"
+  python setup.py install --root="$pkgdir/" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-requests-oauthlib() {
+  depends=('python2-requests' 'python2-oauthlib')
+
+  cd "$srcdir/${_pypiname}-py2"
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 05:28:45
  Author: fyan
Revision: 141431

upgpkg: python-requests-oauthlib 0.5.0.20150919-1

rebuild for python 3.5

Modified:
  python-requests-oauthlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-22 03:17:58 UTC (rev 141430)
+++ PKGBUILD2015-09-22 03:28:45 UTC (rev 141431)
@@ -5,35 +5,38 @@
 
 pkgbase=python-requests-oauthlib
 pkgname=('python-requests-oauthlib' 'python2-requests-oauthlib')
-_pkgname=requests-oauthlib
-pkgver=0.5.0
+_pypiname=requests-oauthlib
+pkgver=0.5.0.20150919
+_commit=c68b16f59bb6922338aaa80d1041e049290e5e3c
 pkgrel=1
 pkgdesc="First-class OAuth library support for Requests"
 arch=('any')
 url="https://pypi.python.org/pypi/requests-oauthlib;
 license=('custom:ISC')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests' 'python-oauthlib' 'python2-oauthlib')
-checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock')
-source=("https://pypi.python.org/packages/source/r/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
-md5sums=('139a17c495fb593b5842634faf72ebb0')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests'
+ 'python-oauthlib' 'python2-oauthlib' 'git')
+checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock'
+  'python-pyjwt' 'python2-pyjwt')
+source=("git+https://github.com/requests/requests-oauthlib.git#commit=$_commit;)
+md5sums=('SKIP')
 
 prepare() {
-  cp -a ${_pkgname}-$pkgver{,-py2}
+  cp -a ${_pypiname}{,-py2}
 }
 
 build() {
-  cd "$srcdir/${_pkgname}-$pkgver"
+  cd "$srcdir/${_pypiname}"
   python setup.py build
 
-  cd "$srcdir/${_pkgname}-$pkgver-py2"
+  cd "$srcdir/${_pypiname}-py2"
   python2 setup.py build
 }
 
 check() {
-  cd "$srcdir/${_pkgname}-$pkgver"
+  cd "$srcdir/${_pypiname}"
   py.test
 
-  cd "$srcdir/${_pkgname}-$pkgver-py2"
+  cd "$srcdir/${_pypiname}-py2"
   py.test2
 }
 
@@ -40,7 +43,7 @@
 package_python-requests-oauthlib() {
   depends=('python-requests' 'python-oauthlib')
 
-  cd "$srcdir/${_pkgname}-$pkgver"
+  cd "$srcdir/${_pypiname}"
   python setup.py install --root="$pkgdir/" --optimize=1
   install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }
@@ -48,7 +51,7 @@
 package_python2-requests-oauthlib() {
   depends=('python2-requests' 'python2-oauthlib')
 
-  cd "$srcdir/${_pkgname}-$pkgver-py2"
+  cd "$srcdir/${_pypiname}-py2"
   python2 setup.py install --root="$pkgdir/" --optimize=1
   install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 06:11:35
  Author: fyan
Revision: 141435

upgpkg: hexchat 2.10.2-4

rebuild for python 3.5

Modified:
  hexchat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-22 03:46:25 UTC (rev 141434)
+++ PKGBUILD2015-09-22 04:11:35 UTC (rev 141435)
@@ -4,7 +4,7 @@
 
 pkgname=hexchat
 pkgver=2.10.2
-pkgrel=3
+pkgrel=4
 pkgdesc='A popular and easy to use graphical IRC (chat) client'
 arch=('i686' 'x86_64')
 url='http://hexchat.github.io/'
@@ -23,6 +23,7 @@
   cd hexchat-${pkgver}
 
 #  sed 's/CFLAGS="$PERL_CFLAGS"/CFLAGS="$PERL_CFLAGS -fuse-ld=gold"/' -i 
configure
+  sed -i 's/python-3.4/python-3.5/' configure
 }
 
 build() {


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

2015-09-21 Thread Evangelos Foutras
Date: Tuesday, September 22, 2015 @ 06:24:57
  Author: foutrelis
Revision: 247056

upgpkg: chromium 45.0.2454.99-1

New upstream release.

Modified:
  chromium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-22 04:15:15 UTC (rev 247055)
+++ PKGBUILD2015-09-22 04:24:57 UTC (rev 247056)
@@ -5,7 +5,7 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=chromium
-pkgver=45.0.2454.93
+pkgver=45.0.2454.99
 pkgrel=1
 _launcher_ver=2
 pkgdesc="The open-source project behind Google Chrome, an attempt at creating 
a safer, faster, and more stable browser"
@@ -28,7 +28,7 @@
 chromium.desktop
 0001-Demand-for-newer-POSIX-macro.patch
 chromium-widevine.patch)
-sha256sums=('0652aad95e6135ce03c6bfa13c4b023b1d70d65af9e0a24dc0e9fe45578d2ac7'
+sha256sums=('15d1a31fd0acfca07d614249518192983890507641e09db8d4c91d9ddf7ea340'
 '7f91c81721092d707d7b94e6555a48bc7fd0bc0e1174df4649bdcd745930e52f'
 '028a748a5c275de9b8f776f97909f999a8583a4b77fd1cd600b4fc5c0c3e91e9'
 'd908939b10161efe658f0f82d2c132bf28dff54e08f02c6fed93815c3656f328'


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 06:37:33
  Author: fyan
Revision: 247059

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

Added:
  hplip/repos/staging-i686/
  hplip/repos/staging-i686/PKGBUILD
(from rev 247058, hplip/trunk/PKGBUILD)
  hplip/repos/staging-i686/disable_upgrade.patch
(from rev 247058, hplip/trunk/disable_upgrade.patch)
  hplip/repos/staging-i686/hplip.install
(from rev 247058, hplip/trunk/hplip.install)
  hplip/repos/staging-x86_64/
  hplip/repos/staging-x86_64/PKGBUILD
(from rev 247058, hplip/trunk/PKGBUILD)
  hplip/repos/staging-x86_64/disable_upgrade.patch
(from rev 247058, hplip/trunk/disable_upgrade.patch)
  hplip/repos/staging-x86_64/hplip.install
(from rev 247058, hplip/trunk/hplip.install)

--+
 staging-i686/PKGBUILD|   83 +
 staging-i686/disable_upgrade.patch   |   14 +
 staging-i686/hplip.install   |   18 +++
 staging-x86_64/PKGBUILD  |   83 +
 staging-x86_64/disable_upgrade.patch |   14 +
 staging-x86_64/hplip.install |   18 +++
 6 files changed, 230 insertions(+)

Copied: hplip/repos/staging-i686/PKGBUILD (from rev 247058, 
hplip/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-09-22 04:37:33 UTC (rev 247059)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Tom Gundersen 
+# Contributor : Rémy Oudompheng 
+# Contributor: Morgan LEFIEUX 
+
+pkgname=hplip
+pkgver=3.15.9
+pkgrel=2
+pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
+arch=('i686' 'x86_64')
+url="http://hplipopensource.com;
+license=('GPL')
+depends=('python' 'ghostscript>=8.64-6' 'net-snmp>=5.7.1' 'wget' 
'foomatic-db-engine')
+makedepends=('python-pyqt4' 'python-gobject' 'sane' 'rpcbind' 'cups' 'libusb')
+optdepends=('cups: for printing support'
+'python-dbus: for dbus support'
+'sane: for scanner support'
+'python-pillow: for commandline scanning support'
+'python-reportlab: for pdf output in hp-scan'
+'rpcbind: for network support'
+'python-pyqt4: for running GUI and hp-toolbox'
+'python-gobject: for running hp-toolbox'
+'hplip-plugin: binary blobs for specific devices (AUR) or run 
hp-setup to download the plugin'
+'libusb: for advanced usb support')
+install=hplip.install
+source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
+disable_upgrade.patch)
+sha1sums=('564a37d39269fee9c938b7fe9f2b31c4f9c4db06'
+  'SKIP'
+  '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e')
+validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
+
+prepare() {
+ cd $pkgname-$pkgver
+ 
+ # disable insecure update - https://bugs.archlinux.org/task/38083
+ patch -Np0 -i ${srcdir}/disable_upgrade.patch
+ 
+ # https://bugs.archlinux.org/task/30085 - hack found in Gentoo
+ # Use system foomatic-rip for hpijs driver instead of foomatic-rip-hplip
+ # The hpcups driver does not use foomatic-rip
+   local i
+   for i in ppd/hpijs/*.ppd.gz ; do
+   rm -f ${i}.temp
+   gunzip -c ${i} | sed 's/foomatic-rip-hplip/foomatic-rip/g' | \
+   gzip > ${i}.temp || return 1
+   mv ${i}.temp ${i}
+   done
+   
+ export AUTOMAKE='automake --foreign'
+ autoreconf --force --install
+}
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr \
+ --enable-qt4 \
+ --disable-foomatic-rip-hplip-install \
+ --enable-foomatic-ppd-install \
+ --enable-hpcups-install \
+ --enable-new-hpcups \
+ --enable-cups-ppd-install \
+ --enable-cups-drv-install \
+ --enable-hpijs-install \
+ --enable-foomatic-drv-install \
+ --enable-pp-build #--help
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make -j1 rulesdir=/usr/lib/udev/rules.d DESTDIR="$pkgdir/" install
+ 
+ # remove config provided by sane and autostart of hp-daemon
+ rm -rf "$pkgdir"/etc/{sane.d,xdg}
+ 
+ # remove HAL .fdi file because HAL is no longer used
+ rm -vrf "$pkgdir"/usr/share/hal
+ 
+ # remove rc script
+ rm -vrf "$pkgdir"/etc/init.d
+}

Copied: hplip/repos/staging-i686/disable_upgrade.patch (from rev 247058, 
hplip/trunk/disable_upgrade.patch)
===
--- staging-i686/disable_upgrade.patch  (rev 0)
+++ staging-i686/disable_upgrade.patch  2015-09-22 04:37:33 UTC (rev 247059)
@@ -0,0 +1,14 @@
+--- upgrade.py.orig2013-10-31 12:46:54.0 +0100
 

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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 07:29:40
  Author: fyan
Revision: 141439

upgpkg: python-keyring 5.4-2

rebuild for python 3.5

Modified:
  python-keyring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-22 04:19:53 UTC (rev 141438)
+++ PKGBUILD2015-09-22 05:29:40 UTC (rev 141439)
@@ -9,7 +9,7 @@
 pkgbase=python-keyring
 pkgname=('python-keyring' 'python2-keyring')
 pkgver=5.4
-pkgrel=1
+pkgrel=2
 pkgdesc="Store and access your passwords safely."
 arch=('any')
 url="http://pypi.python.org/pypi/keyring;


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 07:29:58
  Author: fyan
Revision: 141440

archrelease: copy trunk to community-staging-any

Added:
  python-keyring/repos/community-staging-any/
  python-keyring/repos/community-staging-any/PKGBUILD
(from rev 141439, python-keyring/trunk/PKGBUILD)

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

Copied: python-keyring/repos/community-staging-any/PKGBUILD (from rev 141439, 
python-keyring/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-09-22 05:29:58 UTC (rev 141440)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Johannes Dewender  arch at JonnyJD dot net
+# Contributor: Ivan Sichmann Freitas 
+# Contributor: Brice Maron 
+# Contributor: Nuno Araujo 
+# Contributor: Steven Allen 
+
+pkgbase=python-keyring
+pkgname=('python-keyring' 'python2-keyring')
+pkgver=5.4
+pkgrel=2
+pkgdesc="Store and access your passwords safely."
+arch=('any')
+url="http://pypi.python.org/pypi/keyring;
+license=('PSF' 'MIT')
+source=("http://pypi.python.org/packages/source/k/keyring/keyring-$pkgver.tar.gz;)
+makedepends=('python-setuptools_scm' 'python2-setuptools_scm')
+checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock' 
'python-crypto' 'python2-crypto'
+  'python-secretstorage' 'python2-secretstorage' 'python-gobject' 
'python2-gobject' 'libgnome-keyring'
+  'kdebindings-python' 'kdebindings-python2' 'python2-gdata' 
'python-fs' 'python2-fs')
+md5sums=('ed60cc006c1bc629bf92e100cca952ea')
+
+prepare() {
+  cp -a keyring-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/keyring-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/keyring-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  # Not using ptr because we are not packaging keyczar
+
+  cd "$srcdir/keyring-$pkgver"
+  py.test
+
+  cd "$srcdir/keyring-$pkgver-py2"
+  py.test2
+}
+
+package_python-keyring() {
+  depends=('python-setuptools')
+  optdepends=('libgnome-keyring: Gnome integration'
+'python-gobject: Gnome integration'
+'kdebindings-python: Kde integration'
+'python-crypto: CLI keyring'
+'python-secretstorage: SecretService DBus API (GNOME/KDE)')
+
+  cd "$srcdir/keyring-$pkgver"
+  python setup.py install --root=$pkgdir --optimize=1
+}
+
+package_python2-keyring() {
+  depends=('python2-setuptools')
+  optdepends=('libgnome-keyring: Gnome integration'
+'python2-gobject: Gnome integration'
+'kdebindings-python2: Kde integration'
+'python2-crypto: CLI keyring'
+'python2-secretstorage: SecretService DBus API (GNOME/KDE)')
+
+  cd "$srcdir/keyring-$pkgver-py2"
+  python2 setup.py install --root=$pkgdir --optimize=1
+
+  mv "$pkgdir"/usr/bin/keyring{,2}
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 07:37:14
  Author: fyan
Revision: 141443

upgpkg: python-raven 5.7.2-2

rebuild for python 3.5

Modified:
  python-raven/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-22 05:32:34 UTC (rev 141442)
+++ PKGBUILD2015-09-22 05:37:14 UTC (rev 141443)
@@ -5,7 +5,7 @@
 pkgbase=python-raven
 pkgname=(python-raven python2-raven)
 pkgver=5.7.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Python client for Sentry."
 arch=(any)
 url="http://pypi.python.org/pypi/raven;
@@ -20,7 +20,7 @@
   'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
   'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
   'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
-  'python2-webpy')
+  'python2-webpy' 'python-flask-login' 'python2-flask-login')
 source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
 md5sums=('SKIP')
 
@@ -36,20 +36,20 @@
   python2 setup.py build
 }
 
-check() {
+check() {(
   # Hack distribution check by installing it
 
   cd "$srcdir/raven-python"
-  # Expected failures: No Python 3 package for flask-login.
   python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.4/site-packages:$PYTHONPATH" \
-py.test tests || warning "Tests failed"
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
+py.test tests
 
   cd "$srcdir/raven-python"
-  # Expected failures: No Python 2 package for flask-login.
   python2 setup.py install --root="$PWD/tmp_install" --optimize=1
   PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test tests || warning "Tests failed"
+py.test tests
+  ) || warning "Tests failed"
+  # pytest-django doesn't work with pytest 2.8
 }
 
 package_python-raven() {


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 06:05:59
  Author: fyan
Revision: 247051

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

Added:
  gnome-music/repos/staging-i686/
  gnome-music/repos/staging-i686/PKGBUILD
(from rev 247050, gnome-music/trunk/PKGBUILD)
  gnome-music/repos/staging-i686/gnome-music.install
(from rev 247050, gnome-music/trunk/gnome-music.install)
  gnome-music/repos/staging-x86_64/
  gnome-music/repos/staging-x86_64/PKGBUILD
(from rev 247050, gnome-music/trunk/PKGBUILD)
  gnome-music/repos/staging-x86_64/gnome-music.install
(from rev 247050, gnome-music/trunk/gnome-music.install)

+
 staging-i686/PKGBUILD  |   31 +++
 staging-i686/gnome-music.install   |   12 
 staging-x86_64/PKGBUILD|   31 +++
 staging-x86_64/gnome-music.install |   12 
 4 files changed, 86 insertions(+)

Copied: gnome-music/repos/staging-i686/PKGBUILD (from rev 247050, 
gnome-music/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-09-22 04:05:59 UTC (rev 247051)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-music
+pkgver=3.16.2
+pkgrel=2
+pkgdesc="Music player and management application"
+arch=(i686 x86_64)
+license=('GPL')
+url="https://wiki.gnome.org/Apps/Music;
+depends=(grilo grilo-plugins tracker libdmapsharing python-dbus dbus-glib 
gnome-themes-standard gtk3 gvfs python-gobject python-cairo gst-plugins-base)
+makedepends=(intltool itstool python2 gobject-introspection)
+optdepends=('gst-plugins-good: Extra media codecs'
+'gst-plugins-ugly: Extra media codecs'
+'gst-plugins-bad: Extra media codecs'
+'gst-libav: Extra media codecs')
+groups=('gnome-extra')
+install=gnome-music.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('362cf90f6cd41c38845b7afa01ce2f5fbb70ce7694139a69f5dac16620723588')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make -j1 DESTDIR="${pkgdir}" install
+}

Copied: gnome-music/repos/staging-i686/gnome-music.install (from rev 247050, 
gnome-music/trunk/gnome-music.install)
===
--- staging-i686/gnome-music.install(rev 0)
+++ staging-i686/gnome-music.install2015-09-22 04:05:59 UTC (rev 247051)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: gnome-music/repos/staging-x86_64/PKGBUILD (from rev 247050, 
gnome-music/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-09-22 04:05:59 UTC (rev 247051)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-music
+pkgver=3.16.2
+pkgrel=2
+pkgdesc="Music player and management application"
+arch=(i686 x86_64)
+license=('GPL')
+url="https://wiki.gnome.org/Apps/Music;
+depends=(grilo grilo-plugins tracker libdmapsharing python-dbus dbus-glib 
gnome-themes-standard gtk3 gvfs python-gobject python-cairo gst-plugins-base)
+makedepends=(intltool itstool python2 gobject-introspection)
+optdepends=('gst-plugins-good: Extra media codecs'
+'gst-plugins-ugly: Extra media codecs'
+'gst-plugins-bad: Extra media codecs'
+'gst-libav: Extra media codecs')
+groups=('gnome-extra')
+install=gnome-music.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('362cf90f6cd41c38845b7afa01ce2f5fbb70ce7694139a69f5dac16620723588')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make -j1 DESTDIR="${pkgdir}" install
+}

Copied: gnome-music/repos/staging-x86_64/gnome-music.install (from rev 247050, 
gnome-music/trunk/gnome-music.install)
===
--- staging-x86_64/gnome-music.install  (rev 0)
+++ staging-x86_64/gnome-music.install  2015-09-22 04:05:59 UTC (rev 247051)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 06:05:14
  Author: fyan
Revision: 247050

upgpkg: gnome-music 3.16.2-2

rebuild for python 3.5

Modified:
  gnome-music/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-22 03:52:45 UTC (rev 247049)
+++ PKGBUILD2015-09-22 04:05:14 UTC (rev 247050)
@@ -3,7 +3,7 @@
 
 pkgname=gnome-music
 pkgver=3.16.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Music player and management application"
 arch=(i686 x86_64)
 license=('GPL')


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

2015-09-21 Thread Gaetan Bisson
Date: Tuesday, September 22, 2015 @ 06:13:07
  Author: bisson
Revision: 247053

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

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 247052, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 247052, gnupg/trunk/install)
  gnupg/repos/testing-i686/ssh-ed25519.patch
(from rev 247052, gnupg/trunk/ssh-ed25519.patch)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 247052, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 247052, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/ssh-ed25519.patch
(from rev 247052, gnupg/trunk/ssh-ed25519.patch)

--+
 testing-i686/PKGBUILD|   66 +
 testing-i686/install |   25 ++
 testing-i686/ssh-ed25519.patch   |   60 +
 testing-x86_64/PKGBUILD  |   66 +
 testing-x86_64/install   |   25 ++
 testing-x86_64/ssh-ed25519.patch |   60 +
 6 files changed, 302 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 247052, 
gnupg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-22 04:13:07 UTC (rev 247053)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.8
+pkgrel=3
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig}
+'ssh-ed25519.patch')
+sha1sums=('61f5bc656dd7fddd4ab67b720d47ef0651bfb727' 'SKIP'
+  'fd77cf366f6bd70c1d33e910044612aebe6bbe63')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+   patch -p1 -i ../ssh-ed25519.patch
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+   --enable-gpgtar \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg2 "${pkgdir}"/usr/bin/gpg
+   ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
+   ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
+   rm "${pkgdir}/usr/share/gnupg/com-certs.pem" # FS#33059
+}

Copied: gnupg/repos/testing-i686/install (from rev 247052, gnupg/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2015-09-22 04:13:07 UTC (rev 247053)
@@ -0,0 +1,25 @@
+info_dir=/usr/share/info
+info_files=(gnupg.info gnupg.info-1 gnupg.info-2)
+
+post_install() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info ${info_dir}/$f ${info_dir}/dir 2> /dev/null
+   done
+}
+
+pre_remove() {
+   [ -x usr/bin/install-info ] || return 0
+   for f in ${info_files[@]}; do
+   usr/bin/install-info --delete ${info_dir}/$f ${info_dir}/dir 2> 
/dev/null
+   done
+}
+
+post_upgrade() {
+   post_install
+
+   # Fix upgrade to 2.1; see FS#42798
+   [ $(vercmp $2 2.1.0-4) = -1 ] &&
+   dirmngr /dev/null ||
+   return 0
+}

Copied: gnupg/repos/testing-i686/ssh-ed25519.patch (from rev 247052, 
gnupg/trunk/ssh-ed25519.patch)
===
--- testing-i686/ssh-ed25519.patch  (rev 0)
+++ testing-i686/ssh-ed25519.patch  2015-09-22 04:13:07 UTC (rev 247053)
@@ -0,0 +1,60 @@

[arch-commits] Commit in gnupg/trunk (PKGBUILD ssh-ed25519.patch)

2015-09-21 Thread Gaetan Bisson
Date: Tuesday, September 22, 2015 @ 06:12:35
  Author: bisson
Revision: 247052

fix FS#46378

Added:
  gnupg/trunk/ssh-ed25519.patch
Modified:
  gnupg/trunk/PKGBUILD

---+
 PKGBUILD  |9 +--
 ssh-ed25519.patch |   60 
 2 files changed, 66 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-22 04:05:59 UTC (rev 247051)
+++ PKGBUILD2015-09-22 04:12:35 UTC (rev 247052)
@@ -6,7 +6,7 @@
 
 pkgname=gnupg
 pkgver=2.1.8
-pkgrel=2
+pkgrel=3
 pkgdesc='Complete and free implementation of the OpenPGP standard'
 url='http://www.gnupg.org/'
 license=('GPL')
@@ -20,8 +20,10 @@
   '46CC730865BB5C78EBABADCF04376F3EE0856959'
   '031EC2536E580D8EA286A9F22071B08A33BD3F06'
   'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
-source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
-sha1sums=('61f5bc656dd7fddd4ab67b720d47ef0651bfb727' 'SKIP')
+source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig}
+'ssh-ed25519.patch')
+sha1sums=('61f5bc656dd7fddd4ab67b720d47ef0651bfb727' 'SKIP'
+  'fd77cf366f6bd70c1d33e910044612aebe6bbe63')
 
 install=install
 
@@ -32,6 +34,7 @@
 prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+   patch -p1 -i ../ssh-ed25519.patch
 }
 
 build() {

Added: ssh-ed25519.patch
===
--- ssh-ed25519.patch   (rev 0)
+++ ssh-ed25519.patch   2015-09-22 04:12:35 UTC (rev 247052)
@@ -0,0 +1,60 @@
+From 7d5999f0964c9412c0e18eb1adefdb729be68cd4 Mon Sep 17 00:00:00 2001
+From: NIIBE Yutaka 
+Date: Wed, 16 Sep 2015 10:37:38 +0900
+Subject: [PATCH] agent: Fix registering SSH Key of Ed25519.
+
+* agent/command-ssh.c (stream_read_string): Add the prefix of 0x40.
+
+--
+
+GnuPG-bug-id: 2096
+---
+ agent/command-ssh.c | 14 --
+ 1 file changed, 8 insertions(+), 6 deletions(-)
+
+diff --git a/agent/command-ssh.c b/agent/command-ssh.c
+index 8868620..8be1255 100644
+--- a/agent/command-ssh.c
 b/agent/command-ssh.c
+@@ -580,8 +580,9 @@ stream_read_string (estream_t stream, unsigned int secure,
+ 
+ 
+ /* Read a binary string from STREAM and store it as an opaque MPI at
+-   R_MPI.  Depending on SECURE use secure memory.  If the string is
+-   too large for key material return an error.  */
++   R_MPI, adding 0x40 (this is the prefix for EdDSA key in OpenPGP).
++   Depending on SECURE use secure memory.  If the string is too large
++   for key material return an error.  */
+ static gpg_error_t
+ stream_read_blob (estream_t stream, unsigned int secure, gcry_mpi_t *r_mpi)
+ {
+@@ -607,9 +608,9 @@ stream_read_blob (estream_t stream, unsigned int secure, 
gcry_mpi_t *r_mpi)
+ 
+   /* Allocate space.  */
+   if (secure)
+-buffer = xtrymalloc_secure (length? length:1);
++buffer = xtrymalloc_secure (length+1);
+   else
+-buffer = xtrymalloc (length?length:1);
++buffer = xtrymalloc (length+1);
+   if (!buffer)
+ {
+   err = gpg_error_from_syserror ();
+@@ -617,11 +618,12 @@ stream_read_blob (estream_t stream, unsigned int secure, 
gcry_mpi_t *r_mpi)
+ }
+ 
+   /* Read data.  */
+-  err = stream_read_data (stream, buffer, length);
++  err = stream_read_data (stream, buffer + 1, length);
+   if (err)
+ goto leave;
+ 
+-  *r_mpi = gcry_mpi_set_opaque (NULL, buffer, 8*length);
++  buffer[0] = 0x40;
++  *r_mpi = gcry_mpi_set_opaque (NULL, buffer, 8*(length+1));
+   buffer = NULL;
+ 
+  leave:
+-- 
+2.1.4
+


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 06:12:07
  Author: fyan
Revision: 141436

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

Added:
  hexchat/repos/community-staging-i686/
  hexchat/repos/community-staging-i686/PKGBUILD
(from rev 141435, hexchat/trunk/PKGBUILD)
  hexchat/repos/community-staging-i686/hexchat.install
(from rev 141435, hexchat/trunk/hexchat.install)
  hexchat/repos/community-staging-x86_64/
  hexchat/repos/community-staging-x86_64/PKGBUILD
(from rev 141435, hexchat/trunk/PKGBUILD)
  hexchat/repos/community-staging-x86_64/hexchat.install
(from rev 141435, hexchat/trunk/hexchat.install)

--+
 community-staging-i686/PKGBUILD  |   45 +
 community-staging-i686/hexchat.install   |   14 +
 community-staging-x86_64/PKGBUILD|   45 +
 community-staging-x86_64/hexchat.install |   14 +
 4 files changed, 118 insertions(+)

Copied: hexchat/repos/community-staging-i686/PKGBUILD (from rev 141435, 
hexchat/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-22 04:12:07 UTC (rev 141436)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: TingPing 
+
+pkgname=hexchat
+pkgver=2.10.2
+pkgrel=4
+pkgdesc='A popular and easy to use graphical IRC (chat) client'
+arch=('i686' 'x86_64')
+url='http://hexchat.github.io/'
+license=('GPL')
+depends=('dbus-glib' 'desktop-file-utils' 'gtk2' 'libcanberra' 'libnotify'
+ 'libproxy' 'pciutils')
+makedepends=('intltool' 'iso-codes' 'perl' 'python')
+optdepends=('enchant: Spell check'
+'perl: Perl plugin'
+'python: Python plugin')
+install='hexchat.install'
+source=("http://dl.hexchat.net/hexchat/hexchat-${pkgver}.tar.xz;)
+sha256sums=('87ebf365c576656fa3f23f51d319b3a6d279e4a932f2f8961d891dd5a5e1b52c')
+
+prepare() {
+  cd hexchat-${pkgver}
+
+#  sed 's/CFLAGS="$PERL_CFLAGS"/CFLAGS="$PERL_CFLAGS -fuse-ld=gold"/' -i 
configure
+  sed -i 's/python-3.4/python-3.5/' configure
+}
+
+build() {
+  cd hexchat-${pkgver}
+
+  ./configure \
+--prefix='/usr' \
+--enable-python='python3' \
+--enable-textfe
+  make
+}
+
+package() {
+  cd hexchat-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Copied: hexchat/repos/community-staging-i686/hexchat.install (from rev 141435, 
hexchat/trunk/hexchat.install)
===
--- community-staging-i686/hexchat.install  (rev 0)
+++ community-staging-i686/hexchat.install  2015-09-22 04:12:07 UTC (rev 
141436)
@@ -0,0 +1,14 @@
+post_install() {
+  gtk-update-icon-cache -ftq usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim: ts=2 sw=2 et:

Copied: hexchat/repos/community-staging-x86_64/PKGBUILD (from rev 141435, 
hexchat/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-22 04:12:07 UTC (rev 141436)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: TingPing 
+
+pkgname=hexchat
+pkgver=2.10.2
+pkgrel=4
+pkgdesc='A popular and easy to use graphical IRC (chat) client'
+arch=('i686' 'x86_64')
+url='http://hexchat.github.io/'
+license=('GPL')
+depends=('dbus-glib' 'desktop-file-utils' 'gtk2' 'libcanberra' 'libnotify'
+ 'libproxy' 'pciutils')
+makedepends=('intltool' 'iso-codes' 'perl' 'python')
+optdepends=('enchant: Spell check'
+'perl: Perl plugin'
+'python: Python plugin')
+install='hexchat.install'
+source=("http://dl.hexchat.net/hexchat/hexchat-${pkgver}.tar.xz;)
+sha256sums=('87ebf365c576656fa3f23f51d319b3a6d279e4a932f2f8961d891dd5a5e1b52c')
+
+prepare() {
+  cd hexchat-${pkgver}
+
+#  sed 's/CFLAGS="$PERL_CFLAGS"/CFLAGS="$PERL_CFLAGS -fuse-ld=gold"/' -i 
configure
+  sed -i 's/python-3.4/python-3.5/' configure
+}
+
+build() {
+  cd hexchat-${pkgver}
+
+  ./configure \
+--prefix='/usr' \
+--enable-python='python3' \
+--enable-textfe
+  make
+}
+
+package() {
+  cd hexchat-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Copied: hexchat/repos/community-staging-x86_64/hexchat.install (from rev 
141435, hexchat/trunk/hexchat.install)
===
--- community-staging-x86_64/hexchat.install(rev 0)
+++ community-staging-x86_64/hexchat.install2015-09-22 04:12:07 UTC (rev 
141436)
@@ -0,0 +1,14 @@
+post_install() {
+  gtk-update-icon-cache -ftq 

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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 06:36:53
  Author: fyan
Revision: 247058

upgpkg: hplip 3.15.9-2

rebuild for python 3.5

Modified:
  hplip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-22 04:25:15 UTC (rev 247057)
+++ PKGBUILD2015-09-22 04:36:53 UTC (rev 247058)
@@ -6,7 +6,7 @@
 
 pkgname=hplip
 pkgver=3.15.9
-pkgrel=1
+pkgrel=2
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com;


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 05:52:45
  Author: fyan
Revision: 247049

archrelease: copy trunk to staging-any

Added:
  orca/repos/staging-any/
  orca/repos/staging-any/PKGBUILD
(from rev 247048, orca/trunk/PKGBUILD)
  orca/repos/staging-any/orca.install
(from rev 247048, orca/trunk/orca.install)

--+
 PKGBUILD |   30 ++
 orca.install |   11 +++
 2 files changed, 41 insertions(+)

Copied: orca/repos/staging-any/PKGBUILD (from rev 247048, orca/trunk/PKGBUILD)
===
--- staging-any/PKGBUILD(rev 0)
+++ staging-any/PKGBUILD2015-09-22 03:52:45 UTC (rev 247049)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: William Rea 
+
+pkgname=orca
+pkgver=3.16.2
+pkgrel=2
+pkgdesc="Screen reader for individuals who are blind or visually impaired"
+arch=(any)
+license=('LGPL')
+url="http://www.gnome.org/projects/orca;
+install=orca.install
+depends=(gtk3 at-spi2-atk python-atspi python-dbus python-xdg 
speech-dispatcher liblouis brltty
+ xorg-xmodmap hicolor-icon-theme gsettings-desktop-schemas)
+makedepends=(itstool intltool python2)
+groups=(gnome-extra)
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('cd14b28878cc04166ec43c7d9a8e6b0056c66cbfb1e4f934f12f74568937789a')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: orca/repos/staging-any/orca.install (from rev 247048, 
orca/trunk/orca.install)
===
--- staging-any/orca.install(rev 0)
+++ staging-any/orca.install2015-09-22 03:52:45 UTC (rev 247049)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 05:52:27
  Author: fyan
Revision: 247048

upgpkg: orca 3.16.2-2

rebuild for python 3.5

Modified:
  orca/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-22 03:33:51 UTC (rev 247047)
+++ PKGBUILD2015-09-22 03:52:27 UTC (rev 247048)
@@ -5,7 +5,7 @@
 
 pkgname=orca
 pkgver=3.16.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Screen reader for individuals who are blind or visually impaired"
 arch=(any)
 license=('LGPL')


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 06:14:43
  Author: fyan
Revision: 247054

upgpkg: gedit 3.16.3-2

rebuild for python 3.5

Modified:
  gedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-22 04:13:07 UTC (rev 247053)
+++ PKGBUILD2015-09-22 04:14:43 UTC (rev 247054)
@@ -4,7 +4,7 @@
 
 pkgname=gedit
 pkgver=3.16.3
-pkgrel=1
+pkgrel=2
 pkgdesc="A text editor for GNOME"
 arch=(i686 x86_64)
 license=(GPL)


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

2015-09-21 Thread Evangelos Foutras
Date: Tuesday, September 22, 2015 @ 06:25:15
  Author: foutrelis
Revision: 247057

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

Added:
  chromium/repos/extra-i686/0001-Demand-for-newer-POSIX-macro.patch
(from rev 247056, chromium/trunk/0001-Demand-for-newer-POSIX-macro.patch)
  chromium/repos/extra-i686/PKGBUILD
(from rev 247056, chromium/trunk/PKGBUILD)
  chromium/repos/extra-i686/chromium-widevine.patch
(from rev 247056, chromium/trunk/chromium-widevine.patch)
  chromium/repos/extra-i686/chromium.desktop
(from rev 247056, chromium/trunk/chromium.desktop)
  chromium/repos/extra-i686/chromium.install
(from rev 247056, chromium/trunk/chromium.install)
  chromium/repos/extra-x86_64/0001-Demand-for-newer-POSIX-macro.patch
(from rev 247056, chromium/trunk/0001-Demand-for-newer-POSIX-macro.patch)
  chromium/repos/extra-x86_64/PKGBUILD
(from rev 247056, chromium/trunk/PKGBUILD)
  chromium/repos/extra-x86_64/chromium-widevine.patch
(from rev 247056, chromium/trunk/chromium-widevine.patch)
  chromium/repos/extra-x86_64/chromium.desktop
(from rev 247056, chromium/trunk/chromium.desktop)
  chromium/repos/extra-x86_64/chromium.install
(from rev 247056, chromium/trunk/chromium.install)
Deleted:
  chromium/repos/extra-i686/0001-Demand-for-newer-POSIX-macro.patch
  chromium/repos/extra-i686/PKGBUILD
  chromium/repos/extra-i686/chromium-widevine.patch
  chromium/repos/extra-i686/chromium.desktop
  chromium/repos/extra-i686/chromium.install
  chromium/repos/extra-x86_64/0001-Demand-for-newer-POSIX-macro.patch
  chromium/repos/extra-x86_64/PKGBUILD
  chromium/repos/extra-x86_64/chromium-widevine.patch
  chromium/repos/extra-x86_64/chromium.desktop
  chromium/repos/extra-x86_64/chromium.install

--+
 /0001-Demand-for-newer-POSIX-macro.patch |   72 +++
 /PKGBUILD|  408 +
 /chromium-widevine.patch |   24 +
 /chromium.desktop|  224 +
 /chromium.install|   54 ++
 extra-i686/0001-Demand-for-newer-POSIX-macro.patch   |   36 -
 extra-i686/PKGBUILD  |  204 
 extra-i686/chromium-widevine.patch   |   12 
 extra-i686/chromium.desktop  |  112 
 extra-i686/chromium.install  |   27 -
 extra-x86_64/0001-Demand-for-newer-POSIX-macro.patch |   36 -
 extra-x86_64/PKGBUILD|  204 
 extra-x86_64/chromium-widevine.patch |   12 
 extra-x86_64/chromium.desktop|  112 
 extra-x86_64/chromium.install|   27 -
 15 files changed, 782 insertions(+), 782 deletions(-)

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


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 05:46:25
  Author: fyan
Revision: 141434

archrelease: copy trunk to community-staging-any

Added:
  lollypop/repos/community-staging-any/
  lollypop/repos/community-staging-any/PKGBUILD
(from rev 141433, lollypop/trunk/PKGBUILD)
  lollypop/repos/community-staging-any/lollypop.install
(from rev 141433, lollypop/trunk/lollypop.install)

--+
 PKGBUILD |   38 ++
 lollypop.install |   15 +++
 2 files changed, 53 insertions(+)

Copied: lollypop/repos/community-staging-any/PKGBUILD (from rev 141433, 
lollypop/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-09-22 03:46:25 UTC (rev 141434)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: kirek 
+# Contributor: Cédric Bellegarde 
+
+pkgname=lollypop
+pkgver=0.9.42
+pkgrel=3
+pkgdesc='Music player for GNOME'
+arch=('any')
+url='https://github.com/gnumdk/lollypop'
+license=('GPL')
+depends=('desktop-file-utils' 'gtk3' 'python-cairo'
+ 'python-dbus' 'python-gobject' 'totem-plparser')
+makedepends=('gobject-introspection' 'intltool' 'itstool' 'python')
+optdepends=('libsecret: Last.FM support'
+'python-pylast: Last.FM support'
+'python-wikipedia: Wikipedia support')
+install='lollypop.install'
+source=("https://github.com/gnumdk/lollypop/releases/download/${pkgver}/lollypop-${pkgver}.tar.xz;)
+sha256sums=('65d44d073a249d9c9562ed1bbda65bb28173ab86df5dd045034b34e346110d20')
+
+build() {
+  cd lollypop-${pkgver}
+
+  ./configure \
+--prefix='/usr' \
+--disable-schemas-compile
+  make
+}
+
+package() {
+  cd lollypop-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Copied: lollypop/repos/community-staging-any/lollypop.install (from rev 141433, 
lollypop/trunk/lollypop.install)
===
--- community-staging-any/lollypop.install  (rev 0)
+++ community-staging-any/lollypop.install  2015-09-22 03:46:25 UTC (rev 
141434)
@@ -0,0 +1,15 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -ftq /usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim: ts=2 sw=2 et:


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 05:46:05
  Author: fyan
Revision: 141433

upgpkg: lollypop 0.9.42-3

rebuild for python 3.5

Modified:
  lollypop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-22 03:29:03 UTC (rev 141432)
+++ PKGBUILD2015-09-22 03:46:05 UTC (rev 141433)
@@ -5,7 +5,7 @@
 
 pkgname=lollypop
 pkgver=0.9.42
-pkgrel=2
+pkgrel=3
 pkgdesc='Music player for GNOME'
 arch=('any')
 url='https://github.com/gnumdk/lollypop'


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

2015-09-21 Thread Gaetan Bisson
Date: Tuesday, September 22, 2015 @ 06:19:53
  Author: bisson
Revision: 141438

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

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

--+
 /PKGBUILD|  112 +
 /install |   34 
 /service |   26 +
 /tmpfiles.d  |2 
 community-i686/PKGBUILD  |   49 -
 community-i686/hints.patch   |   13 
 community-i686/install   |   17 --
 community-i686/service   |   13 
 community-i686/tmpfiles.d|1 
 community-x86_64/PKGBUILD|   49 -
 community-x86_64/hints.patch |   13 
 community-x86_64/install |   17 --
 community-x86_64/service |   13 
 community-x86_64/tmpfiles.d  |1 
 14 files changed, 200 insertions(+), 160 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-22 04:19:06 UTC (rev 141437)
+++ community-i686/PKGBUILD 2015-09-22 04:19:53 UTC (rev 141438)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Kaiting Chen 
-# Contributor: Roberto Alsina 
-
-pkgname=nsd
-pkgver=4.1.4
-pkgrel=1
-pkgdesc='Authoritative only, high performance and simple DNS server'
-url='http://www.nlnetlabs.nl/nsd/'
-license=('BSD')
-arch=('i686' 'x86_64')
-depends=('openssl' 'libevent')
-makedepends=('flex')
-source=("http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz;
-'tmpfiles.d'
-'service')
-sha256sums=('d6e0e9cd1f637a3b4bfa48dba47b1564408eb531c57f6a3dda1a2d529df800f0'
-'8e72816177069d6b82306c4b61ca4d0eefd2a77a31ea79c50635eea5aecf8c5b'
-'5ec7616df32c29ddec25a6ec772db5053e234410cf1042f2945d0f554b1f9b65')
-
-install=install
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/ \
-   --sbindir=/usr/bin \
-   --datarootdir=/usr/share \
-   --with-pidfile=/run/nsd/nsd.pid \
-   --enable-ratelimit \
-   --enable-relro-now \
-   --enable-pie \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/nsd.conf
-   install -Dm644 ../service "${pkgdir}"/usr/lib/systemd/system/nsd.service
-   rmdir "${pkgdir}"/{tmp,run/{nsd,}}
-
-   rm doc/differences.pdf
-   install -d "${pkgdir}"/usr/share/{doc,licenses}/"${pkgname}"
-   install -m644 doc/* "${pkgdir}"/usr/share/doc/"${pkgname}"
-   ln -s ../../doc/"${pkgname}"/LICENSE 
"${pkgdir}"/usr/share/licenses/"${pkgname}"/LICENSE
-}

Copied: nsd/repos/community-i686/PKGBUILD (from rev 141437, nsd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-22 04:19:53 UTC (rev 141438)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Kaiting Chen 
+# Contributor: Roberto Alsina 
+
+pkgname=nsd
+pkgver=4.1.4
+pkgrel=2
+pkgdesc='Authoritative only, high performance and simple DNS server'
+url='http://www.nlnetlabs.nl/nsd/'
+license=('BSD')
+arch=('i686' 'x86_64')
+depends=('openssl' 'libevent')
+makedepends=('flex')
+source=("http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+'hints.patch'
+'tmpfiles.d'
+'service')
+sha256sums=('d6e0e9cd1f637a3b4bfa48dba47b1564408eb531c57f6a3dda1a2d529df800f0'
+'11cd5d6e5dc9bf3cda9024d1c0dfab8eb3ba00c3aa8e03dd078a580db4151dcb'
+  

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

2015-09-21 Thread Gaetan Bisson
Date: Tuesday, September 22, 2015 @ 06:19:06
  Author: bisson
Revision: 141437

fix FS#46273

Added:
  nsd/trunk/hints.patch
Modified:
  nsd/trunk/PKGBUILD

-+
 PKGBUILD|9 -
 hints.patch |   13 +
 2 files changed, 21 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-22 04:12:07 UTC (rev 141436)
+++ PKGBUILD2015-09-22 04:19:06 UTC (rev 141437)
@@ -5,7 +5,7 @@
 
 pkgname=nsd
 pkgver=4.1.4
-pkgrel=1
+pkgrel=2
 pkgdesc='Authoritative only, high performance and simple DNS server'
 url='http://www.nlnetlabs.nl/nsd/'
 license=('BSD')
@@ -13,14 +13,21 @@
 depends=('openssl' 'libevent')
 makedepends=('flex')
 
source=("http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+'hints.patch'
 'tmpfiles.d'
 'service')
 sha256sums=('d6e0e9cd1f637a3b4bfa48dba47b1564408eb531c57f6a3dda1a2d529df800f0'
+'11cd5d6e5dc9bf3cda9024d1c0dfab8eb3ba00c3aa8e03dd078a580db4151dcb'
 '8e72816177069d6b82306c4b61ca4d0eefd2a77a31ea79c50635eea5aecf8c5b'
 '5ec7616df32c29ddec25a6ec772db5053e234410cf1042f2945d0f554b1f9b65')
 
 install=install
 
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p0 -i ../hints.patch
+}
+
 build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure \

Added: hints.patch
===
--- hints.patch (rev 0)
+++ hints.patch 2015-09-22 04:19:06 UTC (rev 141437)
@@ -0,0 +1,13 @@
+Index: nsd.c
+===
+--- nsd.c  (revision 4501)
 nsd.c  (revision 4502)
+@@ -447,6 +447,8 @@
+   memset(, 0, sizeof(*hints)*2);
+   hints[0].ai_family = DEFAULT_AI_FAMILY;
+   hints[0].ai_flags = AI_PASSIVE;
++  hints[1].ai_family = DEFAULT_AI_FAMILY;
++  hints[1].ai_flags = AI_PASSIVE;
+   nsd.identity= 0;
+   nsd.version = VERSION;
+   nsd.username= 0;


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 07:32:34
  Author: fyan
Revision: 141442

archrelease: copy trunk to community-staging-any

Added:
  python-wheel/repos/community-staging-any/
  python-wheel/repos/community-staging-any/PKGBUILD
(from rev 141441, python-wheel/trunk/PKGBUILD)

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

Copied: python-wheel/repos/community-staging-any/PKGBUILD (from rev 141441, 
python-wheel/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-09-22 05:32:34 UTC (rev 141442)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Lance Chen 
+
+_pypiname=wheel
+pkgbase=python-wheel
+pkgname=('python-wheel' 'python2-wheel')
+pkgver=0.26.0
+pkgrel=2
+pkgdesc="A built-package format for Python"
+arch=(any)
+url="https://pypi.python.org/pypi/wheel;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-jsonschema' 'python2-jsonschema' 'python-pytest-cov' 
'python2-pytest-cov'
+  'python-keyring' 'python2-keyring')
+source=("https://pypi.python.org/packages/source/w/wheel/$_pypiname-$pkgver.tar.gz;)
+md5sums=('4cfc6e7e3dc7377d0164914623922a10')
+
+prepare() {
+  cp -a wheel-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/wheel-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/wheel-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd "$srcdir/wheel-$pkgver"
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" 
py.test wheel
+
+  cd "$srcdir/wheel-$pkgver-py2"
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2 wheel
+}
+
+package_python-wheel() {
+  depends=('python')
+  optdepends=('python-keyring: for wheel.signatures')
+
+  cd "$srcdir/$_pypiname-$pkgver"
+  python setup.py install --root="$pkgdir/" --optimize=1
+  install -D -m644 LICENSE.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}
+
+package_python2-wheel() {
+  depends=('python2')
+  optdepends=('python2-keyring: for wheel.signatures')
+
+  cd "$srcdir/$_pypiname-$pkgver"
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+  install -D -m644 LICENSE.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+  mv "$pkgdir/usr/bin/wheel" "$pkgdir/usr/bin/wheel2"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in linux/repos (40 files)

2015-09-21 Thread Tobias Powalowski
Date: Tuesday, September 22, 2015 @ 07:59:35
  Author: tpowa
Revision: 247063

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

Added:
  
linux/repos/testing-i686/0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch
(from rev 247062, 
linux/trunk/0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch)
  linux/repos/testing-i686/0001-fix-bridge-regression.patch
(from rev 247062, linux/trunk/0001-fix-bridge-regression.patch)
  linux/repos/testing-i686/0001-make_flush_workqueue_non_gpl.patch
(from rev 247062, linux/trunk/0001-make_flush_workqueue_non_gpl.patch)
  
linux/repos/testing-i686/0001-netfilter-conntrack-use-nf_ct_tmpl_free-in-CT-synpro.patch
(from rev 247062, 
linux/trunk/0001-netfilter-conntrack-use-nf_ct_tmpl_free-in-CT-synpro.patch)
  linux/repos/testing-i686/PKGBUILD
(from rev 247062, linux/trunk/PKGBUILD)
  linux/repos/testing-i686/change-default-console-loglevel.patch
(from rev 247062, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-i686/config
(from rev 247062, linux/trunk/config)
  linux/repos/testing-i686/config.x86_64
(from rev 247062, linux/trunk/config.x86_64)
  linux/repos/testing-i686/linux.install
(from rev 247062, linux/trunk/linux.install)
  linux/repos/testing-i686/linux.preset
(from rev 247062, linux/trunk/linux.preset)
  
linux/repos/testing-x86_64/0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch
(from rev 247062, 
linux/trunk/0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch)
  linux/repos/testing-x86_64/0001-fix-bridge-regression.patch
(from rev 247062, linux/trunk/0001-fix-bridge-regression.patch)
  linux/repos/testing-x86_64/0001-make_flush_workqueue_non_gpl.patch
(from rev 247062, linux/trunk/0001-make_flush_workqueue_non_gpl.patch)
  
linux/repos/testing-x86_64/0001-netfilter-conntrack-use-nf_ct_tmpl_free-in-CT-synpro.patch
(from rev 247062, 
linux/trunk/0001-netfilter-conntrack-use-nf_ct_tmpl_free-in-CT-synpro.patch)
  linux/repos/testing-x86_64/PKGBUILD
(from rev 247062, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 247062, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-x86_64/config
(from rev 247062, linux/trunk/config)
  linux/repos/testing-x86_64/config.x86_64
(from rev 247062, linux/trunk/config.x86_64)
  linux/repos/testing-x86_64/linux.install
(from rev 247062, linux/trunk/linux.install)
  linux/repos/testing-x86_64/linux.preset
(from rev 247062, linux/trunk/linux.preset)
Deleted:
  
linux/repos/testing-i686/0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch
  linux/repos/testing-i686/0001-fix-bridge-regression.patch
  linux/repos/testing-i686/0001-make_flush_workqueue_non_gpl.patch
  
linux/repos/testing-i686/0001-netfilter-conntrack-use-nf_ct_tmpl_free-in-CT-synpro.patch
  linux/repos/testing-i686/PKGBUILD
  linux/repos/testing-i686/change-default-console-loglevel.patch
  linux/repos/testing-i686/config
  linux/repos/testing-i686/config.x86_64
  linux/repos/testing-i686/linux.install
  linux/repos/testing-i686/linux.preset
  
linux/repos/testing-x86_64/0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch
  linux/repos/testing-x86_64/0001-fix-bridge-regression.patch
  linux/repos/testing-x86_64/0001-make_flush_workqueue_non_gpl.patch
  
linux/repos/testing-x86_64/0001-netfilter-conntrack-use-nf_ct_tmpl_free-in-CT-synpro.patch
  linux/repos/testing-x86_64/PKGBUILD
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
  linux/repos/testing-x86_64/config
  linux/repos/testing-x86_64/config.x86_64
  linux/repos/testing-x86_64/linux.install
  linux/repos/testing-x86_64/linux.preset

+
 /0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch   
|  130 
 /0001-fix-bridge-regression.patch  
|   50 
 /0001-make_flush_workqueue_non_gpl.patch   
|   68 
 /0001-netfilter-conntrack-use-nf_ct_tmpl_free-in-CT-synpro.patch   
|  206 
 /PKGBUILD  
|  628 
 /change-default-console-loglevel.patch 
|   22 
 /config
|15442 ++
 /config.x86_64 
|14946 +
 /linux.install 
|   74 
 /linux.preset  
|   28 
 testing-i686/0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch   
|   65 
 testing-i686/0001-fix-bridge-regression.patch  
|   25 
 testing-i686/0001-make_flush_workqueue_non_gpl.patch

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

2015-09-21 Thread Tobias Powalowski
Date: Tuesday, September 22, 2015 @ 07:59:12
  Author: tpowa
Revision: 247062

upgpkg: linux 4.2.1-1

bump to latest version

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-22 05:16:37 UTC (rev 247061)
+++ PKGBUILD2015-09-22 05:59:12 UTC (rev 247062)
@@ -5,8 +5,8 @@
 pkgbase=linux   # Build stock -ARCH kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-4.2
-pkgver=4.2
-pkgrel=4
+pkgver=4.2.1
+pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.kernel.org/;
 license=('GPL2')
@@ -14,8 +14,8 @@
 options=('!strip')
 source=("https://www.kernel.org/pub/linux/kernel/v4.x/${_srcname}.tar.xz;
 "https://www.kernel.org/pub/linux/kernel/v4.x/${_srcname}.tar.sign;
-#"https://www.kernel.org/pub/linux/kernel/v4.x/patch-${pkgver}.xz;
-#"https://www.kernel.org/pub/linux/kernel/v4.x/patch-${pkgver}.sign;
+"https://www.kernel.org/pub/linux/kernel/v4.x/patch-${pkgver}.xz;
+"https://www.kernel.org/pub/linux/kernel/v4.x/patch-${pkgver}.sign;
 # the main kernel config files
 'config' 'config.x86_64'
 # standard config files for mkinitcpio ramdisk
@@ -27,6 +27,8 @@
 '0001-fix-bridge-regression.patch')
 sha256sums=('cf20e044f17588d2a42c8f2a450b0fd84dfdbd579b489d93e9ab7d0e8b45dbeb'
 'SKIP'
+'9d0ab6525eb5f42056e2465267c62fa67efc75c57ad5345b99414b783278e9a3'
+'SKIP'
 'e6f6f804f98ad321ce3e4395924993b51decb89699fde369391ccbb4bae928b2'
 'a071aaa327d2b3577fa4709b47ed5fe81c7914d168607f3db905fdbf226247e7'
 'f0d90e756f14533ee67afda280500511a62465b4f76adcc5effa95a40045179c'
@@ -46,7 +48,7 @@
   cd "${srcdir}/${_srcname}"
 
   # add upstream patch
-  #patch -p1 -i "${srcdir}/patch-${pkgver}"
+  patch -p1 -i "${srcdir}/patch-${pkgver}"
 
   # add latest fixes from stable queue, if needed
   # http://git.kernel.org/?p=linux/kernel/git/stable/stable-queue.git


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 05:17:58
  Author: fyan
Revision: 141430

archrelease: copy trunk to community-staging-any

Added:
  python-pyjwt/repos/community-staging-any/
  python-pyjwt/repos/community-staging-any/PKGBUILD
(from rev 141429, python-pyjwt/trunk/PKGBUILD)

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

Copied: python-pyjwt/repos/community-staging-any/PKGBUILD (from rev 141429, 
python-pyjwt/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-09-22 03:17:58 UTC (rev 141430)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pyjwt
+pkgname=('python-pyjwt' 'python2-pyjwt')
+pkgver=1.4.0
+pkgrel=1
+pkgdesc='JSON Web Token implementation in Python'
+arch=('any')
+url='http://github.com/jpadilla/pyjwt'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-cov' 'python2-pytest-cov')
+source=("git+https://github.com/jpadilla/pyjwt.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a pyjwt{,-py2}
+}
+
+build() {
+  cd "$srcdir/pyjwt"
+  python setup.py build
+
+  cd "$srcdir/pyjwt-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/pyjwt"
+  python setup.py ptr
+
+  cd "$srcdir/pyjwt-py2"
+  python2 setup.py ptr || warning "Tests failed"
+}
+
+package_python-pyjwt() {
+  depends=('python-setuptools')
+
+  cd "$srcdir/pyjwt"
+  python3 setup.py install --root="$pkgdir" -O1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-pyjwt() {
+  depends=('python2-setuptools')
+
+  cd "$srcdir/pyjwt-py2"
+  python2 setup.py install --root="$pkgdir" -O1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  mv "$pkgdir/usr/bin/jwt"{,2}
+}
+


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 05:33:51
  Author: fyan
Revision: 247047

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

Added:
  caribou/repos/staging-i686/
  caribou/repos/staging-i686/PKGBUILD
(from rev 247046, caribou/trunk/PKGBUILD)
  caribou/repos/staging-i686/caribou.install
(from rev 247046, caribou/trunk/caribou.install)
  caribou/repos/staging-x86_64/
  caribou/repos/staging-x86_64/PKGBUILD
(from rev 247046, caribou/trunk/PKGBUILD)
  caribou/repos/staging-x86_64/caribou.install
(from rev 247046, caribou/trunk/caribou.install)

+
 staging-i686/PKGBUILD  |   42 +++
 staging-i686/caribou.install   |   13 
 staging-x86_64/PKGBUILD|   42 +++
 staging-x86_64/caribou.install |   13 
 4 files changed, 110 insertions(+)

Copied: caribou/repos/staging-i686/PKGBUILD (from rev 247046, 
caribou/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-09-22 03:33:51 UTC (rev 247047)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Adam Hani Schakaki 
+
+pkgname=caribou
+pkgver=0.4.18.1
+pkgrel=3
+pkgdesc="A text entry and UI navigation application (on-screen keyboard)"
+arch=('i686' 'x86_64')
+url="http://live.gnome.org/Caribou;
+license=(LGPL)
+depends=(at-spi2-atk python-atspi python-gobject gtk3 libxklavier libgee 
clutter dconf)
+makedepends=(intltool docbook-xsl gtk2 gobject-introspection vala)
+install=caribou.install
+options=(!emptydirs)
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('aefadf125a647fc68696f4134e99ee43dca121da5de8e1edf6eab5664a9f3150')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/$pkgname \
+--disable-static \
+--disable-schemas-compile
+
+  # 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 -k check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: caribou/repos/staging-i686/caribou.install (from rev 247046, 
caribou/trunk/caribou.install)
===
--- staging-i686/caribou.install(rev 0)
+++ staging-i686/caribou.install2015-09-22 03:33:51 UTC (rev 247047)
@@ -0,0 +1,13 @@
+pkgname=caribou
+
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+}

Copied: caribou/repos/staging-x86_64/PKGBUILD (from rev 247046, 
caribou/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-09-22 03:33:51 UTC (rev 247047)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Adam Hani Schakaki 
+
+pkgname=caribou
+pkgver=0.4.18.1
+pkgrel=3
+pkgdesc="A text entry and UI navigation application (on-screen keyboard)"
+arch=('i686' 'x86_64')
+url="http://live.gnome.org/Caribou;
+license=(LGPL)
+depends=(at-spi2-atk python-atspi python-gobject gtk3 libxklavier libgee 
clutter dconf)
+makedepends=(intltool docbook-xsl gtk2 gobject-introspection vala)
+install=caribou.install
+options=(!emptydirs)
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('aefadf125a647fc68696f4134e99ee43dca121da5de8e1edf6eab5664a9f3150')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/$pkgname \
+--disable-static \
+--disable-schemas-compile
+
+  # 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 -k check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: caribou/repos/staging-x86_64/caribou.install (from rev 247046, 
caribou/trunk/caribou.install)
===
--- staging-x86_64/caribou.install  (rev 0)
+++ staging-x86_64/caribou.install  2015-09-22 03:33:51 UTC (rev 247047)
@@ -0,0 +1,13 @@
+pkgname=caribou
+
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+}


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 05:33:22
  Author: fyan
Revision: 247046

upgpkg: caribou 0.4.18.1-3

rebuild for python 3.5

Modified:
  caribou/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-22 02:35:17 UTC (rev 247045)
+++ PKGBUILD2015-09-22 03:33:22 UTC (rev 247046)
@@ -4,7 +4,7 @@
 
 pkgname=caribou
 pkgver=0.4.18.1
-pkgrel=2
+pkgrel=3
 pkgdesc="A text entry and UI navigation application (on-screen keyboard)"
 arch=('i686' 'x86_64')
 url="http://live.gnome.org/Caribou;


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 06:15:15
  Author: fyan
Revision: 247055

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

Added:
  gedit/repos/staging-i686/
  gedit/repos/staging-i686/PKGBUILD
(from rev 247054, gedit/trunk/PKGBUILD)
  gedit/repos/staging-i686/gedit.install
(from rev 247054, gedit/trunk/gedit.install)
  gedit/repos/staging-x86_64/
  gedit/repos/staging-x86_64/PKGBUILD
(from rev 247054, gedit/trunk/PKGBUILD)
  gedit/repos/staging-x86_64/gedit.install
(from rev 247054, gedit/trunk/gedit.install)

--+
 staging-i686/PKGBUILD|   32 
 staging-i686/gedit.install   |   18 ++
 staging-x86_64/PKGBUILD  |   32 
 staging-x86_64/gedit.install |   18 ++
 4 files changed, 100 insertions(+)

Copied: gedit/repos/staging-i686/PKGBUILD (from rev 247054, 
gedit/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-09-22 04:15:15 UTC (rev 247055)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gedit
+pkgver=3.16.3
+pkgrel=2
+pkgdesc="A text editor for GNOME"
+arch=(i686 x86_64)
+license=(GPL)
+depends=(gtksourceview3 gsettings-desktop-schemas libpeas enchant iso-codes 
desktop-file-utils python-gobject dconf)
+makedepends=(yelp-tools intltool vala gobject-introspection)
+groups=(gnome-extra)
+options=('!emptydirs')
+url="http://www.gnome.org;
+install=gedit.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('c28df44a29ee5707441f89e94b513079d709111afec4bd4b079a1dff0242cdb2')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib --disable-updater --disable-schemas-compile \
+  --enable-python
+  make
+}
+
+package(){
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: gedit/repos/staging-i686/gedit.install (from rev 247054, 
gedit/trunk/gedit.install)
===
--- staging-i686/gedit.install  (rev 0)
+++ staging-i686/gedit.install  2015-09-22 04:15:15 UTC (rev 247055)
@@ -0,0 +1,18 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+update-desktop-database -q
+}
+
+pre_upgrade() {
+if [ -f /usr/share/gconf/schemas/gedit.schemas ]; then
+gconfpkg --uninstall gedit
+fi
+}
+
+post_upgrade() {
+post_install $1
+}
+
+post_remove() {
+post_install $1
+}

Copied: gedit/repos/staging-x86_64/PKGBUILD (from rev 247054, 
gedit/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-09-22 04:15:15 UTC (rev 247055)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gedit
+pkgver=3.16.3
+pkgrel=2
+pkgdesc="A text editor for GNOME"
+arch=(i686 x86_64)
+license=(GPL)
+depends=(gtksourceview3 gsettings-desktop-schemas libpeas enchant iso-codes 
desktop-file-utils python-gobject dconf)
+makedepends=(yelp-tools intltool vala gobject-introspection)
+groups=(gnome-extra)
+options=('!emptydirs')
+url="http://www.gnome.org;
+install=gedit.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('c28df44a29ee5707441f89e94b513079d709111afec4bd4b079a1dff0242cdb2')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib --disable-updater --disable-schemas-compile \
+  --enable-python
+  make
+}
+
+package(){
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: gedit/repos/staging-x86_64/gedit.install (from rev 247054, 
gedit/trunk/gedit.install)
===
--- staging-x86_64/gedit.install(rev 0)
+++ staging-x86_64/gedit.install2015-09-22 04:15:15 UTC (rev 247055)
@@ -0,0 +1,18 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+update-desktop-database -q
+}
+
+pre_upgrade() {
+if [ -f /usr/share/gconf/schemas/gedit.schemas ]; then
+gconfpkg --uninstall gedit
+fi
+}
+
+post_upgrade() {
+post_install $1
+}
+
+post_remove() {
+post_install $1
+}


[arch-commits] Commit in system-config-printer/repos (4 files)

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 07:16:37
  Author: fyan
Revision: 247061

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

Added:
  system-config-printer/repos/staging-i686/
  system-config-printer/repos/staging-i686/PKGBUILD
(from rev 247060, system-config-printer/trunk/PKGBUILD)
  system-config-printer/repos/staging-x86_64/
  system-config-printer/repos/staging-x86_64/PKGBUILD
(from rev 247060, system-config-printer/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   45 +
 staging-x86_64/PKGBUILD |   45 +
 2 files changed, 90 insertions(+)

Copied: system-config-printer/repos/staging-i686/PKGBUILD (from rev 247060, 
system-config-printer/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-09-22 05:16:37 UTC (rev 247061)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Andrea Scarpino 
+
+pkgname=system-config-printer
+pkgver=1.5.7
+pkgrel=2
+pkgdesc="A CUPS printer configuration tool and status applet"
+url="http://cyberelk.net/tim/software/system-config-printer/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('python-pycups' 'python-dbus' 'python-pycurl' 'libnotify'
+ 'python-requests' 'python-gobject' 'gtk3' 'python-cairo')
+makedepends=('intltool' 'xmlto' 'docbook-xsl' 'desktop-file-utils')
+optdepends=('libgnome-keyring: password management'
+'python-pysmbc: SMB browser support'
+'python-packagekit: to install drivers with PackageKit'
+'cups-pk-helper: PolicyKit helper to configure cups with 
fine-grained privileges')
+source=(http://cyberelk.net/tim/data/${pkgname}/${pkgver%*.*}/${pkgname}-${pkgver}.tar.xz{,.sig})
+md5sums=('1a0c6a4566a5479733945f6db32d6f00'
+ 'SKIP')
+validpgpkeys=('02EA6349CE58E1BCAA8514F57955128DA3A1ABD3' #Tim Waugh 
 
+  '4629AFE960EC20BEC12E3104B7C20D079491EA63') #Tim Waugh 

+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--with-udevdir=/usr/lib/udev --with-udev-rules 
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # Compile *.pyc
+  find "${pkgdir}" -name '*.py' -exec python -mpy_compile {} +
+  # Compile *.pyo
+  find "${pkgdir}" -name '*.py' -exec python -O -mpy_compile {} +
+  
+  # new cups 2.0.0 service naming
+  sed -i "s|cups.socket|org.cups.cupsd.socket|g" 
${pkgdir}/usr/lib/systemd/system/configure-printer@.service
+}

Copied: system-config-printer/repos/staging-x86_64/PKGBUILD (from rev 247060, 
system-config-printer/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-09-22 05:16:37 UTC (rev 247061)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Andrea Scarpino 
+
+pkgname=system-config-printer
+pkgver=1.5.7
+pkgrel=2
+pkgdesc="A CUPS printer configuration tool and status applet"
+url="http://cyberelk.net/tim/software/system-config-printer/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('python-pycups' 'python-dbus' 'python-pycurl' 'libnotify'
+ 'python-requests' 'python-gobject' 'gtk3' 'python-cairo')
+makedepends=('intltool' 'xmlto' 'docbook-xsl' 'desktop-file-utils')
+optdepends=('libgnome-keyring: password management'
+'python-pysmbc: SMB browser support'
+'python-packagekit: to install drivers with PackageKit'
+'cups-pk-helper: PolicyKit helper to configure cups with 
fine-grained privileges')
+source=(http://cyberelk.net/tim/data/${pkgname}/${pkgver%*.*}/${pkgname}-${pkgver}.tar.xz{,.sig})
+md5sums=('1a0c6a4566a5479733945f6db32d6f00'
+ 'SKIP')
+validpgpkeys=('02EA6349CE58E1BCAA8514F57955128DA3A1ABD3' #Tim Waugh 
 
+  '4629AFE960EC20BEC12E3104B7C20D079491EA63') #Tim Waugh 

+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--with-udevdir=/usr/lib/udev --with-udev-rules 
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # Compile *.pyc
+  find "${pkgdir}" -name '*.py' -exec python -mpy_compile {} +
+  # Compile *.pyo
+  find "${pkgdir}" -name '*.py' -exec python -O -mpy_compile {} +
+  
+  # new cups 2.0.0 service naming
+  sed -i "s|cups.socket|org.cups.cupsd.socket|g" 
${pkgdir}/usr/lib/systemd/system/configure-printer@.service
+}


[arch-commits] Commit in system-config-printer/trunk (PKGBUILD)

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 07:16:08
  Author: fyan
Revision: 247060

upgpkg: system-config-printer 1.5.7-2

rebuild for python 3.5

Modified:
  system-config-printer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-22 04:37:33 UTC (rev 247059)
+++ PKGBUILD2015-09-22 05:16:08 UTC (rev 247060)
@@ -4,7 +4,7 @@
 
 pkgname=system-config-printer
 pkgver=1.5.7
-pkgrel=1
+pkgrel=2
 pkgdesc="A CUPS printer configuration tool and status applet"
 url="http://cyberelk.net/tim/software/system-config-printer/;
 arch=('i686' 'x86_64')


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 07:32:14
  Author: fyan
Revision: 141441

upgpkg: python-wheel 0.26.0-2

rebuild for python 3.5

Modified:
  python-wheel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-22 05:29:58 UTC (rev 141440)
+++ PKGBUILD2015-09-22 05:32:14 UTC (rev 141441)
@@ -6,7 +6,7 @@
 pkgbase=python-wheel
 pkgname=('python-wheel' 'python2-wheel')
 pkgver=0.26.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A built-package format for Python"
 arch=(any)
 url="https://pypi.python.org/pypi/wheel;
@@ -34,7 +34,7 @@
 
   cd "$srcdir/wheel-$pkgver"
   python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.4/site-packages:$PYTHONPATH" 
py.test wheel
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" 
py.test wheel
 
   cd "$srcdir/wheel-$pkgver-py2"
   python2 setup.py install --root="$PWD/tmp_install" --optimize=1


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 07:39:00
  Author: fyan
Revision: 141445

upgpkg: bcloud 3.8.1-2

rebuild for python 3.5

Modified:
  bcloud/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-22 05:37:34 UTC (rev 141444)
+++ PKGBUILD2015-09-22 05:39:00 UTC (rev 141445)
@@ -7,7 +7,7 @@
 
 pkgname=bcloud
 pkgver=3.8.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Baidu Pan client for Linux Desktop users'
 arch=('any')
 license=('GPL3')


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 07:39:20
  Author: fyan
Revision: 141446

archrelease: copy trunk to community-staging-any

Added:
  bcloud/repos/community-staging-any/
  bcloud/repos/community-staging-any/PKGBUILD
(from rev 141445, bcloud/trunk/PKGBUILD)
  bcloud/repos/community-staging-any/bcloud.install
(from rev 141445, bcloud/trunk/bcloud.install)

+
 PKGBUILD   |   33 +
 bcloud.install |   12 
 2 files changed, 45 insertions(+)

Copied: bcloud/repos/community-staging-any/PKGBUILD (from rev 141445, 
bcloud/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-09-22 05:39:20 UTC (rev 141446)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Firef0x 
+# Contributor: MJsaka 
+# Copyright
+# This PKGBUILD released with the GPLv3 license
+
+pkgname=bcloud
+pkgver=3.8.1
+pkgrel=2
+pkgdesc='Baidu Pan client for Linux Desktop users'
+arch=('any')
+license=('GPL3')
+url="https://github.com/LiuLang/bcloud;
+depends=('python-crypto' 'libnotify' 'python-keyring' 'python-dbus' 
'python-gobject'
+ 'gnome-icon-theme-symbolic' 'python-lxml' 'python-cssselect' 'gtk3' 
'python-pyinotify')
+optdepends=('gnome-keyring: To store password in GNOME Keyring'
+'libgnome-keyring: To store password in GNOME Keyring'
+'kdebindings-python: To store password in KWallet'
+'kwallet: To store password in KWallet')
+install=bcloud.install
+source=("https://pypi.python.org/packages/source/b/bcloud/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('7a420d83e5d9114782db2251e28b8a6c')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  python setup.py install -O1 --skip-build --root="$pkgdir"
+}

Copied: bcloud/repos/community-staging-any/bcloud.install (from rev 141445, 
bcloud/trunk/bcloud.install)
===
--- community-staging-any/bcloud.install(rev 0)
+++ community-staging-any/bcloud.install2015-09-22 05:39:20 UTC (rev 
141446)
@@ -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 $1
+}
+
+post_remove() {
+  post_install $1
+}


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 07:37:34
  Author: fyan
Revision: 141444

archrelease: copy trunk to community-staging-any

Added:
  python-raven/repos/community-staging-any/
  python-raven/repos/community-staging-any/PKGBUILD
(from rev 141443, python-raven/trunk/PKGBUILD)

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

Copied: python-raven/repos/community-staging-any/PKGBUILD (from rev 141443, 
python-raven/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-09-22 05:37:34 UTC (rev 141444)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.7.2
+pkgrel=2
+pkgdesc="Python client for Sentry."
+arch=(any)
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
+  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
+  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
+  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
+  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
+  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
+  'python2-webpy' 'python-flask-login' 'python2-flask-login')
+source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a raven-python{,-py2}
+}
+
+build() {
+  cd "$srcdir/raven-python"
+  python setup.py build
+
+  cd "$srcdir/raven-python-py2"
+  python2 setup.py build
+}
+
+check() {(
+  # Hack distribution check by installing it
+
+  cd "$srcdir/raven-python"
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
+py.test tests
+
+  cd "$srcdir/raven-python"
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
+py.test tests
+  ) || warning "Tests failed"
+  # pytest-django doesn't work with pytest 2.8
+}
+
+package_python-raven() {
+  depends=('python')
+  optdepends=('python-setuptools: for "raven" script')
+
+  cd "${srcdir}/raven-python"
+  python setup.py install --root="${pkgdir}/" --optimize=1
+  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-raven() {
+  depends=('python2')
+  optdepends=('python2-setuptools: for "raven2" script')
+
+  cd "${srcdir}/raven-python-py2"
+  python2 setup.py install --root="${pkgdir}/" --optimize=1
+  mv "${pkgdir}/usr/bin/raven" "${pkgdir}/usr/bin/raven2"
+
+  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2015-09-21 Thread Sergej Pupykin
Date: Monday, September 21, 2015 @ 13:12:32
  Author: spupykin
Revision: 141377

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

Added:
  minidlna/repos/community-i686/PKGBUILD
(from rev 141376, minidlna/trunk/PKGBUILD)
  minidlna/repos/community-i686/changelog
(from rev 141376, minidlna/trunk/changelog)
  minidlna/repos/community-i686/minidlna.install
(from rev 141376, minidlna/trunk/minidlna.install)
  minidlna/repos/community-i686/minidlna.service
(from rev 141376, minidlna/trunk/minidlna.service)
  minidlna/repos/community-i686/minidlna.sysusers
(from rev 141376, minidlna/trunk/minidlna.sysusers)
  minidlna/repos/community-i686/minidlna.tmpfiles
(from rev 141376, minidlna/trunk/minidlna.tmpfiles)
  minidlna/repos/community-x86_64/PKGBUILD
(from rev 141376, minidlna/trunk/PKGBUILD)
  minidlna/repos/community-x86_64/changelog
(from rev 141376, minidlna/trunk/changelog)
  minidlna/repos/community-x86_64/minidlna.install
(from rev 141376, minidlna/trunk/minidlna.install)
  minidlna/repos/community-x86_64/minidlna.service
(from rev 141376, minidlna/trunk/minidlna.service)
  minidlna/repos/community-x86_64/minidlna.sysusers
(from rev 141376, minidlna/trunk/minidlna.sysusers)
  minidlna/repos/community-x86_64/minidlna.tmpfiles
(from rev 141376, minidlna/trunk/minidlna.tmpfiles)
Deleted:
  minidlna/repos/community-i686/PKGBUILD
  minidlna/repos/community-i686/changelog
  minidlna/repos/community-i686/minidlna.install
  minidlna/repos/community-i686/minidlna.service
  minidlna/repos/community-i686/minidlna.sysusers
  minidlna/repos/community-i686/minidlna.tmpfiles
  minidlna/repos/community-x86_64/PKGBUILD
  minidlna/repos/community-x86_64/changelog
  minidlna/repos/community-x86_64/minidlna.install
  minidlna/repos/community-x86_64/minidlna.service
  minidlna/repos/community-x86_64/minidlna.sysusers
  minidlna/repos/community-x86_64/minidlna.tmpfiles

+
 /PKGBUILD  |   96 +++
 /changelog |8 ++
 /minidlna.install  |   26 +
 /minidlna.service  |   32 +++
 /minidlna.sysusers |2 
 /minidlna.tmpfiles |   10 +++
 community-i686/PKGBUILD|   48 -
 community-i686/changelog   |4 -
 community-i686/minidlna.install|   13 
 community-i686/minidlna.service|   16 -
 community-i686/minidlna.sysusers   |1 
 community-i686/minidlna.tmpfiles   |5 -
 community-x86_64/PKGBUILD  |   48 -
 community-x86_64/changelog |4 -
 community-x86_64/minidlna.install  |   13 
 community-x86_64/minidlna.service  |   16 -
 community-x86_64/minidlna.sysusers |1 
 community-x86_64/minidlna.tmpfiles |5 -
 18 files changed, 174 insertions(+), 174 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-21 11:12:06 UTC (rev 141376)
+++ community-i686/PKGBUILD 2015-09-21 11:12:32 UTC (rev 141377)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer:Biginoz < biginoz AT free point fr>
-# Contributor: Ignacio Galmarino 
-# Contributor: Matthias Sobczyk 
-# Contributor: Kamil Kaminski 
-
-pkgname=minidlna
-pkgver=1.1.4
-pkgrel=5
-pkgdesc="A DLNA/UPnP-AV Media server (aka ReadyDLNA)"
-arch=('i686' 'x86_64')
-url="http://sourceforge.net/projects/minidlna/;
-license=('GPL')
-depends=('libexif' 'libjpeg' 'libid3tag' 'flac' 'libvorbis' 'ffmpeg' 'sqlite')
-backup=('etc/minidlna.conf')
-install=minidlna.install
-changelog=changelog
-source=(http://downloads.sourceforge.net/project/minidlna/minidlna/$pkgver/minidlna-$pkgver.tar.gz
-   minidlna.service
-   minidlna.tmpfiles
-   minidlna.sysusers)
-md5sums=('67c9e91285bc3801fd91a5d26ea775d7'
- '1f53adef7dfa12c1d4636737366b1d39'
- 'a61f97b037ea17555f6632b3ffd761ef'
- '5b2a57160589dfd559a23b1a7f365a23')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-  sed -i 's|#user=.*|user=minidlna|g' minidlna.conf
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr --sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  DESTDIR=$pkgdir make install
-  install -Dm644 minidlna.conf ${pkgdir}/etc/minidlna.conf
-  install -Dm0644 $srcdir/minidlna.tmpfiles 
$pkgdir/usr/lib/tmpfiles.d/minidlna.conf
-  install -Dm0644 $srcdir/minidlna.sysusers 
$pkgdir/usr/lib/sysusers.d/minidlna.conf
-  install -Dm0644 $srcdir/minidlna.service 
$pkgdir/usr/lib/systemd/system/minidlna.service
-  install -Dm644 $srcdir/$pkgname-$pkgver/minidlna.conf.5 
$pkgdir/usr/share/man/man5/minidlna.conf.5
-  install -Dm644 $srcdir/$pkgname-$pkgver/minidlnad.8 

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

2015-09-21 Thread Sergej Pupykin
Date: Monday, September 21, 2015 @ 13:12:37
  Author: spupykin
Revision: 141378

upgpkg: phpmyadmin 4.4.15-1

upd

Modified:
  phpmyadmin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 11:12:32 UTC (rev 141377)
+++ PKGBUILD2015-09-21 11:12:37 UTC (rev 141378)
@@ -7,7 +7,7 @@
 # Contributor: Simon Lackerbauer 
 
 pkgname=phpmyadmin
-pkgver=4.4.14.1
+pkgver=4.4.15
 pkgrel=1
 pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
 arch=('any')
@@ -17,7 +17,7 @@
 optdepends=('php-mcrypt: to use phpMyAdmin internal authentication')
 backup=(etc/webapps/phpmyadmin/config.inc.php)
 
source=(https://files.phpmyadmin.net/phpMyAdmin/$pkgver/phpMyAdmin-$pkgver-all-languages.tar.xz)
-md5sums=('b0b9fe05b09d07a4577c91d0d9b61093')
+md5sums=('d03c1fb3c20b3fb0d301759525730cea')
 
 package() {
   _instdir="$pkgdir"/usr/share/webapps/phpMyAdmin


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

2015-09-21 Thread Sergej Pupykin
Date: Monday, September 21, 2015 @ 13:11:54
  Author: spupykin
Revision: 141375

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-21 11:11:34 UTC (rev 141374)
+++ community-i686/PKGBUILD 2015-09-21 11:11:54 UTC (rev 141375)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Peter Kosyh 
-
-pkgname=instead
-pkgver=2.2.5
-pkgrel=1
-pkgdesc="a quest interpreter"
-arch=('i686' 'x86_64')
-url="http://sourceforge.net/projects/instead/;
-license=('GPL')
-depends=('sdl_image' 'sdl_mixer' 'sdl_ttf' 'lua')
-optdepends=('instead-launcher: install and update INSTEAD games from net')
-source=(http://downloads.sourceforge.net/project/instead/instead/${pkgver}/instead_${pkgver}.tar.gz)
-md5sums=('de9450d9f5f0f1268aa386ff460b99fe')
-
-build() {
-  cd "${srcdir}/instead-${pkgver}"
-  echo "2" | ./configure.sh
-  make PREFIX=/usr
-}
-
-package() {
-  cd "${srcdir}/instead-${pkgver}"
-  make DESTDIR="${pkgdir}" PREFIX=/usr install
-
-  cp -a doc/*.{html,pdf} doc/instead.txt doc/examples 
$pkgdir/usr/share/doc/instead/
-}

Copied: instead/repos/community-i686/PKGBUILD (from rev 141374, 
instead/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-21 11:11:54 UTC (rev 141375)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Peter Kosyh 
+
+pkgname=instead
+pkgver=2.2.7
+pkgrel=1
+pkgdesc="a quest interpreter"
+arch=('i686' 'x86_64')
+url="http://sourceforge.net/projects/instead/;
+license=('GPL')
+depends=('sdl_image' 'sdl_mixer' 'sdl_ttf' 'lua')
+optdepends=('instead-launcher: install and update INSTEAD games from net')
+source=(http://downloads.sourceforge.net/project/instead/instead/${pkgver}/instead_${pkgver}.tar.gz)
+md5sums=('6716a5c0690e87a7ed788badb200d556')
+
+build() {
+  cd "${srcdir}/instead-${pkgver}"
+  echo "2" | ./configure.sh
+  make PREFIX=/usr
+}
+
+package() {
+  cd "${srcdir}/instead-${pkgver}"
+  make DESTDIR="${pkgdir}" PREFIX=/usr install
+
+  cp -a doc/*.{html,pdf} doc/instead.txt doc/examples 
$pkgdir/usr/share/doc/instead/
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-09-21 11:11:34 UTC (rev 141374)
+++ community-x86_64/PKGBUILD   2015-09-21 11:11:54 UTC (rev 141375)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Peter Kosyh 
-
-pkgname=instead
-pkgver=2.2.5
-pkgrel=1
-pkgdesc="a quest interpreter"
-arch=('i686' 'x86_64')
-url="http://sourceforge.net/projects/instead/;
-license=('GPL')
-depends=('sdl_image' 'sdl_mixer' 'sdl_ttf' 'lua')
-optdepends=('instead-launcher: install and update INSTEAD games from net')
-source=(http://downloads.sourceforge.net/project/instead/instead/${pkgver}/instead_${pkgver}.tar.gz)
-md5sums=('de9450d9f5f0f1268aa386ff460b99fe')
-
-build() {
-  cd "${srcdir}/instead-${pkgver}"
-  echo "2" | ./configure.sh
-  make PREFIX=/usr
-}
-
-package() {
-  cd "${srcdir}/instead-${pkgver}"
-  make DESTDIR="${pkgdir}" PREFIX=/usr install
-
-  cp -a doc/*.{html,pdf} doc/instead.txt doc/examples 
$pkgdir/usr/share/doc/instead/
-}

Copied: instead/repos/community-x86_64/PKGBUILD (from rev 141374, 
instead/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-09-21 11:11:54 UTC (rev 141375)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Peter Kosyh 
+
+pkgname=instead
+pkgver=2.2.7
+pkgrel=1
+pkgdesc="a quest interpreter"
+arch=('i686' 'x86_64')
+url="http://sourceforge.net/projects/instead/;
+license=('GPL')
+depends=('sdl_image' 'sdl_mixer' 'sdl_ttf' 'lua')
+optdepends=('instead-launcher: install and update INSTEAD games from net')
+source=(http://downloads.sourceforge.net/project/instead/instead/${pkgver}/instead_${pkgver}.tar.gz)
+md5sums=('6716a5c0690e87a7ed788badb200d556')
+
+build() {
+  cd "${srcdir}/instead-${pkgver}"
+  echo "2" | ./configure.sh
+  make PREFIX=/usr
+}
+
+package() {
+  cd "${srcdir}/instead-${pkgver}"
+  make 

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

2015-09-21 Thread Sergej Pupykin
Date: Monday, September 21, 2015 @ 13:11:34
  Author: spupykin
Revision: 141374

upgpkg: instead 2.2.7-1

upd

Modified:
  instead/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 09:27:04 UTC (rev 141373)
+++ PKGBUILD2015-09-21 11:11:34 UTC (rev 141374)
@@ -3,7 +3,7 @@
 # Contributor: Peter Kosyh 
 
 pkgname=instead
-pkgver=2.2.5
+pkgver=2.2.7
 pkgrel=1
 pkgdesc="a quest interpreter"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('sdl_image' 'sdl_mixer' 'sdl_ttf' 'lua')
 optdepends=('instead-launcher: install and update INSTEAD games from net')
 
source=(http://downloads.sourceforge.net/project/instead/instead/${pkgver}/instead_${pkgver}.tar.gz)
-md5sums=('de9450d9f5f0f1268aa386ff460b99fe')
+md5sums=('6716a5c0690e87a7ed788badb200d556')
 
 build() {
   cd "${srcdir}/instead-${pkgver}"


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

2015-09-21 Thread Sergej Pupykin
Date: Monday, September 21, 2015 @ 13:12:46
  Author: spupykin
Revision: 141379

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-21 11:12:37 UTC (rev 141378)
+++ PKGBUILD2015-09-21 11:12:46 UTC (rev 141379)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Sergej Pupykin 
-# Contributor: tobias 
-# Contributor: Manolis Tzanidakis 
-# Contributor: Simon Lackerbauer 
-
-pkgname=phpmyadmin
-pkgver=4.4.14.1
-pkgrel=1
-pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
-arch=('any')
-url='http://www.phpmyadmin.net'
-license=('GPL')
-depends=('mariadb-clients' 'php')
-optdepends=('php-mcrypt: to use phpMyAdmin internal authentication')
-backup=(etc/webapps/phpmyadmin/config.inc.php)
-source=(https://files.phpmyadmin.net/phpMyAdmin/$pkgver/phpMyAdmin-$pkgver-all-languages.tar.xz)
-md5sums=('b0b9fe05b09d07a4577c91d0d9b61093')
-
-package() {
-  _instdir="$pkgdir"/usr/share/webapps/phpMyAdmin
-  mkdir -p "$_instdir" "$pkgdir"/etc/webapps/phpmyadmin
-  cd "$_instdir"
-
-  cp -ra "$srcdir"/phpMyAdmin-$pkgver-all-languages/* .
-
-  ln -s /etc/webapps/phpmyadmin/config.inc.php "$_instdir"/config.inc.php
-  cp "$_instdir"/config.sample.inc.php 
"$pkgdir"/etc/webapps/phpmyadmin/config.inc.php
-}

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


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

2015-09-21 Thread Sergej Pupykin
Date: Monday, September 21, 2015 @ 13:12:06
  Author: spupykin
Revision: 141376

upgpkg: minidlna 1.1.5-1

upd

Modified:
  minidlna/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 11:11:54 UTC (rev 141375)
+++ PKGBUILD2015-09-21 11:12:06 UTC (rev 141376)
@@ -6,8 +6,8 @@
 # Contributor: Kamil Kaminski 
 
 pkgname=minidlna
-pkgver=1.1.4
-pkgrel=5
+pkgver=1.1.5
+pkgrel=1
 pkgdesc="A DLNA/UPnP-AV Media server (aka ReadyDLNA)"
 arch=('i686' 'x86_64')
 url="http://sourceforge.net/projects/minidlna/;
@@ -20,7 +20,7 @@
minidlna.service
minidlna.tmpfiles
minidlna.sysusers)
-md5sums=('67c9e91285bc3801fd91a5d26ea775d7'
+md5sums=('1970e553a1eb8a3e7e302e2ce292cbc4'
  '1f53adef7dfa12c1d4636737366b1d39'
  'a61f97b037ea17555f6632b3ffd761ef'
  '5b2a57160589dfd559a23b1a7f365a23')


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 04:24:20
  Author: fyan
Revision: 141421

upgpkg: libdaq 2.0.6-1

Modified:
  libdaq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 22:19:09 UTC (rev 141420)
+++ PKGBUILD2015-09-22 02:24:20 UTC (rev 141421)
@@ -2,7 +2,7 @@
 # Maintainer: Lukas Fleischer 
 
 pkgname=libdaq
-pkgver=2.0.4
+pkgver=2.0.6
 pkgrel=1
 pkgdesc='Data Acquisition library for packet I/O.'
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 depends=('libpcap')
 makedepends=('ca-certificates')
 source=(http://www.snort.org/downloads/snort/daq-${pkgver}.tar.gz)
-md5sums=('65e51d72e9d5d8b397e192e4e5857eff')
+md5sums=('2cd6da422a72c129c685fc4bb848c24c')
 
 build() {
   cd "${srcdir}/daq-${pkgver}"


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 04:25:02
  Author: fyan
Revision: 141422

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-22 02:24:20 UTC (rev 141421)
+++ community-i686/PKGBUILD 2015-09-22 02:25:02 UTC (rev 141422)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer 
-
-pkgname=libdaq
-pkgver=2.0.4
-pkgrel=1
-pkgdesc='Data Acquisition library for packet I/O.'
-arch=('i686' 'x86_64')
-url='http://www.snort.org/'
-license=('GPL')
-depends=('libpcap')
-makedepends=('ca-certificates')
-source=(http://www.snort.org/downloads/snort/daq-${pkgver}.tar.gz)
-md5sums=('65e51d72e9d5d8b397e192e4e5857eff')
-
-build() {
-  cd "${srcdir}/daq-${pkgver}"
-  ./configure --prefix=/usr
-  make -j1
-}
-
-package() {
-  cd "${srcdir}/daq-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: libdaq/repos/community-i686/PKGBUILD (from rev 141421, 
libdaq/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-22 02:25:02 UTC (rev 141422)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Lukas Fleischer 
+
+pkgname=libdaq
+pkgver=2.0.6
+pkgrel=1
+pkgdesc='Data Acquisition library for packet I/O.'
+arch=('i686' 'x86_64')
+url='http://www.snort.org/'
+license=('GPL')
+depends=('libpcap')
+makedepends=('ca-certificates')
+source=(http://www.snort.org/downloads/snort/daq-${pkgver}.tar.gz)
+md5sums=('2cd6da422a72c129c685fc4bb848c24c')
+
+build() {
+  cd "${srcdir}/daq-${pkgver}"
+  ./configure --prefix=/usr
+  make -j1
+}
+
+package() {
+  cd "${srcdir}/daq-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-09-22 02:24:20 UTC (rev 141421)
+++ community-x86_64/PKGBUILD   2015-09-22 02:25:02 UTC (rev 141422)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer 
-
-pkgname=libdaq
-pkgver=2.0.4
-pkgrel=1
-pkgdesc='Data Acquisition library for packet I/O.'
-arch=('i686' 'x86_64')
-url='http://www.snort.org/'
-license=('GPL')
-depends=('libpcap')
-makedepends=('ca-certificates')
-source=(http://www.snort.org/downloads/snort/daq-${pkgver}.tar.gz)
-md5sums=('65e51d72e9d5d8b397e192e4e5857eff')
-
-build() {
-  cd "${srcdir}/daq-${pkgver}"
-  ./configure --prefix=/usr
-  make -j1
-}
-
-package() {
-  cd "${srcdir}/daq-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: libdaq/repos/community-x86_64/PKGBUILD (from rev 141421, 
libdaq/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-09-22 02:25:02 UTC (rev 141422)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Lukas Fleischer 
+
+pkgname=libdaq
+pkgver=2.0.6
+pkgrel=1
+pkgdesc='Data Acquisition library for packet I/O.'
+arch=('i686' 'x86_64')
+url='http://www.snort.org/'
+license=('GPL')
+depends=('libpcap')
+makedepends=('ca-certificates')
+source=(http://www.snort.org/downloads/snort/daq-${pkgver}.tar.gz)
+md5sums=('2cd6da422a72c129c685fc4bb848c24c')
+
+build() {
+  cd "${srcdir}/daq-${pkgver}"
+  ./configure --prefix=/usr
+  make -j1
+}
+
+package() {
+  cd "${srcdir}/daq-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 04:26:16
  Author: fyan
Revision: 247043

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

Added:
  python-cairo/repos/staging-i686/
  python-cairo/repos/staging-i686/PKGBUILD
(from rev 247042, python-cairo/trunk/PKGBUILD)
  python-cairo/repos/staging-x86_64/
  python-cairo/repos/staging-x86_64/PKGBUILD
(from rev 247042, python-cairo/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   42 ++
 staging-x86_64/PKGBUILD |   42 ++
 2 files changed, 84 insertions(+)

Copied: python-cairo/repos/staging-i686/PKGBUILD (from rev 247042, 
python-cairo/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-09-22 02:26:16 UTC (rev 247043)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Angel Velasquez   
+# Maintainer: Jan de Groot 
+
+pkgname=python-cairo
+pkgver=1.10.0
+_waf_version=1.7.15
+pkgrel=6
+pkgdesc="Python bindings for the cairo graphics library"
+arch=('i686' 'x86_64')
+url="http://www.cairographics.org/pycairo;
+license=('LGPL3')
+depends=('python' 'cairo')
+source=(http://cairographics.org/releases/pycairo-${pkgver}.tar.bz2
+http://waf.googlecode.com/files/waf-${_waf_version}.tar.bz2)
+md5sums=('e6fd3f2f1e6a72e0db0868c4985669c5'
+ 'a62272a3b4eb05b7e5842b4f9839cb98')
+
+build() {
+  cd pycairo-${pkgver}
+
+  # use newer waf
+  cp "$srcdir/waf-$_waf_version/waf" ./
+
+  # fix compatibility with newer waf
+  # 
http://cgit.freedesktop.org/pycairo/commit/?id=c57cd129407c904f8c2f752a59d0183df7b01a5e
+  sed -e "s/ctx.\(tool_options\|check_tool\)(/ctx.load(/" -i wscript
+  
+  # Ensure that ./waf has created the cached unpacked version
+  # of the wafadmin source tree.
+  # This will be created to a subdirectory like
+  #.waf3-1.5.18-a7b91e2a913ce55fa6ecdf310df95752
+  python3 ./waf --version
+
+  ./waf configure --prefix=/usr
+  ./waf build
+}
+
+package() {
+  cd pycairo-${pkgver}
+  ./waf install --destdir="${pkgdir}"
+}

Copied: python-cairo/repos/staging-x86_64/PKGBUILD (from rev 247042, 
python-cairo/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-09-22 02:26:16 UTC (rev 247043)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Angel Velasquez   
+# Maintainer: Jan de Groot 
+
+pkgname=python-cairo
+pkgver=1.10.0
+_waf_version=1.7.15
+pkgrel=6
+pkgdesc="Python bindings for the cairo graphics library"
+arch=('i686' 'x86_64')
+url="http://www.cairographics.org/pycairo;
+license=('LGPL3')
+depends=('python' 'cairo')
+source=(http://cairographics.org/releases/pycairo-${pkgver}.tar.bz2
+http://waf.googlecode.com/files/waf-${_waf_version}.tar.bz2)
+md5sums=('e6fd3f2f1e6a72e0db0868c4985669c5'
+ 'a62272a3b4eb05b7e5842b4f9839cb98')
+
+build() {
+  cd pycairo-${pkgver}
+
+  # use newer waf
+  cp "$srcdir/waf-$_waf_version/waf" ./
+
+  # fix compatibility with newer waf
+  # 
http://cgit.freedesktop.org/pycairo/commit/?id=c57cd129407c904f8c2f752a59d0183df7b01a5e
+  sed -e "s/ctx.\(tool_options\|check_tool\)(/ctx.load(/" -i wscript
+  
+  # Ensure that ./waf has created the cached unpacked version
+  # of the wafadmin source tree.
+  # This will be created to a subdirectory like
+  #.waf3-1.5.18-a7b91e2a913ce55fa6ecdf310df95752
+  python3 ./waf --version
+
+  ./waf configure --prefix=/usr
+  ./waf build
+}
+
+package() {
+  cd pycairo-${pkgver}
+  ./waf install --destdir="${pkgdir}"
+}


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

2015-09-21 Thread Evangelos Foutras
Date: Tuesday, September 22, 2015 @ 04:35:17
  Author: foutrelis
Revision: 247045

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

Added:
  dialog/repos/testing-i686/
  dialog/repos/testing-i686/PKGBUILD
(from rev 247044, dialog/trunk/PKGBUILD)
  dialog/repos/testing-x86_64/
  dialog/repos/testing-x86_64/PKGBUILD
(from rev 247044, dialog/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   37 +
 testing-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: dialog/repos/testing-i686/PKGBUILD (from rev 247044, 
dialog/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-22 02:35:17 UTC (rev 247045)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: Andreas Radke 
+
+pkgname=dialog
+pkgver=1.2_20150920
+pkgrel=1
+epoch=1
+pkgdesc="A tool to display dialog boxes from shell scripts"
+arch=('i686' 'x86_64')
+url="http://invisible-island.net/dialog/;
+license=('LGPL2.1')
+depends=('sh' 'ncurses')
+source=(ftp://invisible-island.net/$pkgname/$pkgname-${pkgver/_/-}.tgz)
+sha256sums=('c4e61ec5768701683dd4b5b2ebd8a31e6289fa6a1f5801e4b481085650698c05')
+
+build() {
+  cd "$srcdir/$pkgname-${pkgver/_/-}"
+
+  ./configure \
+--prefix=/usr \
+--mandir=/usr/share/man \
+--with-ncursesw \
+--with-shared \
+--with-versioned-syms \
+--enable-nls
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-${pkgver/_/-}"
+  make DESTDIR="$pkgdir" install-full
+}
+
+# vim:set ts=2 sw=2 et:

Copied: dialog/repos/testing-x86_64/PKGBUILD (from rev 247044, 
dialog/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-09-22 02:35:17 UTC (rev 247045)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: Andreas Radke 
+
+pkgname=dialog
+pkgver=1.2_20150920
+pkgrel=1
+epoch=1
+pkgdesc="A tool to display dialog boxes from shell scripts"
+arch=('i686' 'x86_64')
+url="http://invisible-island.net/dialog/;
+license=('LGPL2.1')
+depends=('sh' 'ncurses')
+source=(ftp://invisible-island.net/$pkgname/$pkgname-${pkgver/_/-}.tgz)
+sha256sums=('c4e61ec5768701683dd4b5b2ebd8a31e6289fa6a1f5801e4b481085650698c05')
+
+build() {
+  cd "$srcdir/$pkgname-${pkgver/_/-}"
+
+  ./configure \
+--prefix=/usr \
+--mandir=/usr/share/man \
+--with-ncursesw \
+--with-shared \
+--with-versioned-syms \
+--enable-nls
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-${pkgver/_/-}"
+  make DESTDIR="$pkgdir" install-full
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-09-21 Thread Evangelos Foutras
Date: Tuesday, September 22, 2015 @ 04:35:06
  Author: foutrelis
Revision: 247044

upgpkg: dialog 1:1.2_20150920-1

New upstream release.

Modified:
  dialog/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-22 02:26:16 UTC (rev 247043)
+++ PKGBUILD2015-09-22 02:35:06 UTC (rev 247044)
@@ -5,8 +5,8 @@
 # Contributor: Andreas Radke 
 
 pkgname=dialog
-pkgver=1.2_20150528
-pkgrel=2
+pkgver=1.2_20150920
+pkgrel=1
 epoch=1
 pkgdesc="A tool to display dialog boxes from shell scripts"
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 license=('LGPL2.1')
 depends=('sh' 'ncurses')
 source=(ftp://invisible-island.net/$pkgname/$pkgname-${pkgver/_/-}.tgz)
-sha256sums=('a8cd7a66bdb41e53a3145cbb0eb370c5ce7300fe0e9ad6d3e8d3b9e16ff16418')
+sha256sums=('c4e61ec5768701683dd4b5b2ebd8a31e6289fa6a1f5801e4b481085650698c05')
 
 build() {
   cd "$srcdir/$pkgname-${pkgver/_/-}"


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 04:56:10
  Author: fyan
Revision: 141424

archrelease: copy trunk to community-staging-any

Added:
  python-pytest-django/repos/community-staging-any/
  python-pytest-django/repos/community-staging-any/PKGBUILD
(from rev 141423, python-pytest-django/trunk/PKGBUILD)
  
python-pytest-django/repos/community-staging-any/remove-assertion-in-django_settings_is_configured.patch
(from rev 141423, 
python-pytest-django/trunk/remove-assertion-in-django_settings_is_configured.patch)

-+
 PKGBUILD|   66 ++
 remove-assertion-in-django_settings_is_configured.patch |   27 +
 2 files changed, 93 insertions(+)

Copied: python-pytest-django/repos/community-staging-any/PKGBUILD (from rev 
141423, python-pytest-django/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-09-22 02:56:10 UTC (rev 141424)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pytest-django
+pkgname=('python-pytest-django' 'python2-pytest-django')
+pkgver=2.8.0
+pkgrel=3
+pkgdesc="A Django plugin for py.test"
+arch=('any')
+license=('BSD')
+url="https://github.com/pytest-dev/pytest-django;
+makedepends=('python-pytest' 'python2-pytest' 'git')
+checkdepends=('python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
+  'twine' 'python2-twine' 'python-south' 'python2-south')
+source=("git+https://github.com/pytest-dev/pytest-django.git#tag=v$pkgver;
+remove-assertion-in-django_settings_is_configured.patch)
+sha512sums=('SKIP'
+
'3f94b06e83c31a949b0bee5ec9220d137ee4c594e4428f6b22f9e73bb2dbdeb6c2e92561343b940acfda4408b5dc756d3d4c5828818f3554bca644b9bdca9781')
+
+prepare() {
+  # https://github.com/pytest-dev/pytest-django/issues/146
+  (cd pytest-django; patch -p1 -i 
../remove-assertion-in-django_settings_is_configured.patch)
+
+  cp -a pytest-django{,-py2}
+}
+
+build() {
+  cd "$srcdir/pytest-django"
+  python setup.py build
+
+  cd "$srcdir/pytest-django-py2"
+  python2 setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd "$srcdir/pytest-django"
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH:$PWD" \
+  DJANGO_SETTINGS_MODULE=pytest_django_test.settings_sqlite \
+py.test tests || warning "Tests failed"
+
+  cd "$srcdir/pytest-django-py2"
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  
PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH:$PWD" \
+  DJANGO_SETTINGS_MODULE=pytest_django_test.settings_sqlite \
+py.test2 tests || warning "Tests failed"
+  # failed with pytest 2.8, skipping for now.
+}
+
+package_python-pytest-django() {
+  depends=('python-pytest')
+
+  cd pytest-django
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-pytest-django() {
+  depends=('python2-pytest')
+
+  cd pytest-django-py2
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: 
python-pytest-django/repos/community-staging-any/remove-assertion-in-django_settings_is_configured.patch
 (from rev 141423, 
python-pytest-django/trunk/remove-assertion-in-django_settings_is_configured.patch)
===
--- 
community-staging-any/remove-assertion-in-django_settings_is_configured.patch   
(rev 0)
+++ 
community-staging-any/remove-assertion-in-django_settings_is_configured.patch   
2015-09-22 02:56:10 UTC (rev 141424)
@@ -0,0 +1,27 @@
+From 963e04688a19e125b86ba026d3ef09e4afe17f69 Mon Sep 17 00:00:00 2001
+From: Daniel Hahler 
+Date: Mon, 2 Mar 2015 19:38:22 +0100
+Subject: [PATCH] Remove assertion in django_settings_is_configured
+
+django.conf.settings.configured is not necessarily True, in case DSM
+wasn't set during `pytest_load_initial_conftests`, but gets set in the
+project's conftest (via `pytest_configure`).
+
+Fixes https://github.com/pytest-dev/pytest-django/issues/146
+---
+ pytest_django/lazy_django.py | 2 --
+ 1 file changed, 2 deletions(-)
+
+diff --git a/pytest_django/lazy_django.py b/pytest_django/lazy_django.py
+index 8458040..4ba4d5a 100644
+--- a/pytest_django/lazy_django.py
 b/pytest_django/lazy_django.py
+@@ -22,8 +22,6 @@ def django_settings_is_configured():
+ 
+ # If DJANGO_SETTINGS_MODULE is defined at this point, Django is assumed to
+ # always be loaded.
+-from django.conf import settings
+-assert settings.configured is True
+ return True
+ 
+ 


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

2015-09-21 Thread Sven-Hendrik Haase
Date: Tuesday, September 22, 2015 @ 05:00:44
  Author: svenstaro
Revision: 141427

upgpkg: stuntrally-data 2.6-2

Fix file conflict

Modified:
  stuntrally-data/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-22 03:00:13 UTC (rev 141426)
+++ PKGBUILD2015-09-22 03:00:44 UTC (rev 141427)
@@ -3,7 +3,7 @@
 pkgname=stuntrally-data
 _pkgname=stuntrally
 pkgver=2.6
-pkgrel=1
+pkgrel=2
 pkgdesc="Stunt Rally game with track editor, based on VDrift (data files)"
 arch=('any')
 license=('GPL3')
@@ -52,4 +52,5 @@
   rm -rf "${pkgdir}/usr/share/applications"
   rm -rf "${pkgdir}/usr/include"
   rm -rf "${pkgdir}/usr/bin"
+  rm -rf "${pkgdir}/usr/lib"
 }


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

2015-09-21 Thread Sven-Hendrik Haase
Date: Tuesday, September 22, 2015 @ 05:01:02
  Author: svenstaro
Revision: 141428

archrelease: copy trunk to community-any

Added:
  stuntrally-data/repos/community-any/PKGBUILD
(from rev 141427, stuntrally-data/trunk/PKGBUILD)
Deleted:
  stuntrally-data/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-22 03:00:44 UTC (rev 141427)
+++ PKGBUILD2015-09-22 03:01:02 UTC (rev 141428)
@@ -1,55 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-
-pkgname=stuntrally-data
-_pkgname=stuntrally
-pkgver=2.6
-pkgrel=1
-pkgdesc="Stunt Rally game with track editor, based on VDrift (data files)"
-arch=('any')
-license=('GPL3')
-url="http://code.google.com/p/vdrift-ogre;
-makedepends=('cmake' 'boost' 'libvorbis' 'mygui' 'sdl2' 'enet' 
'hicolor-icon-theme' 'libxcursor' 'bullet' 'openal')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/stuntrally/stuntrally/archive/${pkgver}.tar.gz;
-
"$pkgname-tracks-$pkgver.tar.gz::https://github.com/stuntrally/tracks/archive/${pkgver}.tar.gz;)
-sha256sums=('8cc309d27d26f78dcc596440547d68b5e41d02ef830df2d52d38611d45ebbaca'
-'4bce700516a2a178ac04cfbf7df2887ba42225802f5a3e670f770ea01345687b')
-
-build() {
-  # build the sources
-  cd "${srcdir}/stuntrally-${pkgver}/"
-
-  rm -rf build
-  mkdir build && cd build
-
-  cmake .. \
-  -DCMAKE_INSTALL_PREFIX="/usr" \
-  -DSHARE_INSTALL="share/stuntrally"
-  make
-
-  # build the tracks
-  cd "${srcdir}/tracks-${pkgver}/"
-
-  rm -rf build
-  mkdir build && cd build
-
-  cmake .. \
-  -DCMAKE_INSTALL_PREFIX="/usr"
-  make
-}
-
-package() {
-  # install the sources
-  cd "${srcdir}/stuntrally-${pkgver}/build/"
-  make DESTDIR="${pkgdir}" install
-
-  # install the tracks
-  cd "${srcdir}/tracks-${pkgver}/build"
-  make DESTDIR="${pkgdir}/usr/share/stuntrally/" install
-
-  # clean up
-  rm -rf "${pkgdir}/usr/share/stuntrally/tracks/build"
-  rm -rf "${pkgdir}/usr/share/icons"
-  rm -rf "${pkgdir}/usr/share/applications"
-  rm -rf "${pkgdir}/usr/include"
-  rm -rf "${pkgdir}/usr/bin"
-}

Copied: stuntrally-data/repos/community-any/PKGBUILD (from rev 141427, 
stuntrally-data/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-09-22 03:01:02 UTC (rev 141428)
@@ -0,0 +1,56 @@
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=stuntrally-data
+_pkgname=stuntrally
+pkgver=2.6
+pkgrel=2
+pkgdesc="Stunt Rally game with track editor, based on VDrift (data files)"
+arch=('any')
+license=('GPL3')
+url="http://code.google.com/p/vdrift-ogre;
+makedepends=('cmake' 'boost' 'libvorbis' 'mygui' 'sdl2' 'enet' 
'hicolor-icon-theme' 'libxcursor' 'bullet' 'openal')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/stuntrally/stuntrally/archive/${pkgver}.tar.gz;
+
"$pkgname-tracks-$pkgver.tar.gz::https://github.com/stuntrally/tracks/archive/${pkgver}.tar.gz;)
+sha256sums=('8cc309d27d26f78dcc596440547d68b5e41d02ef830df2d52d38611d45ebbaca'
+'4bce700516a2a178ac04cfbf7df2887ba42225802f5a3e670f770ea01345687b')
+
+build() {
+  # build the sources
+  cd "${srcdir}/stuntrally-${pkgver}/"
+
+  rm -rf build
+  mkdir build && cd build
+
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX="/usr" \
+  -DSHARE_INSTALL="share/stuntrally"
+  make
+
+  # build the tracks
+  cd "${srcdir}/tracks-${pkgver}/"
+
+  rm -rf build
+  mkdir build && cd build
+
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX="/usr"
+  make
+}
+
+package() {
+  # install the sources
+  cd "${srcdir}/stuntrally-${pkgver}/build/"
+  make DESTDIR="${pkgdir}" install
+
+  # install the tracks
+  cd "${srcdir}/tracks-${pkgver}/build"
+  make DESTDIR="${pkgdir}/usr/share/stuntrally/" install
+
+  # clean up
+  rm -rf "${pkgdir}/usr/share/stuntrally/tracks/build"
+  rm -rf "${pkgdir}/usr/share/icons"
+  rm -rf "${pkgdir}/usr/share/applications"
+  rm -rf "${pkgdir}/usr/include"
+  rm -rf "${pkgdir}/usr/bin"
+  rm -rf "${pkgdir}/usr/lib"
+}


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 04:59:55
  Author: fyan
Revision: 141425

upgpkg: python-slip 0.6.1-2

rebuild for python 3.5

Modified:
  python-slip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-22 02:56:10 UTC (rev 141424)
+++ PKGBUILD2015-09-22 02:59:55 UTC (rev 141425)
@@ -3,7 +3,7 @@
 
 pkgname=python-slip
 pkgver=0.6.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Simple Library for Python'
 arch=('any')
 url='http://fedorahosted.org/python-slip'


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 05:00:13
  Author: fyan
Revision: 141426

archrelease: copy trunk to community-staging-any

Added:
  python-slip/repos/community-staging-any/
  python-slip/repos/community-staging-any/PKGBUILD
(from rev 141425, python-slip/trunk/PKGBUILD)

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

Copied: python-slip/repos/community-staging-any/PKGBUILD (from rev 141425, 
python-slip/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-09-22 03:00:13 UTC (rev 141426)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+
+pkgname=python-slip
+pkgver=0.6.1
+pkgrel=2
+pkgdesc='Simple Library for Python'
+arch=('any')
+url='http://fedorahosted.org/python-slip'
+license=('GPL2')
+depends=('polkit' 'python-dbus' 'python-decorator' 'python-gobject'
+ 'python-six')
+makedepends=('python-setuptools')
+source=("http://fedorahosted.org/released/python-slip/python-slip-${pkgver}.tar.bz2;)
+sha256sums=('bc897f1ab6f5b4989f85548799aaeb84fde67bbba18e40341bfe1d7885c2fd9a')
+
+build() {
+  cd python-slip-${pkgver}
+
+  make
+}
+
+package() {
+  cd python-slip-${pkgver}
+
+  python setup.py install --root="${pkgdir}" --optimize='1'
+}
+
+# vim: ts=2 sw=2 et:


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 04:25:45
  Author: fyan
Revision: 247042

upgpkg: python-cairo 1.10.0-6

rebuild for python 3.5

Modified:
  python-cairo/trunk/PKGBUILD
Deleted:
  python-cairo/trunk/pycairo-1.10.0-waf-python3.4.patch

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 19:48:49 UTC (rev 247041)
+++ PKGBUILD2015-09-22 02:25:45 UTC (rev 247042)
@@ -4,7 +4,8 @@
 
 pkgname=python-cairo
 pkgver=1.10.0
-pkgrel=5
+_waf_version=1.7.15
+pkgrel=6
 pkgdesc="Python bindings for the cairo graphics library"
 arch=('i686' 'x86_64')
 url="http://www.cairographics.org/pycairo;
@@ -11,16 +12,20 @@
 license=('LGPL3')
 depends=('python' 'cairo')
 source=(http://cairographics.org/releases/pycairo-${pkgver}.tar.bz2
-pycairo-1.10.0-waf-python3.4.patch)
+http://waf.googlecode.com/files/waf-${_waf_version}.tar.bz2)
 md5sums=('e6fd3f2f1e6a72e0db0868c4985669c5'
- '418e36055c75392f6501918d1c33d448')
+ 'a62272a3b4eb05b7e5842b4f9839cb98')
 
 build() {
   cd pycairo-${pkgver}
+
+  # use newer waf
+  cp "$srcdir/waf-$_waf_version/waf" ./
+
+  # fix compatibility with newer waf
+  # 
http://cgit.freedesktop.org/pycairo/commit/?id=c57cd129407c904f8c2f752a59d0183df7b01a5e
+  sed -e "s/ctx.\(tool_options\|check_tool\)(/ctx.load(/" -i wscript
   
-  # https://bugs.gentoo.org/show_bug.cgi?id=504342
-  patch -i "$srcdir/pycairo-1.10.0-waf-python3.4.patch"
-
   # Ensure that ./waf has created the cached unpacked version
   # of the wafadmin source tree.
   # This will be created to a subdirectory like

Deleted: pycairo-1.10.0-waf-python3.4.patch
===
(Binary files differ)


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

2015-09-21 Thread Felix Yan
Date: Tuesday, September 22, 2015 @ 04:51:24
  Author: fyan
Revision: 141423

upgpkg: python-pytest-django 2.8.0-3

rebuild for python 3.5

Modified:
  python-pytest-django/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-22 02:25:02 UTC (rev 141422)
+++ PKGBUILD2015-09-22 02:51:24 UTC (rev 141423)
@@ -4,7 +4,7 @@
 pkgbase=python-pytest-django
 pkgname=('python-pytest-django' 'python2-pytest-django')
 pkgver=2.8.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A Django plugin for py.test"
 arch=('any')
 license=('BSD')
@@ -37,7 +37,7 @@
 
   cd "$srcdir/pytest-django"
   python setup.py install --root="$PWD/tmp_install" --optimize=1
-  
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.4/site-packages:$PYTHONPATH:$PWD" \
+  
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH:$PWD" \
   DJANGO_SETTINGS_MODULE=pytest_django_test.settings_sqlite \
 py.test tests || warning "Tests failed"
 
@@ -45,7 +45,8 @@
   python2 setup.py install --root="$PWD/tmp_install" --optimize=1
   
PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH:$PWD" \
   DJANGO_SETTINGS_MODULE=pytest_django_test.settings_sqlite \
-py.test2 tests
+py.test2 tests || warning "Tests failed"
+  # failed with pytest 2.8, skipping for now.
 }
 
 package_python-pytest-django() {


[arch-commits] Commit in umurmur/trunk (PKGBUILD mbedtls2.patch)

2015-09-21 Thread Sergej Pupykin
Date: Tuesday, September 22, 2015 @ 00:11:49
  Author: spupykin
Revision: 141416

upgpkg: umurmur 0.2.16_a-1

upd

Added:
  umurmur/trunk/mbedtls2.patch
Modified:
  umurmur/trunk/PKGBUILD

+
 PKGBUILD   |   20 +
 mbedtls2.patch |  591 +++
 2 files changed, 603 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 21:16:11 UTC (rev 141415)
+++ PKGBUILD2015-09-21 22:11:49 UTC (rev 141416)
@@ -4,8 +4,8 @@
 # Contributor: xav 
 
 pkgname=umurmur
-pkgver=0.2.16
-pkgrel=2
+pkgver=0.2.16_a
+pkgrel=1
 pkgdesc='Minimalistic Mumble server'
 arch=('i686' 'x86_64')
 url='https://github.com/umurmur/umurmur'
@@ -13,24 +13,28 @@
 depends=('mbedtls' 'libconfig' 'protobuf-c')
 install=$pkgname.install
 backup=('etc/umurmur/umurmur.conf')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz
+source=($pkgname-$pkgver.tar.gz::$url/archive/${pkgver/_/}.tar.gz
+   mbedtls2.patch
 umurmur.service)
-md5sums=('5d6f5b01a0fc357e26ea9ed433031bb9'
+md5sums=('061aa71eb059eb00d2b123ec9200b405'
+ 'e8206f12304ec742221c69c151d5a817'
  'd9d556e4ffa77e193fb40ce508804720')
 
 prepare() {
-  cd $pkgname-$pkgver
+  cd $pkgname-${pkgver/_/}
+  patch -p1 <$srcdir/mbedtls2.patch
   ./autogen.sh
 }
 
 build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --mandir=/usr/share/man --with-ssl=polarssl
+  cd $pkgname-${pkgver/_/}
+  LIBS="-lmbedtls -lmbedcrypto -lmbedx509" ./configure --prefix=/usr 
--mandir=/usr/share/man --with-ssl=polarssl
+  echo "#define USE_POLARSSL 1" >>src/config.h
   make
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd $pkgname-${pkgver/_/}
   make DESTDIR="$pkgdir" install
 
   install -Dm644 umurmur.conf.example "$pkgdir"/etc/umurmur/umurmur.conf

Added: mbedtls2.patch
===
--- mbedtls2.patch  (rev 0)
+++ mbedtls2.patch  2015-09-21 22:11:49 UTC (rev 141416)
@@ -0,0 +1,591 @@
+Only in umurmur-0.2.16a.my: aclocal.m4
+Only in umurmur-0.2.16a.my: autom4te.cache
+diff -wbBur umurmur-0.2.16a/cmake/Modules/FindPolarSSL.cmake 
umurmur-0.2.16a.my/cmake/Modules/FindPolarSSL.cmake
+--- umurmur-0.2.16a/cmake/Modules/FindPolarSSL.cmake   2015-06-20 
01:58:46.0 +0300
 umurmur-0.2.16a.my/cmake/Modules/FindPolarSSL.cmake2015-09-22 
01:03:32.671708759 +0300
+@@ -1,8 +1,8 @@
+ include(FindPackageHandleStandardArgs)
+ include(CheckSymbolExists)
+ 
+-find_path(POLARSSL_INCLUDE_DIR NAMES "version.h" PATHS /usr/pkg /usr/local 
/usr PATH_SUFFIXES "include/polarssl")
+-find_path(POLARSSL_LIB_DIR NAMES "libpolarssl.so" "libpolarssl.dylib" 
"libpolarssl.a" PATHS /usr/pkg /usr/local /usr PATH_SUFFIXES "lib" 
"lib/${CMAKE_LIBRARY_ARCHITECTURE}")
++find_path(POLARSSL_INCLUDE_DIR NAMES "version.h" PATHS /usr/pkg /usr/local 
/usr PATH_SUFFIXES "include/mbedtls")
++find_path(POLARSSL_LIB_DIR NAMES "libmbedtls.so" "libmbedtls.dylib" 
"libmbedtls.a" PATHS /usr/pkg /usr/local /usr PATH_SUFFIXES "lib" 
"lib/${CMAKE_LIBRARY_ARCHITECTURE}")
+ 
+ if(POLARSSL_INCLUDE_DIR AND POLARSSL_LIB_DIR)
+   set(POLARSSL_LIBRARIES polarssl)
+Only in umurmur-0.2.16a.my: compile
+Only in umurmur-0.2.16a.my: config.guess
+Only in umurmur-0.2.16a.my: config.log
+Only in umurmur-0.2.16a.my: config.status
+Only in umurmur-0.2.16a.my: config.sub
+Only in umurmur-0.2.16a.my: configure
+diff -wbBur umurmur-0.2.16a/configure.ac umurmur-0.2.16a.my/configure.ac
+--- umurmur-0.2.16a/configure.ac   2015-06-20 01:58:46.0 +0300
 umurmur-0.2.16a.my/configure.ac2015-09-22 01:03:32.671708759 +0300
+@@ -37,10 +37,10 @@
+ AC_CANONICAL_HOST
+ 
+ # Configure options.
+-AC_ARG_WITH([ssl], [AC_HELP_STRING([--with-ssl=@<:@LIB@:>@], [SSL library 
(openssl|polarssl|gnutls) @<:@default=polarssl@:>@])], [], [with_ssl=polarssl])
++AC_ARG_WITH([ssl], [AC_HELP_STRING([--with-ssl=@<:@LIB@:>@], [SSL library 
(openssl|mbedtls|gnutls) @<:@default=mbedtls@:>@])], [], [with_ssl=mbedtls])
+ AC_ARG_ENABLE([shmapi], [AC_HELP_STRING([--enable-shmapi], [compile with 
Sharedmemory API support @<:@default=no@:>@])],[],[enable_shmapi=no] )
+-AC_ARG_ENABLE(polarssl-test-cert, [  --enable-polarssl-test-cert  Link to 
PolarSSL test certificate and key @<:@default=no@:>@], 
[enable_polarssl_test_cert=yes])
+-AC_ARG_ENABLE(polarssl-havege, [  --enable-polarssl-havege  Link to PolarSSL 
HAVEGE random generator key @<:@default=no@:>@ Default: /dev/urandom], 
[enable_polarssl_havege=yes])
++AC_ARG_ENABLE(mbedtls-test-cert, [  --enable-mbedtls-test-cert  Link to 
PolarSSL test certificate and key @<:@default=no@:>@], 
[enable_mbedtls_test_cert=yes])
++AC_ARG_ENABLE(mbedtls-havege, [  --enable-mbedtls-havege  Link to PolarSSL 
HAVEGE random generator key @<:@default=no@:>@ Default: /dev/urandom], 
[enable_mbedtls_havege=yes])
+ 
+ # Checks for programs.
+ AC_PROG_CC
+@@ -58,11 +58,11 @@
+ 

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

2015-09-21 Thread Sergej Pupykin
Date: Tuesday, September 22, 2015 @ 00:12:10
  Author: spupykin
Revision: 141417

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

Added:
  umurmur/repos/community-staging-i686/
  umurmur/repos/community-staging-i686/PKGBUILD
(from rev 141416, umurmur/trunk/PKGBUILD)
  umurmur/repos/community-staging-i686/mbedtls2.patch
(from rev 141416, umurmur/trunk/mbedtls2.patch)
  umurmur/repos/community-staging-i686/umurmur.install
(from rev 141416, umurmur/trunk/umurmur.install)
  umurmur/repos/community-staging-i686/umurmur.service
(from rev 141416, umurmur/trunk/umurmur.service)
  umurmur/repos/community-staging-x86_64/
  umurmur/repos/community-staging-x86_64/PKGBUILD
(from rev 141416, umurmur/trunk/PKGBUILD)
  umurmur/repos/community-staging-x86_64/mbedtls2.patch
(from rev 141416, umurmur/trunk/mbedtls2.patch)
  umurmur/repos/community-staging-x86_64/umurmur.install
(from rev 141416, umurmur/trunk/umurmur.install)
  umurmur/repos/community-staging-x86_64/umurmur.service
(from rev 141416, umurmur/trunk/umurmur.service)

--+
 community-staging-i686/PKGBUILD  |   43 ++
 community-staging-i686/mbedtls2.patch|  591 +
 community-staging-i686/umurmur.install   |   13 
 community-staging-i686/umurmur.service   |   15 
 community-staging-x86_64/PKGBUILD|   43 ++
 community-staging-x86_64/mbedtls2.patch  |  591 +
 community-staging-x86_64/umurmur.install |   13 
 community-staging-x86_64/umurmur.service |   15 
 8 files changed, 1324 insertions(+)

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


[arch-commits] Commit in umurmur/trunk (PKGBUILD mbedtls2.patch)

2015-09-21 Thread Sergej Pupykin
Date: Tuesday, September 22, 2015 @ 00:14:34
  Author: spupykin
Revision: 141418

Modified:
  umurmur/trunk/PKGBUILD
  umurmur/trunk/mbedtls2.patch

+
 PKGBUILD   |2 +-
 mbedtls2.patch |   37 -
 2 files changed, 1 insertion(+), 38 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 22:12:10 UTC (rev 141417)
+++ PKGBUILD2015-09-21 22:14:34 UTC (rev 141418)
@@ -17,7 +17,7 @@
mbedtls2.patch
 umurmur.service)
 md5sums=('061aa71eb059eb00d2b123ec9200b405'
- 'e8206f12304ec742221c69c151d5a817'
+ 'd0fbf871b5e14a0b38b6885dbf166967'
  'd9d556e4ffa77e193fb40ce508804720')
 
 prepare() {

Modified: mbedtls2.patch
===
--- mbedtls2.patch  2015-09-21 22:12:10 UTC (rev 141417)
+++ mbedtls2.patch  2015-09-21 22:14:34 UTC (rev 141418)
@@ -1,5 +1,3 @@
-Only in umurmur-0.2.16a.my: aclocal.m4
-Only in umurmur-0.2.16a.my: autom4te.cache
 diff -wbBur umurmur-0.2.16a/cmake/Modules/FindPolarSSL.cmake 
umurmur-0.2.16a.my/cmake/Modules/FindPolarSSL.cmake
 --- umurmur-0.2.16a/cmake/Modules/FindPolarSSL.cmake   2015-06-20 
01:58:46.0 +0300
 +++ umurmur-0.2.16a.my/cmake/Modules/FindPolarSSL.cmake2015-09-22 
01:03:32.671708759 +0300
@@ -14,12 +12,6 @@
  
  if(POLARSSL_INCLUDE_DIR AND POLARSSL_LIB_DIR)
set(POLARSSL_LIBRARIES polarssl)
-Only in umurmur-0.2.16a.my: compile
-Only in umurmur-0.2.16a.my: config.guess
-Only in umurmur-0.2.16a.my: config.log
-Only in umurmur-0.2.16a.my: config.status
-Only in umurmur-0.2.16a.my: config.sub
-Only in umurmur-0.2.16a.my: configure
 diff -wbBur umurmur-0.2.16a/configure.ac umurmur-0.2.16a.my/configure.ac
 --- umurmur-0.2.16a/configure.ac   2015-06-20 01:58:46.0 +0300
 +++ umurmur-0.2.16a.my/configure.ac2015-09-22 01:03:32.671708759 +0300
@@ -73,15 +65,6 @@
AC_DEFINE([USE_POLARSSL_HAVEGE], [], [Use PolarSSL HAVEGE random 
generator])
  ])
  ])
-Only in umurmur-0.2.16a.my: depcomp
-Only in umurmur-0.2.16a.my: install-sh
-Only in umurmur-0.2.16a.my: Makefile
-Only in umurmur-0.2.16a.my: Makefile.in
-Only in umurmur-0.2.16a.my: missing
-Only in umurmur-0.2.16a.my/src: ban.o
-Only in umurmur-0.2.16a.my/src: channel.o
-Only in umurmur-0.2.16a.my/src: client.o
-Only in umurmur-0.2.16a.my/src: config.h
 diff -wbBur umurmur-0.2.16a/src/config.h.in umurmur-0.2.16a.my/src/config.h.in
 --- umurmur-0.2.16a/src/config.h.in2015-06-20 01:58:46.0 +0300
 +++ umurmur-0.2.16a.my/src/config.h.in 2015-09-22 01:03:36.0 +0300
@@ -357,8 +340,6 @@
 +/* Define to the type of an unsigned integer type of width exactly 8 bits if
 +   such a type exists and the standard includes do not define it. */
 +#undef uint8_t
-Only in umurmur-0.2.16a.my/src: config.h.in~
-Only in umurmur-0.2.16a.my/src: conf.o
 diff -wbBur umurmur-0.2.16a/src/crypt.h umurmur-0.2.16a.my/src/crypt.h
 --- umurmur-0.2.16a/src/crypt.h2015-06-20 01:58:46.0 +0300
 +++ umurmur-0.2.16a.my/src/crypt.h 2015-09-22 01:03:32.671708759 +0300
@@ -374,17 +355,6 @@
  
  #define CRYPT_AES_KEY aes_context
  #define AES_BLOCK_SIZE 16
-Only in umurmur-0.2.16a.my/src: crypt.o
-Only in umurmur-0.2.16a.my/src: .deps
-Only in umurmur-0.2.16a.my/src: log.o
-Only in umurmur-0.2.16a.my/src: main.o
-Only in umurmur-0.2.16a.my/src: Makefile
-Only in umurmur-0.2.16a.my/src: Makefile.in
-Only in umurmur-0.2.16a.my/src: messagehandler.o
-Only in umurmur-0.2.16a.my/src: messages.o
-Only in umurmur-0.2.16a.my/src: Mumble.pb-c.o
-Only in umurmur-0.2.16a.my/src: pds.o
-Only in umurmur-0.2.16a.my/src: server.o
 diff -wbBur umurmur-0.2.16a/src/ssl.h umurmur-0.2.16a.my/src/ssl.h
 --- umurmur-0.2.16a/src/ssl.h  2015-06-20 01:58:46.0 +0300
 +++ umurmur-0.2.16a.my/src/ssl.h   2015-09-22 01:07:05.505039648 +0300
@@ -582,10 +552,3 @@
ssl_set_dh_param(ssl, my_dhm_P, my_dhm_G);
  
return ssl;
-Only in umurmur-0.2.16a.my/src: ssli_polarssl.c.orig
-Only in umurmur-0.2.16a.my/src: ssli_polarssl.o
-Only in umurmur-0.2.16a.my/src: stamp-h1
-Only in umurmur-0.2.16a.my/src: timer.o
-Only in umurmur-0.2.16a.my/src: umurmurd
-Only in umurmur-0.2.16a.my/src: util.o
-Only in umurmur-0.2.16a.my/src: voicetarget.o


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

2015-09-21 Thread Sergej Pupykin
Date: Tuesday, September 22, 2015 @ 00:19:09
  Author: spupykin
Revision: 141420

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

Added:
  tea/repos/community-i686/PKGBUILD
(from rev 141419, tea/trunk/PKGBUILD)
  tea/repos/community-i686/tea.desktop
(from rev 141419, tea/trunk/tea.desktop)
  tea/repos/community-i686/tea.install
(from rev 141419, tea/trunk/tea.install)
  tea/repos/community-x86_64/PKGBUILD
(from rev 141419, tea/trunk/PKGBUILD)
  tea/repos/community-x86_64/tea.desktop
(from rev 141419, tea/trunk/tea.desktop)
  tea/repos/community-x86_64/tea.install
(from rev 141419, tea/trunk/tea.install)
Deleted:
  tea/repos/community-i686/PKGBUILD
  tea/repos/community-i686/tea.desktop
  tea/repos/community-i686/tea.install
  tea/repos/community-x86_64/PKGBUILD
  tea/repos/community-x86_64/tea.desktop
  tea/repos/community-x86_64/tea.install

--+
 /PKGBUILD|   78 +
 /tea.desktop |   20 ++
 /tea.install |8 
 community-i686/PKGBUILD  |   39 
 community-i686/tea.desktop   |   10 -
 community-i686/tea.install   |4 --
 community-x86_64/PKGBUILD|   39 
 community-x86_64/tea.desktop |   10 -
 community-x86_64/tea.install |4 --
 9 files changed, 106 insertions(+), 106 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-21 22:18:50 UTC (rev 141419)
+++ community-i686/PKGBUILD 2015-09-21 22:19:09 UTC (rev 141420)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Andrea Scarpino 
-# Contributor: Roman Kyrylych 
-# Contributor: Michal Kaliszka 
-# Contributor: Zsolt Varadi 
-
-pkgname=tea
-pkgver=41.0.0
-pkgrel=1
-pkgdesc="A Qt-based text editor for Linux and *BSD. With an ultimate small 
size TEA provides you hundreds of functions."
-arch=('i686' 'x86_64')
-url="http://semiletov.org/tea/;
-license=('GPL')
-depends=('qt4' 'aspell' 'hunspell')
-install=tea.install
-source=(http://semiletov.org/tea/dloads/tea-$pkgver.tar.bz2
-tea.desktop)
-md5sums=('36e0504ccfeef676ee04cf41aede33b5'
- '377ace3363124f4c086de0babb820761')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-#  sed -i 's|i + j|(int)(i + j)|' textproc.cpp
-  sed -i 's|/usr/local|/usr|g' src.pro
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  qmake-qt4
-  make
-}
-
-package(){
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make INSTALL_ROOT="${pkgdir}" install
-  install -Dm644 "${srcdir}/tea.desktop" 
"${pkgdir}/usr/share/applications/tea.desktop"
-  install -Dm644 icons/tea_icon_v2.png "${pkgdir}/usr/share/pixmaps/tea.png"
-}

Copied: tea/repos/community-i686/PKGBUILD (from rev 141419, tea/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-21 22:19:09 UTC (rev 141420)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Andrea Scarpino 
+# Contributor: Roman Kyrylych 
+# Contributor: Michal Kaliszka 
+# Contributor: Zsolt Varadi 
+
+pkgname=tea
+pkgver=41.1.0
+pkgrel=1
+pkgdesc="A Qt-based text editor for Linux and *BSD. With an ultimate small 
size TEA provides you hundreds of functions."
+arch=('i686' 'x86_64')
+url="http://semiletov.org/tea/;
+license=('GPL')
+depends=('qt4' 'aspell' 'hunspell')
+install=tea.install
+source=(http://semiletov.org/tea/dloads/tea-$pkgver.tar.bz2
+tea.desktop)
+md5sums=('8a41da9884f98b8ca6f57296243f8fbc'
+ '377ace3363124f4c086de0babb820761')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+#  sed -i 's|i + j|(int)(i + j)|' textproc.cpp
+  sed -i 's|/usr/local|/usr|g' src.pro
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  qmake-qt4
+  make
+}
+
+package(){
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make INSTALL_ROOT="${pkgdir}" install
+  install -Dm644 "${srcdir}/tea.desktop" 
"${pkgdir}/usr/share/applications/tea.desktop"
+  install -Dm644 icons/tea_icon_v2.png "${pkgdir}/usr/share/pixmaps/tea.png"
+}

Deleted: community-i686/tea.desktop
===
--- community-i686/tea.desktop  2015-09-21 22:18:50 UTC (rev 141419)
+++ community-i686/tea.desktop  2015-09-21 22:19:09 UTC (rev 141420)
@@ -1,10 +0,0 @@
-[Desktop Entry]
-Encoding=UTF-8
-Name=Tea
-Comment=A small programmer's QT editor
-Exec=tea %U
-Terminal=false
-Type=Application
-StartupNotify=true
-Icon=tea.png
-Categories=Application;Utility;TextEditor;

Copied: tea/repos/community-i686/tea.desktop (from rev 141419, 

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

2015-09-21 Thread Sergej Pupykin
Date: Tuesday, September 22, 2015 @ 00:18:50
  Author: spupykin
Revision: 141419

upgpkg: tea 41.1.0-1

upd

Modified:
  tea/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 22:14:34 UTC (rev 141418)
+++ PKGBUILD2015-09-21 22:18:50 UTC (rev 141419)
@@ -6,7 +6,7 @@
 # Contributor: Zsolt Varadi 
 
 pkgname=tea
-pkgver=41.0.0
+pkgver=41.1.0
 pkgrel=1
 pkgdesc="A Qt-based text editor for Linux and *BSD. With an ultimate small 
size TEA provides you hundreds of functions."
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 install=tea.install
 source=(http://semiletov.org/tea/dloads/tea-$pkgver.tar.bz2
 tea.desktop)
-md5sums=('36e0504ccfeef676ee04cf41aede33b5'
+md5sums=('8a41da9884f98b8ca6f57296243f8fbc'
  '377ace3363124f4c086de0babb820761')
 
 prepare() {


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

2015-09-21 Thread Jelle van der Waa
Date: Monday, September 21, 2015 @ 18:05:05
  Author: jelle
Revision: 141387

upgpkg: s3cmd 1.6.0-1

Modified:
  s3cmd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 14:07:47 UTC (rev 141386)
+++ PKGBUILD2015-09-21 16:05:05 UTC (rev 141387)
@@ -4,7 +4,7 @@
 # Contributor: Daniel Grana 
 
 pkgname=s3cmd
-pkgver=1.5.2
+pkgver=1.6.0
 pkgrel=1
 pkgdesc="A command line client for Amazon S3"
 arch=('any')
@@ -14,7 +14,7 @@
 makedepends=('python2-setuptools')
 optdepends=('gnupg: encrypted file storage')
 
source=("http://downloads.sourceforge.net/sourceforge/s3tools/$pkgname-$pkgver.tar.gz;)
-md5sums=('3153116dc62c817a724ea58080968383')
+md5sums=('c07a81248b4f26b299ada8ab4ccc8801')
 
 package() {
   cd "${srcdir}/${pkgname}-${pkgver}"


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

2015-09-21 Thread Jelle van der Waa
Date: Monday, September 21, 2015 @ 18:05:26
  Author: jelle
Revision: 141388

archrelease: copy trunk to community-any

Added:
  s3cmd/repos/community-any/PKGBUILD
(from rev 141387, s3cmd/trunk/PKGBUILD)
Deleted:
  s3cmd/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-21 16:05:05 UTC (rev 141387)
+++ PKGBUILD2015-09-21 16:05:26 UTC (rev 141388)
@@ -1,22 +0,0 @@
-# $Id$
-# Maintainer: Kaiting Chen 
-# Contributor: Simon Lipp 
-# Contributor: Daniel Grana 
-
-pkgname=s3cmd
-pkgver=1.5.2
-pkgrel=1
-pkgdesc="A command line client for Amazon S3"
-arch=('any')
-url='http://s3tools.org/s3cmd'
-license=('GPL')
-depends=('python2' 'python2-dateutil')
-makedepends=('python2-setuptools')
-optdepends=('gnupg: encrypted file storage')
-source=("http://downloads.sourceforge.net/sourceforge/s3tools/$pkgname-$pkgver.tar.gz;)
-md5sums=('3153116dc62c817a724ea58080968383')
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  python2 setup.py install --root="$pkgdir"
-}

Copied: s3cmd/repos/community-any/PKGBUILD (from rev 141387, 
s3cmd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-09-21 16:05:26 UTC (rev 141388)
@@ -0,0 +1,22 @@
+# $Id$
+# Maintainer: Kaiting Chen 
+# Contributor: Simon Lipp 
+# Contributor: Daniel Grana 
+
+pkgname=s3cmd
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="A command line client for Amazon S3"
+arch=('any')
+url='http://s3tools.org/s3cmd'
+license=('GPL')
+depends=('python2' 'python2-dateutil')
+makedepends=('python2-setuptools')
+optdepends=('gnupg: encrypted file storage')
+source=("http://downloads.sourceforge.net/sourceforge/s3tools/$pkgname-$pkgver.tar.gz;)
+md5sums=('c07a81248b4f26b299ada8ab4ccc8801')
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  python2 setup.py install --root="$pkgdir"
+}


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

2015-09-21 Thread Михаил Страшун
Date: Monday, September 21, 2015 @ 18:07:39
  Author: dicebot
Revision: 141389

upgpkg: dub 0.9.24-1

dub 0.9.24

Modified:
  dub/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 16:05:26 UTC (rev 141388)
+++ PKGBUILD2015-09-21 16:07:39 UTC (rev 141389)
@@ -1,8 +1,8 @@
 # Maintainer:  Mihails Strasuns 
 # Contributor: Moritz Maxeiner 
 pkgname=dub
-pkgver=0.9.23
-pkgrel=2
+pkgver=0.9.24
+pkgrel=1
 pkgdesc="Developer package manager for D programming language"
 arch=('i686' 'x86_64')
 url="https://github.com/D-Programming-Language/dub;


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

2015-09-21 Thread Михаил Страшун
Date: Monday, September 21, 2015 @ 18:12:14
  Author: dicebot
Revision: 141390

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-21 16:07:39 UTC (rev 141389)
+++ community-i686/PKGBUILD 2015-09-21 16:12:14 UTC (rev 141390)
@@ -1,40 +0,0 @@
-# Maintainer:  Mihails Strasuns 
-# Contributor: Moritz Maxeiner 
-pkgname=dub
-pkgver=0.9.23
-pkgrel=2
-pkgdesc="Developer package manager for D programming language"
-arch=('i686' 'x86_64')
-url="https://github.com/D-Programming-Language/dub;
-license=('MIT')
-makedepends=('dmd' 'libphobos-devel' 'git')
-depends=('curl')
-source=(
-  "git+https://github.com/D-Programming-Language/dub.git#tag=v$pkgver;
-)
-sha256sums=(
-  'SKIP'
-)
-
-build()
-{
-  # DC=`$srcdir/Arch-PKGBUILDs/d-compiler.sh`
-  DC=dmd
-  cd "${srcdir}/${pkgname}"
-
-  echo Generating version file...
-  GITVER=$(git describe) || GITVER=unknown
-  echo "module dub.version_;" > source/dub/version_.d
-  echo "enum dubVersion = \"$GITVER\";" >> source/dub/version_.d
-  echo "enum initialCompilerBinary = \"$DC\";" >> source/dub/version_.d
-
-  $DC -ofbin/dub -w -g -version=DubUseCurl -Isource -L-lcurl @build-files.txt
-}
-
-package()
-{
-  cd "${srcdir}/${pkgname}"
-  install -D -m755 bin/dub "${pkgdir}/usr/bin/dub"
-  install -D -m644 scripts/bash-completion/dub.bash 
$pkgdir/usr/share/bash-completion/completions/dub
-  install -D -m644 LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
-}

Copied: dub/repos/community-i686/PKGBUILD (from rev 141389, dub/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-21 16:12:14 UTC (rev 141390)
@@ -0,0 +1,40 @@
+# Maintainer:  Mihails Strasuns 
+# Contributor: Moritz Maxeiner 
+pkgname=dub
+pkgver=0.9.24
+pkgrel=1
+pkgdesc="Developer package manager for D programming language"
+arch=('i686' 'x86_64')
+url="https://github.com/D-Programming-Language/dub;
+license=('MIT')
+makedepends=('dmd' 'libphobos-devel' 'git')
+depends=('curl')
+source=(
+  "git+https://github.com/D-Programming-Language/dub.git#tag=v$pkgver;
+)
+sha256sums=(
+  'SKIP'
+)
+
+build()
+{
+  # DC=`$srcdir/Arch-PKGBUILDs/d-compiler.sh`
+  DC=dmd
+  cd "${srcdir}/${pkgname}"
+
+  echo Generating version file...
+  GITVER=$(git describe) || GITVER=unknown
+  echo "module dub.version_;" > source/dub/version_.d
+  echo "enum dubVersion = \"$GITVER\";" >> source/dub/version_.d
+  echo "enum initialCompilerBinary = \"$DC\";" >> source/dub/version_.d
+
+  $DC -ofbin/dub -w -g -version=DubUseCurl -Isource -L-lcurl @build-files.txt
+}
+
+package()
+{
+  cd "${srcdir}/${pkgname}"
+  install -D -m755 bin/dub "${pkgdir}/usr/bin/dub"
+  install -D -m644 scripts/bash-completion/dub.bash 
$pkgdir/usr/share/bash-completion/completions/dub
+  install -D -m644 LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-09-21 16:07:39 UTC (rev 141389)
+++ community-x86_64/PKGBUILD   2015-09-21 16:12:14 UTC (rev 141390)
@@ -1,40 +0,0 @@
-# Maintainer:  Mihails Strasuns 
-# Contributor: Moritz Maxeiner 
-pkgname=dub
-pkgver=0.9.23
-pkgrel=2
-pkgdesc="Developer package manager for D programming language"
-arch=('i686' 'x86_64')
-url="https://github.com/D-Programming-Language/dub;
-license=('MIT')
-makedepends=('dmd' 'libphobos-devel' 'git')
-depends=('curl')
-source=(
-  "git+https://github.com/D-Programming-Language/dub.git#tag=v$pkgver;
-)
-sha256sums=(
-  'SKIP'
-)
-
-build()
-{
-  # DC=`$srcdir/Arch-PKGBUILDs/d-compiler.sh`
-  DC=dmd
-  cd "${srcdir}/${pkgname}"
-
-  echo Generating version file...
-  GITVER=$(git describe) || GITVER=unknown
-  echo "module dub.version_;" > source/dub/version_.d
-  echo "enum dubVersion = \"$GITVER\";" >> source/dub/version_.d
-  echo "enum initialCompilerBinary = \"$DC\";" >> source/dub/version_.d
-
-  $DC -ofbin/dub -w -g -version=DubUseCurl -Isource -L-lcurl @build-files.txt
-}
-
-package()
-{
-  cd "${srcdir}/${pkgname}"
-  install -D -m755 bin/dub "${pkgdir}/usr/bin/dub"
-  install -D -m644 

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

2015-09-21 Thread Christian Hesse
Date: Monday, September 21, 2015 @ 18:31:04
  Author: eworm
Revision: 141391

upgpkg: packagekit 1.0.10-1

upstream release

Modified:
  packagekit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 16:12:14 UTC (rev 141390)
+++ PKGBUILD2015-09-21 16:31:04 UTC (rev 141391)
@@ -3,7 +3,7 @@
 # Contributor: Jonathan Conder 
 
 pkgname='packagekit'
-pkgver=1.0.9
+pkgver=1.0.10
 pkgrel=1
 pkgdesc='A system designed to make installation and updates of packages easier'
 arch=('i686' 'x86_64')
@@ -20,7 +20,7 @@
'etc/PackageKit/alpm.d/repos.list')
 validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes
 
source=("http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz"{,.asc})
-sha256sums=('c10a276055a4cad063c312b112a0dc1462b9dc055ae30e22946e93872e8fbc1a'
+sha256sums=('e56b8efac6733763d6f525b6436c75585be2194d67d7c4cdeaed82e6c6c6feac'
 'SKIP')
 
 build() {


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

2015-09-21 Thread Christian Hesse
Date: Monday, September 21, 2015 @ 18:31:09
  Author: eworm
Revision: 141392

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

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

-+
 /PKGBUILD   |  108 ++
 /packagekit.install |   22 ++
 community-i686/PKGBUILD |   54 -
 community-i686/packagekit.install   |   11 ---
 community-x86_64/PKGBUILD   |   54 -
 community-x86_64/packagekit.install |   11 ---
 6 files changed, 130 insertions(+), 130 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-21 16:31:04 UTC (rev 141391)
+++ community-i686/PKGBUILD 2015-09-21 16:31:09 UTC (rev 141392)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Jonathan Conder 
-
-pkgname='packagekit'
-pkgver=1.0.9
-pkgrel=1
-pkgdesc='A system designed to make installation and updates of packages easier'
-arch=('i686' 'x86_64')
-url='http://www.packagekit.org/'
-license=('GPL')
-depends=('dbus-glib' 'pacman>=4.2.0' 'polkit' 'shared-mime-info' 'sqlite')
-makedepends=('gobject-introspection' 'gtk-doc' 'intltool'
-   'networkmanager' 'bash-completion' 'vala')
-optdepends=('networkmanager: detect connection status'
-   'bash-completion: command completion in bash')
-install='packagekit.install'
-backup=('var/lib/PackageKit/transactions.db'
-   'etc/PackageKit/alpm.d/pacman.conf'
-   'etc/PackageKit/alpm.d/repos.list')
-validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes
-source=("http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz"{,.asc})
-sha256sums=('c10a276055a4cad063c312b112a0dc1462b9dc055ae30e22946e93872e8fbc1a'
-'SKIP')
-
-build() {
-   cd "${srcdir}/PackageKit-${pkgver}"
-
-   ./autogen.sh --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --libexecdir=/usr/lib/PackageKit \
-   --disable-static \
-   --disable-gtk-doc \
-   --disable-local \
-   --disable-browser-plugin \
-   --disable-gstreamer-plugin \
-   --disable-gtk-module \
-   --disable-command-not-found \
-   --disable-cron \
-   --disable-dummy \
-   --enable-alpm
-   make
-}
-
-package() {
-   cd "${srcdir}/PackageKit-${pkgver}"
-
-   # install directory with polkit's owner and permission
-   install -d -m0700 -o 102 "${pkgdir}"/usr/share/polkit-1/rules.d
-
-   make DESTDIR="${pkgdir}" install
-}
-

Copied: packagekit/repos/community-i686/PKGBUILD (from rev 141391, 
packagekit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-21 16:31:09 UTC (rev 141392)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Jonathan Conder 
+
+pkgname='packagekit'
+pkgver=1.0.10
+pkgrel=1
+pkgdesc='A system designed to make installation and updates of packages easier'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('dbus-glib' 'pacman>=4.2.0' 'polkit' 'shared-mime-info' 'sqlite')
+makedepends=('gobject-introspection' 'gtk-doc' 'intltool'
+   'networkmanager' 'bash-completion' 'vala')
+optdepends=('networkmanager: detect connection status'
+   'bash-completion: command completion in bash')
+install='packagekit.install'
+backup=('var/lib/PackageKit/transactions.db'
+   'etc/PackageKit/alpm.d/pacman.conf'
+   'etc/PackageKit/alpm.d/repos.list')
+validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes
+source=("http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz"{,.asc})
+sha256sums=('e56b8efac6733763d6f525b6436c75585be2194d67d7c4cdeaed82e6c6c6feac'
+'SKIP')
+
+build() {
+   cd "${srcdir}/PackageKit-${pkgver}"
+
+   ./autogen.sh --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --libexecdir=/usr/lib/PackageKit \
+   

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

2015-09-21 Thread Felix Yan
Date: Monday, September 21, 2015 @ 18:43:37
  Author: fyan
Revision: 141393

upgpkg: fail2ban 0.9.3-4

rebuild for python 3.5

Modified:
  fail2ban/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 16:31:09 UTC (rev 141392)
+++ PKGBUILD2015-09-21 16:43:37 UTC (rev 141393)
@@ -7,7 +7,7 @@
 
 pkgname=fail2ban
 pkgver=0.9.3
-pkgrel=3
+pkgrel=4
 pkgdesc='Bans IPs after too many failed authentication attempts'
 url='http://www.fail2ban.org/'
 license=('GPL')


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

2015-09-21 Thread Sébastien Luttringer
Date: Monday, September 21, 2015 @ 18:42:03
  Author: seblu
Revision: 247037

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

Added:
  btrfs-progs/repos/testing-i686/PKGBUILD
(from rev 247036, btrfs-progs/trunk/PKGBUILD)
  btrfs-progs/repos/testing-i686/btrfs-progs.install
(from rev 247036, btrfs-progs/trunk/btrfs-progs.install)
  btrfs-progs/repos/testing-i686/initcpio-hook-btrfs
(from rev 247036, btrfs-progs/trunk/initcpio-hook-btrfs)
  btrfs-progs/repos/testing-i686/initcpio-install-btrfs
(from rev 247036, btrfs-progs/trunk/initcpio-install-btrfs)
  btrfs-progs/repos/testing-x86_64/PKGBUILD
(from rev 247036, btrfs-progs/trunk/PKGBUILD)
  btrfs-progs/repos/testing-x86_64/btrfs-progs.install
(from rev 247036, btrfs-progs/trunk/btrfs-progs.install)
  btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs
(from rev 247036, btrfs-progs/trunk/initcpio-hook-btrfs)
  btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs
(from rev 247036, btrfs-progs/trunk/initcpio-install-btrfs)
Deleted:
  btrfs-progs/repos/testing-i686/PKGBUILD
  btrfs-progs/repos/testing-i686/btrfs-progs.install
  btrfs-progs/repos/testing-i686/initcpio-hook-btrfs
  btrfs-progs/repos/testing-i686/initcpio-install-btrfs
  btrfs-progs/repos/testing-x86_64/PKGBUILD
  btrfs-progs/repos/testing-x86_64/btrfs-progs.install
  btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs
  btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs

---+
 /PKGBUILD |  104 
 /btrfs-progs.install  |   18 +
 /initcpio-hook-btrfs  |   14 
 /initcpio-install-btrfs   |   34 ++
 testing-i686/PKGBUILD |   52 
 testing-i686/btrfs-progs.install  |9 --
 testing-i686/initcpio-hook-btrfs  |7 --
 testing-i686/initcpio-install-btrfs   |   17 -
 testing-x86_64/PKGBUILD   |   52 
 testing-x86_64/btrfs-progs.install|9 --
 testing-x86_64/initcpio-hook-btrfs|7 --
 testing-x86_64/initcpio-install-btrfs |   17 -
 12 files changed, 170 insertions(+), 170 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2015-09-21 16:35:22 UTC (rev 247036)
+++ testing-i686/PKGBUILD   2015-09-21 16:42:03 UTC (rev 247037)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Sébastien "Seblu" Luttringer 
-# Contributor: Tom Gundersen 
-# Contributor: Tobias Powalowski 
-
-pkgname=btrfs-progs
-pkgver=4.2.1
-pkgrel=1
-pkgdesc='Btrfs filesystem utilities'
-arch=('i686' 'x86_64')
-depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib')
-makedepends=('git' 'asciidoc' 'xmlto')
-url='http://btrfs.wiki.kernel.org/'
-replaces=('btrfs-progs-unstable')
-conflicts=('btrfs-progs-unstable')
-provides=('btrfs-progs-unstable')
-license=('GPL2')
-source=("git://git.kernel.org/pub/scm/linux/kernel/git/kdave/$pkgname.git#tag=v$pkgver"
-'initcpio-install-btrfs'
-'initcpio-hook-btrfs')
-install=btrfs-progs.install
-options=(!staticlibs)
-md5sums=('SKIP'
- '7241ba3a4286d08da0d50b7176941112'
- 'b09688a915a0ec8f40e2f5aacbabc9ad')
-
-build() {
-  cd $pkgname
-  ./autogen.sh
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $pkgname
- ./btrfs filesystem show
-}
-
-package() {
-  cd $pkgname
-  make prefix="$pkgdir"/usr install
-
-  # install bash completion (FS#44618)
-  install -Dm644 btrfs-completion 
"$pkgdir/usr/share/bash-completion/completions/btrfs"
-
-  # install mkinitcpio hooks
-  cd "$srcdir"
-  install -Dm644 initcpio-install-btrfs 
"$pkgdir/usr/lib/initcpio/install/btrfs"
-  install -Dm644 initcpio-hook-btrfs "$pkgdir/usr/lib/initcpio/hooks/btrfs"
-}
-
-# vim:set ts=2 sw=2 ft=sh et:

Copied: btrfs-progs/repos/testing-i686/PKGBUILD (from rev 247036, 
btrfs-progs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-21 16:42:03 UTC (rev 247037)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Sébastien "Seblu" Luttringer 
+# Contributor: Tom Gundersen 
+# Contributor: Tobias Powalowski 
+
+pkgname=btrfs-progs
+pkgver=4.2.1
+pkgrel=1
+pkgdesc='Btrfs filesystem utilities'
+arch=('i686' 'x86_64')
+depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib')
+makedepends=('git' 'asciidoc' 'xmlto')
+url='http://btrfs.wiki.kernel.org/'
+replaces=('btrfs-progs-unstable')
+conflicts=('btrfs-progs-unstable')
+provides=('btrfs-progs-unstable')
+license=('GPL2')
+source=("git://git.kernel.org/pub/scm/linux/kernel/git/kdave/$pkgname.git#tag=v$pkgver"
+'initcpio-install-btrfs'
+'initcpio-hook-btrfs')
+install=btrfs-progs.install
+options=(!staticlibs)

[arch-commits] Commit in lib32-mesa/repos/multilib-testing-x86_64 (6 files)

2015-09-21 Thread Laurent Carlier
Date: Monday, September 21, 2015 @ 18:44:56
  Author: lcarlier
Revision: 141396

archrelease: copy trunk to multilib-testing-x86_64

Added:
  
lib32-mesa/repos/multilib-testing-x86_64/0001-i965-Remove-early-release-of-DRI2-miptree.patch
(from rev 141395, 
lib32-mesa/trunk/0001-i965-Remove-early-release-of-DRI2-miptree.patch)
  lib32-mesa/repos/multilib-testing-x86_64/LICENSE
(from rev 141395, lib32-mesa/trunk/LICENSE)
  lib32-mesa/repos/multilib-testing-x86_64/PKGBUILD
(from rev 141395, lib32-mesa/trunk/PKGBUILD)
Deleted:
  
lib32-mesa/repos/multilib-testing-x86_64/0001-i965-Remove-early-release-of-DRI2-miptree.patch
  lib32-mesa/repos/multilib-testing-x86_64/LICENSE
  lib32-mesa/repos/multilib-testing-x86_64/PKGBUILD

--+
 0001-i965-Remove-early-release-of-DRI2-miptree.patch |   66 +--
 LICENSE  |  164 -
 PKGBUILD |  287 -
 3 files changed, 263 insertions(+), 254 deletions(-)

Deleted: 0001-i965-Remove-early-release-of-DRI2-miptree.patch
===
--- 0001-i965-Remove-early-release-of-DRI2-miptree.patch2015-09-21 
16:44:49 UTC (rev 141395)
+++ 0001-i965-Remove-early-release-of-DRI2-miptree.patch2015-09-21 
16:44:56 UTC (rev 141396)
@@ -1,33 +0,0 @@
-From e2a696a4cd93c2dbe445243de48ed478fbdb8009 Mon Sep 17 00:00:00 2001
-From: Chris Wilson 
-Date: Fri, 10 Jul 2015 10:41:35 +0100
-Subject: [PATCH] i965: Remove early release of DRI2 miptree
-
-intel_update_winsys_renderbuffer_miptree() will release the existing
-miptree when wrapping a new DRI2 buffer, so we can remove the early
-release and so prevent a NULL mt dereference should importing the new
-DRI2 name fail for any reason. (Reusing the old DRI2 name will result
-in the rendering going astray, to a stale buffer, and not shown on the
-screen, but it allows us to issue a warning and not crash much later in
-innocent code.)
-
-Signed-off-by: Chris Wilson 

- src/mesa/drivers/dri/i965/brw_context.c | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/src/mesa/drivers/dri/i965/brw_context.c 
b/src/mesa/drivers/dri/i965/brw_context.c
-index e8d1396..72f3897 100644
 a/src/mesa/drivers/dri/i965/brw_context.c
-+++ b/src/mesa/drivers/dri/i965/brw_context.c
-@@ -1388,7 +1388,6 @@ intel_process_dri2_buffer(struct brw_context *brw,
-   buffer->cpp, buffer->pitch);
-}
- 
--   intel_miptree_release(>mt);
-bo = drm_intel_bo_gem_create_from_name(brw->bufmgr, buffer_name,
-   buffer->name);
-if (!bo) {
--- 
-2.5.0
-

Copied: 
lib32-mesa/repos/multilib-testing-x86_64/0001-i965-Remove-early-release-of-DRI2-miptree.patch
 (from rev 141395, 
lib32-mesa/trunk/0001-i965-Remove-early-release-of-DRI2-miptree.patch)
===
--- 0001-i965-Remove-early-release-of-DRI2-miptree.patch
(rev 0)
+++ 0001-i965-Remove-early-release-of-DRI2-miptree.patch2015-09-21 
16:44:56 UTC (rev 141396)
@@ -0,0 +1,33 @@
+From e2a696a4cd93c2dbe445243de48ed478fbdb8009 Mon Sep 17 00:00:00 2001
+From: Chris Wilson 
+Date: Fri, 10 Jul 2015 10:41:35 +0100
+Subject: [PATCH] i965: Remove early release of DRI2 miptree
+
+intel_update_winsys_renderbuffer_miptree() will release the existing
+miptree when wrapping a new DRI2 buffer, so we can remove the early
+release and so prevent a NULL mt dereference should importing the new
+DRI2 name fail for any reason. (Reusing the old DRI2 name will result
+in the rendering going astray, to a stale buffer, and not shown on the
+screen, but it allows us to issue a warning and not crash much later in
+innocent code.)
+
+Signed-off-by: Chris Wilson 
+---
+ src/mesa/drivers/dri/i965/brw_context.c | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/src/mesa/drivers/dri/i965/brw_context.c 
b/src/mesa/drivers/dri/i965/brw_context.c
+index e8d1396..72f3897 100644
+--- a/src/mesa/drivers/dri/i965/brw_context.c
 b/src/mesa/drivers/dri/i965/brw_context.c
+@@ -1388,7 +1388,6 @@ intel_process_dri2_buffer(struct brw_context *brw,
+   buffer->cpp, buffer->pitch);
+}
+ 
+-   intel_miptree_release(>mt);
+bo = drm_intel_bo_gem_create_from_name(brw->bufmgr, buffer_name,
+   buffer->name);
+if (!bo) {
+-- 
+2.5.0
+

Deleted: LICENSE
===
--- LICENSE 2015-09-21 16:44:49 UTC (rev 141395)
+++ LICENSE 2015-09-21 16:44:56 UTC (rev 141396)
@@ -1,82 +0,0 @@
-Disclaimer
-
-Mesa is a 3-D graphics library with an API which is very similar to
-that of OpenGL*
-To the extent that Mesa utilizes the OpenGL command syntax or state
-machine, it is 

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

2015-09-21 Thread Laurent Carlier
Date: Monday, September 21, 2015 @ 18:44:49
  Author: lcarlier
Revision: 141395

upgpkg: lib32-mesa 11.0.0-2

restore fix for FS#45750

Modified:
  lib32-mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 16:43:58 UTC (rev 141394)
+++ PKGBUILD2015-09-21 16:44:49 UTC (rev 141395)
@@ -5,7 +5,7 @@
 pkgbase=lib32-mesa
 pkgname=('lib32-mesa-vdpau' 'lib32-mesa' 'lib32-mesa-libgl')
 pkgver=11.0.0
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 makedepends=('python2-mako' 'lib32-libxml2' 'lib32-expat' 'lib32-libx11' 
'glproto' 'lib32-libdrm' 'dri2proto' 'dri3proto' 'presentproto'
  'lib32-libxshmfence' 'lib32-libxxf86vm' 'lib32-libxdamage' 
'gcc-multilib' 'lib32-elfutils' 'lib32-llvm' 'lib32-systemd'
@@ -13,12 +13,21 @@
 url="http://mesa3d.sourceforge.net;
 license=('custom')
 
source=(ftp://ftp.freedesktop.org/pub/mesa/${pkgver}/mesa-${pkgver}.tar.xz{,.sig}
-   LICENSE)
+   LICENSE
+0001-i965-Remove-early-release-of-DRI2-miptree.patch)
 sha256sums=('e095a3eb2eca9dfde7efca8946527c8ae20a0cc938a8c78debc7f158ad44af32'
 'SKIP'
-'7fdc119cf53c8ca65396ea73f6d10af641ba41ea1dd2bd44a824726e01c8b3f2')
+'7fdc119cf53c8ca65396ea73f6d10af641ba41ea1dd2bd44a824726e01c8b3f2'
+'a3f520ea13c923841c646a5b1627927744938ff691aa08e1aeaf14cce12bd1f7')
 validpgpkeys=('8703B6700E7EE06D7A39B8D6EDAE37B02CEB490D') # Emil Velikov 

 
+prepare() {
+  cd ${srcdir}/?esa-*
+
+  # Should fix FS#45750, tested by heftig - Not merged upstream
+  patch -Np1 -i ../0001-i965-Remove-early-release-of-DRI2-miptree.patch
+}
+
 build() {
   export CC="gcc -m32"
   export CXX="g++ -m32"


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

2015-09-21 Thread Laurent Carlier
Date: Monday, September 21, 2015 @ 18:35:08
  Author: lcarlier
Revision: 247035

upgpkg: mesa 11.0.0-2

restore fix for FS#45750

Modified:
  mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 15:12:06 UTC (rev 247034)
+++ PKGBUILD2015-09-21 16:35:08 UTC (rev 247035)
@@ -5,7 +5,7 @@
 pkgbase=mesa
 pkgname=('opencl-mesa' 'libva-mesa-driver' 'mesa-vdpau' 'mesa' 'mesa-libgl')
 pkgver=11.0.0
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 makedepends=('python2-mako' 'libxml2' 'libx11' 'glproto' 'libdrm' 'dri2proto' 
'dri3proto' 'presentproto' 
  'libxshmfence' 'libxxf86vm' 'libxdamage' 'libvdpau' 'libva' 
'wayland' 'elfutils' 'llvm'
@@ -13,12 +13,21 @@
 url="http://mesa3d.sourceforge.net;
 license=('custom')
 
source=(ftp://ftp.freedesktop.org/pub/mesa/${pkgver}/mesa-${pkgver}.tar.xz{,.sig}
-LICENSE)
+LICENSE
+0001-i965-Remove-early-release-of-DRI2-miptree.patch)
 sha256sums=('e095a3eb2eca9dfde7efca8946527c8ae20a0cc938a8c78debc7f158ad44af32'
 'SKIP'
-'7fdc119cf53c8ca65396ea73f6d10af641ba41ea1dd2bd44a824726e01c8b3f2')
+'7fdc119cf53c8ca65396ea73f6d10af641ba41ea1dd2bd44a824726e01c8b3f2'
+'a3f520ea13c923841c646a5b1627927744938ff691aa08e1aeaf14cce12bd1f7')
 validpgpkeys=('8703B6700E7EE06D7A39B8D6EDAE37B02CEB490D') # Emil Velikov 

 
+prepare() {
+  cd ${srcdir}/?esa-*
+
+  # Should fix FS#45750, tested by heftig - Not merged upstream
+  patch -Np1 -i ../0001-i965-Remove-early-release-of-DRI2-miptree.patch
+}
+
 build() {
   cd ${srcdir}/?esa-*
 


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

2015-09-21 Thread Laurent Carlier
Date: Monday, September 21, 2015 @ 18:35:22
  Author: lcarlier
Revision: 247036

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

Added:
  mesa/repos/testing-i686/0001-i965-Remove-early-release-of-DRI2-miptree.patch
(from rev 247035, 
mesa/trunk/0001-i965-Remove-early-release-of-DRI2-miptree.patch)
  mesa/repos/testing-i686/LICENSE
(from rev 247035, mesa/trunk/LICENSE)
  mesa/repos/testing-i686/PKGBUILD
(from rev 247035, mesa/trunk/PKGBUILD)
  mesa/repos/testing-x86_64/0001-i965-Remove-early-release-of-DRI2-miptree.patch
(from rev 247035, 
mesa/trunk/0001-i965-Remove-early-release-of-DRI2-miptree.patch)
  mesa/repos/testing-x86_64/LICENSE
(from rev 247035, mesa/trunk/LICENSE)
  mesa/repos/testing-x86_64/PKGBUILD
(from rev 247035, mesa/trunk/PKGBUILD)
Deleted:
  mesa/repos/testing-i686/0001-i965-Remove-early-release-of-DRI2-miptree.patch
  mesa/repos/testing-i686/LICENSE
  mesa/repos/testing-i686/PKGBUILD
  mesa/repos/testing-x86_64/0001-i965-Remove-early-release-of-DRI2-miptree.patch
  mesa/repos/testing-x86_64/LICENSE
  mesa/repos/testing-x86_64/PKGBUILD

-+
 /0001-i965-Remove-early-release-of-DRI2-miptree.patch   |   66 +
 /LICENSE|  164 
 /PKGBUILD   |  348 
++
 testing-i686/0001-i965-Remove-early-release-of-DRI2-miptree.patch   |   33 
 testing-i686/LICENSE|   82 --
 testing-i686/PKGBUILD   |  165 
 testing-x86_64/0001-i965-Remove-early-release-of-DRI2-miptree.patch |   33 
 testing-x86_64/LICENSE  |   82 --
 testing-x86_64/PKGBUILD |  165 
 9 files changed, 578 insertions(+), 560 deletions(-)

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


  1   2   >