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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 05:52:17
  Author: felixonmars
Revision: 201842

archrelease: copy trunk to community-staging-any

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

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

Copied: python-h2/repos/community-staging-any/PKGBUILD (from rev 201841, 
python-h2/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 05:52:17 UTC (rev 201842)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-h2
+pkgname=('python-h2' 'python2-h2')
+pkgver=2.4.1
+pkgrel=2
+pkgdesc="HTTP/2 State-Machine based protocol implementation"
+arch=('any')
+license=('MIT')
+url="http://hyper.rtfd.org;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-hpack' 
'python2-hpack'
+ 'python-hyperframe' 'python2-hyperframe' 'python2-enum34' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-hypothesis'
+  'python2-hypothesis')
+source=("git+https://github.com/python-hyper/hyper-h2.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a hyper-h2{,-py2}
+
+  export LC_CTYPE=en_US.UTF-8
+}
+
+build() {
+  cd "$srcdir"/hyper-h2
+  python setup.py build
+
+  cd "$srcdir"/hyper-h2-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/hyper-h2
+  python setup.py ptr
+
+  cd "$srcdir"/hyper-h2-py2
+  python2 setup.py ptr
+}
+
+package_python-h2() {
+  depends=('python-hpack' 'python-hyperframe')
+
+  cd hyper-h2
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-h2() {
+  depends=('python2-hpack' 'python2-hyperframe' 'python2-enum34')
+
+  cd hyper-h2-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 05:51:58
  Author: felixonmars
Revision: 201841

Python 3.6 rebuild

Modified:
  python-h2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 05:50:52 UTC (rev 201840)
+++ PKGBUILD2016-12-25 05:51:58 UTC (rev 201841)
@@ -4,7 +4,7 @@
 pkgbase=python-h2
 pkgname=('python-h2' 'python2-h2')
 pkgver=2.4.1
-pkgrel=1
+pkgrel=2
 pkgdesc="HTTP/2 State-Machine based protocol implementation"
 arch=('any')
 license=('MIT')


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 05:50:40
  Author: bpiotrowski
Revision: 201839

archrelease: copy trunk to community-staging-any

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

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

Copied: python-pygal/repos/community-staging-any/PKGBUILD (from rev 201838, 
python-pygal/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 05:50:40 UTC (rev 201839)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Chris Warrick 
+
+pkgbase=python-pygal
+pkgname=('python-pygal' 'python2-pygal')
+epoch=1
+pkgver=2.3.1
+pkgrel=2
+pkgdesc='A Python SVG graph plotting library'
+arch=('any')
+url='http://pygal.org/'
+license=('LGPL3')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-pytest' 'python2-pytest' 'python-lxml' 'python2-lxml'
+  'python-pyquery' 'python2-pyquery' 'python-cairosvg' 
'python-flask' 'python2-flask')
+source=("git+https://github.com/Kozea/pygal.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a "$srcdir/pygal"{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pygal
+  python setup.py build
+
+  cd "$srcdir"/pygal-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/pygal
+  LC_CTYPE=en_US.UTF-8 py.test pygal/
+
+  cd "$srcdir"/pygal-py2
+  py.test2 pygal/
+}
+
+package_python-pygal() {
+  depends=('python-setuptools')
+  optdepends=('python-lxml: for XML output through lxml instead of xml.etree'
+  'python-cairosvg: for PNG output')
+
+  cd pygal
+  python3 setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-pygal() {
+  depends=('python2-setuptools')
+  optdepends=('python2-lxml: for XML output through lxml instead of xml.etree')
+
+  cd pygal-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  mv "$pkgdir"/usr/bin/pygal_gen{,2}.py
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 05:50:52
  Author: felixonmars
Revision: 201840

archrelease: copy trunk to community-staging-any

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

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

Copied: python-hpack/repos/community-staging-any/PKGBUILD (from rev 201839, 
python-hpack/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 05:50:52 UTC (rev 201840)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-hpack
+pkgname=(python-hpack python2-hpack)
+pkgver=2.3.0
+pkgrel=2
+pkgdesc="Pure-Python HPACK header compression"
+arch=('any')
+url="http://hyper.rtfd.org/;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-hypothesis' 'python2-hypothesis')
+source=("git+https://github.com/Lukasa/hpack.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a hpack{,-py2}
+}
+
+build() {
+  cd "$srcdir"/hpack
+  python setup.py build
+
+  cd "$srcdir"/hpack-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/hpack
+  python setup.py ptr
+
+  cd "$srcdir"/hpack-py2
+  python2 setup.py ptr
+}
+
+package_python-hpack() {
+  depends=('python')
+
+  cd hpack
+  python setup.py install -O1 --root "$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-hpack() {
+  depends=('python2')
+
+  cd hpack-py2
+  python2 setup.py install -O1 --root "$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 05:50:34
  Author: bpiotrowski
Revision: 201838

Python 3.6 rebuild

Modified:
  python-pygal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 05:50:32 UTC (rev 201837)
+++ PKGBUILD2016-12-25 05:50:34 UTC (rev 201838)
@@ -6,7 +6,7 @@
 pkgname=('python-pygal' 'python2-pygal')
 epoch=1
 pkgver=2.3.1
-pkgrel=1
+pkgrel=2
 pkgdesc='A Python SVG graph plotting library'
 arch=('any')
 url='http://pygal.org/'


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 05:50:32
  Author: felixonmars
Revision: 201837

Python 3.6 rebuild

Modified:
  python-hpack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 05:46:16 UTC (rev 201836)
+++ PKGBUILD2016-12-25 05:50:32 UTC (rev 201837)
@@ -4,7 +4,7 @@
 pkgbase=python-hpack
 pkgname=(python-hpack python2-hpack)
 pkgver=2.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Pure-Python HPACK header compression"
 arch=('any')
 url="http://hyper.rtfd.org/;


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 05:46:09
  Author: bpiotrowski
Revision: 201835

Python 3.6 rebuild

Modified:
  python-pyquery/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 05:45:23 UTC (rev 201834)
+++ PKGBUILD2016-12-25 05:46:09 UTC (rev 201835)
@@ -6,7 +6,7 @@
 pkgbase=python-pyquery
 pkgname=('python-pyquery' 'python2-pyquery')
 pkgver=1.2.17
-pkgrel=1
+pkgrel=2
 pkgdesc="A jquery-like library for python."
 arch=('any')
 url="https://github.com/gawel/pyquery/;


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 05:46:16
  Author: bpiotrowski
Revision: 201836

archrelease: copy trunk to community-staging-any

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

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

Copied: python-pyquery/repos/community-staging-any/PKGBUILD (from rev 201835, 
python-pyquery/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 05:46:16 UTC (rev 201836)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer : Felix Yan 
+# Contributor: speps 
+# Contributor: Arnau Sanchez 
+
+pkgbase=python-pyquery
+pkgname=('python-pyquery' 'python2-pyquery')
+pkgver=1.2.17
+pkgrel=2
+pkgdesc="A jquery-like library for python."
+arch=('any')
+url="https://github.com/gawel/pyquery/;
+license=('custom:BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-lxml' 
'python2-lxml' 'python-cssselect' 'python2-cssselect' 'git')
+checkdepends=('python-requests' 'python2-requests' 'python-webob' 
'python2-webob' 'python-nose' 'python2-nose'
+  'python-coverage' 'python2-coverage' 'python-webtest' 
'python2-webtest' 'python2-beautifulsoup4'
+  'python2-restkit')
+source=("git+https://github.com/gawel/pyquery.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a pyquery{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pyquery
+  python setup.py build
+
+  cd "$srcdir"/pyquery-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/pyquery
+  nosetests3
+
+  cd "$srcdir"/pyquery-py2
+  nosetests2
+}
+
+package_python-pyquery() {
+  depends=('python-lxml' 'python-cssselect')
+  optdepends=('python-webob: query wsgi app')
+
+  cd pyquery
+  python setup.py install -O1 --root="$pkgdir/"
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pyquery() {
+  depends=('python2-lxml' 'python2-cssselect')
+  optdepends=('python2-webob: to query wsgi app'
+  'python2-restkit: to get url directly with a HostProxy app')
+
+  cd pyquery-py2
+  python2 setup.py install -O1 --root="$pkgdir/"
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 05:45:23
  Author: bpiotrowski
Revision: 201834

archrelease: copy trunk to community-staging-any

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

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

Copied: python-warlock/repos/community-staging-any/PKGBUILD (from rev 201833, 
python-warlock/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 05:45:23 UTC (rev 201834)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-warlock
+pkgname=('python-warlock' 'python2-warlock')
+pkgver=1.3.0
+pkgrel=2
+pkgdesc="Python object model built on JSON schema and JSON patch."
+arch=('any')
+license=('Apache')
+url="https://github.com/bcwaldon/warlock;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-jsonschema' 
'python2-jsonschema'
+ 'python-jsonpatch' 'python2-jsonpatch' 'python-six' 'python2-six' 
'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("git+https://github.com/bcwaldon/warlock.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a warlock{,-py2}
+}
+
+build() {
+  cd "$srcdir"/warlock
+  python setup.py build
+
+  cd "$srcdir"/warlock-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/warlock
+  python setup.py ptr
+
+  cd "$srcdir"/warlock-py2
+  python2 setup.py ptr
+}
+
+package_python-warlock() {
+  depends=('python-jsonschema' 'python-jsonpatch' 'python-six')
+
+  cd warlock
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-warlock() {
+  depends=('python2-jsonschema' 'python2-jsonpatch' 'python2-six')
+
+  cd warlock-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 05:45:17
  Author: bpiotrowski
Revision: 201833

Python 3.6 rebuild

Modified:
  python-warlock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 05:43:52 UTC (rev 201832)
+++ PKGBUILD2016-12-25 05:45:17 UTC (rev 201833)
@@ -4,7 +4,7 @@
 pkgbase=python-warlock
 pkgname=('python-warlock' 'python2-warlock')
 pkgver=1.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Python object model built on JSON schema and JSON patch."
 arch=('any')
 license=('Apache')


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 05:43:52
  Author: felixonmars
Revision: 201832

archrelease: copy trunk to community-staging-any

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

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

Copied: python-webtest/repos/community-staging-any/PKGBUILD (from rev 201831, 
python-webtest/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 05:43:52 UTC (rev 201832)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Jerome Leclanche 
+
+pkgbase=python-webtest
+pkgname=(python-webtest python2-webtest)
+pkgver=2.0.24
+pkgrel=2
+pkgdesc="Helper to test WSGI applications"
+arch=('any')
+url='http://webtest.pythonpaste.org/'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-webob' 
'python2-webob' 'python-six' 'python2-six'
+ 'python-beautifulsoup4' 'python2-beautifulsoup4' 
'python-waitress' 'python2-waitress')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-coverage' 'python2-coverage'
+  'python-pyquery' 'python2-pyquery'  'python-pastedeploy' 
'python2-pastedeploy'
+  'python-wsgiproxy2' 'python2-wsgiproxy2')
+source=("https://pypi.io/packages/source/W/WebTest/WebTest-$pkgver.tar.gz;)
+sha256sums=('c56529b42b48123d44f16e3baf3987c5956fb512e71e8d71d78ef66325fadccd')
+
+prepare() {
+  cp -a WebTest-$pkgver{,-py2}
+
+  export LC_CTYPE=en_US.UTF-8
+}
+
+build() {
+  cd "$srcdir"/WebTest-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/WebTest-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/WebTest-$pkgver
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" nosetests3
+
+  cd "$srcdir"/WebTest-$pkgver-py2
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" nosetests2
+}
+
+package_python-webtest() {
+  depends=('python-webob' 'python-six' 'python-beautifulsoup4' 
'python-waitress')
+  optdepends=('python-pyquery: for response.pyquery'
+  'python-lxml: for response.lxml')
+
+  cd WebTest-$pkgver
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
+  install -Dm644 "docs/license.rst" 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-webtest() {
+  depends=('python2-webob' 'python2-six' 'python2-beautifulsoup4' 
'python2-waitress')
+  optdepends=('python2-pyquery: for response.pyquery'
+  'python2-lxml: for response.lxml')
+
+  cd WebTest-$pkgver-py2
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
+  install -Dm644 "docs/license.rst" 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 05:43:32
  Author: felixonmars
Revision: 201831

upgpkg: python-webtest 2.0.24-2

python 3.6 rebuild

Modified:
  python-webtest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 04:56:55 UTC (rev 201830)
+++ PKGBUILD2016-12-25 05:43:32 UTC (rev 201831)
@@ -5,7 +5,7 @@
 pkgbase=python-webtest
 pkgname=(python-webtest python2-webtest)
 pkgver=2.0.24
-pkgrel=1
+pkgrel=2
 pkgdesc="Helper to test WSGI applications"
 arch=('any')
 url='http://webtest.pythonpaste.org/'


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 05:37:38
  Author: felixonmars
Revision: 284721

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

Added:
  python-pycurl/repos/staging-i686/PKGBUILD
(from rev 284720, python-pycurl/trunk/PKGBUILD)
  python-pycurl/repos/staging-x86_64/PKGBUILD
(from rev 284720, python-pycurl/trunk/PKGBUILD)
Deleted:
  python-pycurl/repos/staging-i686/PKGBUILD
  python-pycurl/repos/staging-x86_64/PKGBUILD

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

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2016-12-25 05:29:28 UTC (rev 284720)
+++ staging-i686/PKGBUILD   2016-12-25 05:37:38 UTC (rev 284721)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Sergej Pupykin 
-# Contributor: Angel 'angvp' Velasquez  
-
-_pypiname=pycurl
-pkgbase=python-$_pypiname
-pkgname=('python-pycurl' 'python2-pycurl')
-pkgver=7.43.0
-pkgrel=2
-arch=('i686' 'x86_64')
-url="http://pycurl.sourceforge.net/;
-license=('LGPL' 'MIT')
-makedepends=('python' 'python2' 'curl' 'git')
-checkdepends=('python-bottle' 'python2-bottle' 'python-nose-show-skipped' 
'python2-nose-show-skipped'
-  'vsftpd' 'python-flaky' 'python2-flaky' 'python-pyflakes' 
'python2-pyflakes')
-source=("git+https://github.com/pycurl/pycurl.git#tag=REL_${pkgver//./_};)
-sha1sums=('SKIP')
-
-prepare() {
-  cp -a $_pypiname{,-py2}
-
-  cd "$srcdir/$_pypiname"
-  find . -name '*.py' -exec sed -i -e "s|#! /usr/bin/env python|#!/usr/bin/env 
python3|" {} +
-sed -i 's/"share", "doc", PACKAGE/"share", "doc", "python-pycurl"/' 
setup.py
-  sed -e "s/nosetests/nosetests3/" -e "s/python/python3/" -i tests/run.sh
-
-  cd "$srcdir/$_pypiname-py2"
-  find . -name '*.py' -exec sed -i -e "s|#! /usr/bin/env python|#!/usr/bin/env 
python2|" {} +
-sed -i 's/"share", "doc", PACKAGE/"share", "doc", "python2-pycurl"/' 
setup.py
-  sed -e "s/nosetests/nosetests2/" -e "s/python/python2/" -i tests/run.sh
-  sed -e "s/pyflakes/pyflakes-python2/" -i Makefile
-}
-
-build() {
-  cd "$srcdir/$_pypiname"
-  make
-  python3 setup.py build --with-ssl
-
-  cd "$srcdir/$_pypiname-py2"
-  make
-  python2 setup.py build --with-ssl
-}
-
-check() {
-  export PYCURL_VSFTPD_PATH=vsftpd
-  # We don't have HTTP2 enabled
-
-  cd "$srcdir/$_pypiname"
-  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" make test || 
warning "Tests failed"
-
-  cd "$srcdir/$_pypiname-py2"
-  PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" make PYTHON=python2 
NOSETESTS=nosetests2 test || warning "Tests failed"
-}
-
-package_python-pycurl() {
-  pkgdesc="A Python 3.x interface to libcurl"
-  depends=('python' 'curl')
-
-  cd $_pypiname
-  python setup.py install -O1 --root="${pkgdir}"
-  install -D -m644 COPYING-MIT 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-pycurl() {
-  pkgdesc="A Python 2.x interface to libcurl"
-  depends=('python2' 'curl')
-
-  cd $_pypiname-py2
-  python2 setup.py install -O1 --root="${pkgdir}"
-  install -D -m644 COPYING-MIT 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python-pycurl/repos/staging-i686/PKGBUILD (from rev 284720, 
python-pycurl/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-12-25 05:37:38 UTC (rev 284721)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Sergej Pupykin 
+# Contributor: Angel 'angvp' Velasquez  
+
+_pypiname=pycurl
+pkgbase=python-$_pypiname
+pkgname=('python-pycurl' 'python2-pycurl')
+pkgver=7.43.0
+pkgrel=2
+arch=('i686' 'x86_64')
+url="http://pycurl.sourceforge.net/;
+license=('LGPL' 'MIT')
+makedepends=('python' 'python2' 'curl' 'git')
+checkdepends=('python-bottle' 'python2-bottle' 'python-nose-show-skipped' 
'python2-nose-show-skipped'
+  'vsftpd' 'python-flaky' 'python2-flaky' 'python-pyflakes' 
'python2-pyflakes')
+source=("git+https://github.com/pycurl/pycurl.git#tag=REL_${pkgver//./_};)
+sha1sums=('SKIP')
+
+prepare() {
+  cp -a $_pypiname{,-py2}
+
+  cd "$srcdir/$_pypiname"
+  find . -name '*.py' -exec sed -i -e "s|#! /usr/bin/env python|#!/usr/bin/env 
python3|" {} +
+sed -i 's/"share", "doc", PACKAGE/"share", "doc", "python-pycurl"/' 
setup.py
+  sed -e "s/nosetests/nosetests3/" -e "s/python/python3/" -i tests/run.sh
+
+  cd "$srcdir/$_pypiname-py2"
+  find . -name '*.py' -exec sed -i -e "s|#! /usr/bin/env python|#!/usr/bin/env 
python2|" {} +
+sed -i 's/"share", "doc", PACKAGE/"share", "doc", 

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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 05:28:57
  Author: felixonmars
Revision: 284719

upgpkg: python-pycurl 7.43.0-2

python 3.6 rebuild

Modified:
  python-pycurl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 05:23:38 UTC (rev 284718)
+++ PKGBUILD2016-12-25 05:28:57 UTC (rev 284719)
@@ -7,7 +7,7 @@
 pkgbase=python-$_pypiname
 pkgname=('python-pycurl' 'python2-pycurl')
 pkgver=7.43.0
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url="http://pycurl.sourceforge.net/;
 license=('LGPL' 'MIT')
@@ -47,7 +47,7 @@
   # We don't have HTTP2 enabled
 
   cd "$srcdir/$_pypiname"
-  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.5:$PYTHONPATH" make test || 
warning "Tests failed"
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" make test || 
warning "Tests failed"
 
   cd "$srcdir/$_pypiname-py2"
   PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" make PYTHON=python2 
NOSETESTS=nosetests2 test || warning "Tests failed"


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 05:29:28
  Author: felixonmars
Revision: 284720

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

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

-+
 staging-i686/PKGBUILD   |   72 ++
 staging-x86_64/PKGBUILD |   72 ++
 2 files changed, 144 insertions(+)

Copied: python-pycurl/repos/staging-i686/PKGBUILD (from rev 284719, 
python-pycurl/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-12-25 05:29:28 UTC (rev 284720)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Sergej Pupykin 
+# Contributor: Angel 'angvp' Velasquez  
+
+_pypiname=pycurl
+pkgbase=python-$_pypiname
+pkgname=('python-pycurl' 'python2-pycurl')
+pkgver=7.43.0
+pkgrel=2
+arch=('i686' 'x86_64')
+url="http://pycurl.sourceforge.net/;
+license=('LGPL' 'MIT')
+makedepends=('python' 'python2' 'curl' 'git')
+checkdepends=('python-bottle' 'python2-bottle' 'python-nose-show-skipped' 
'python2-nose-show-skipped'
+  'vsftpd' 'python-flaky' 'python2-flaky' 'python-pyflakes' 
'python2-pyflakes')
+source=("git+https://github.com/pycurl/pycurl.git#tag=REL_${pkgver//./_};)
+sha1sums=('SKIP')
+
+prepare() {
+  cp -a $_pypiname{,-py2}
+
+  cd "$srcdir/$_pypiname"
+  find . -name '*.py' -exec sed -i -e "s|#! /usr/bin/env python|#!/usr/bin/env 
python3|" {} +
+sed -i 's/"share", "doc", PACKAGE/"share", "doc", "python-pycurl"/' 
setup.py
+  sed -e "s/nosetests/nosetests3/" -e "s/python/python3/" -i tests/run.sh
+
+  cd "$srcdir/$_pypiname-py2"
+  find . -name '*.py' -exec sed -i -e "s|#! /usr/bin/env python|#!/usr/bin/env 
python2|" {} +
+sed -i 's/"share", "doc", PACKAGE/"share", "doc", "python2-pycurl"/' 
setup.py
+  sed -e "s/nosetests/nosetests2/" -e "s/python/python2/" -i tests/run.sh
+  sed -e "s/pyflakes/pyflakes-python2/" -i Makefile
+}
+
+build() {
+  cd "$srcdir/$_pypiname"
+  make
+  python3 setup.py build --with-ssl
+
+  cd "$srcdir/$_pypiname-py2"
+  make
+  python2 setup.py build --with-ssl
+}
+
+check() {
+  export PYCURL_VSFTPD_PATH=vsftpd
+  # We don't have HTTP2 enabled
+
+  cd "$srcdir/$_pypiname"
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" make test || 
warning "Tests failed"
+
+  cd "$srcdir/$_pypiname-py2"
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" make PYTHON=python2 
NOSETESTS=nosetests2 test || warning "Tests failed"
+}
+
+package_python-pycurl() {
+  pkgdesc="A Python 3.x interface to libcurl"
+  depends=('python' 'curl')
+
+  cd $_pypiname
+  python setup.py install -O1 --root="${pkgdir}"
+  install -D -m644 COPYING-MIT 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-pycurl() {
+  pkgdesc="A Python 2.x interface to libcurl"
+  depends=('python2' 'curl')
+
+  cd $_pypiname-py2
+  python2 setup.py install -O1 --root="${pkgdir}"
+  install -D -m644 COPYING-MIT 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: python-pycurl/repos/staging-x86_64/PKGBUILD (from rev 284719, 
python-pycurl/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-12-25 05:29:28 UTC (rev 284720)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Sergej Pupykin 
+# Contributor: Angel 'angvp' Velasquez  
+
+_pypiname=pycurl
+pkgbase=python-$_pypiname
+pkgname=('python-pycurl' 'python2-pycurl')
+pkgver=7.43.0
+pkgrel=2
+arch=('i686' 'x86_64')
+url="http://pycurl.sourceforge.net/;
+license=('LGPL' 'MIT')
+makedepends=('python' 'python2' 'curl' 'git')
+checkdepends=('python-bottle' 'python2-bottle' 'python-nose-show-skipped' 
'python2-nose-show-skipped'
+  'vsftpd' 'python-flaky' 'python2-flaky' 'python-pyflakes' 
'python2-pyflakes')
+source=("git+https://github.com/pycurl/pycurl.git#tag=REL_${pkgver//./_};)
+sha1sums=('SKIP')
+
+prepare() {
+  cp -a $_pypiname{,-py2}
+
+  cd "$srcdir/$_pypiname"
+  find . -name '*.py' -exec sed -i -e "s|#! /usr/bin/env python|#!/usr/bin/env 
python3|" {} +
+sed -i 's/"share", "doc", PACKAGE/"share", "doc", "python-pycurl"/' 
setup.py
+  sed -e "s/nosetests/nosetests3/" -e "s/python/python3/" -i tests/run.sh
+
+  cd "$srcdir/$_pypiname-py2"
+  find . -name '*.py' -exec sed -i -e "s|#! /usr/bin/env python|#!/usr/bin/env 
python2|" {} +
+sed -i 's/"share", "doc", PACKAGE/"share", "doc", 

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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 05:23:38
  Author: felixonmars
Revision: 284718

archrelease: copy trunk to staging-any

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

--+
 PKGBUILD |  164 ++---
 1 file changed, 82 insertions(+), 82 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-25 05:23:16 UTC (rev 284717)
+++ PKGBUILD2016-12-25 05:23:38 UTC (rev 284718)
@@ -1,82 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez 
-# Maintainer: Felix Yan 
-
-pkgbase=python-setuptools
-pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=32.2.0
-pkgrel=2
-epoch=1
-pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
-arch=('any')
-license=('PSF')
-url="http://pypi.python.org/pypi/setuptools;
-makedepends=('python-packaging' 'python2-packaging' 'python-mock' 
'python2-mock' 'python-appdirs'
- 'python2-appdirs' 'git')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-flake8'
-  'python2-pytest-flake8' 'python-pip' 'git')
-source=("git+https://github.com/pypa/setuptools.git#tag=v$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  # Remove vendored packages
-  rm -rv setuptools/pkg_resources/_vendor
-
-  # Remove post-release tag since we are using stable tags
-  sed -e '/tag_build = .post/d' \
-  -e '/tag_date = 1/d' \
-  -i setuptools/setup.cfg
-
-  cp -a setuptools{,-py2}
-
-  cd "$srcdir"/setuptools
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
-
-  cd "$srcdir"/setuptools-py2
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" 
setuptools/command/easy_install.py
-
-  export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
-}
-
-build() {
-  cd "$srcdir"/setuptools
-  python bootstrap.py
-  python setup.py build
-
-  cd "$srcdir"/setuptools-py2
-  python2 bootstrap.py
-  python2 setup.py build
-}
-
-check() {
-  # Workaround UTF-8 tests by setting LC_CTYPE
-  export LC_CTYPE=en_US.UTF-8
-
-  # https://github.com/pypa/setuptools/pull/810
-  export PYTHONDONTWRITEBYTECODE=1
-
-  cd "$srcdir"/setuptools
-  python setup.py test
-
-  cd "$srcdir"/setuptools-py2
-  python2 setup.py test
-}
- 
-package_python-setuptools() {
-  depends=('python-packaging' 'python-appdirs')
-  provides=('python-distribute')
-  replaces=('python-distribute')
-
-  cd "$srcdir"/setuptools
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-}
- 
-package_python2-setuptools() {
-  depends=('python2-packaging' 'python2-appdirs')
-  provides=('python2-distribute')
-  replaces=('python2-distribute')
-
-  cd "$srcdir"/setuptools-py2
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-  rm "$pkgdir"/usr/bin/easy_install
-}

Copied: python-setuptools/repos/staging-any/PKGBUILD (from rev 284717, 
python-setuptools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-25 05:23:38 UTC (rev 284718)
@@ -0,0 +1,82 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=32.3.0
+pkgrel=1
+epoch=1
+pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
+arch=('any')
+license=('PSF')
+url="http://pypi.python.org/pypi/setuptools;
+makedepends=('python-packaging' 'python2-packaging' 'python-mock' 
'python2-mock' 'python-appdirs'
+ 'python2-appdirs' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-flake8'
+  'python2-pytest-flake8' 'python-pip' 'git')
+source=("git+https://github.com/pypa/setuptools.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  # Remove vendored packages
+  rm -rv setuptools/pkg_resources/_vendor
+
+  # Remove post-release tag since we are using stable tags
+  sed -e '/tag_build = .post/d' \
+  -e '/tag_date = 1/d' \
+  -i setuptools/setup.cfg
+
+  cp -a setuptools{,-py2}
+
+  cd "$srcdir"/setuptools
+  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
+
+  cd "$srcdir"/setuptools-py2
+  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" 
setuptools/command/easy_install.py
+
+  export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
+}
+
+build() {
+  cd "$srcdir"/setuptools
+  python bootstrap.py
+  python setup.py build
+
+  cd "$srcdir"/setuptools-py2
+  python2 bootstrap.py
+  python2 setup.py build
+}
+
+check() {
+  # Workaround UTF-8 tests by setting LC_CTYPE
+  export LC_CTYPE=en_US.UTF-8
+
+  # 

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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 05:23:16
  Author: felixonmars
Revision: 284717

upgpkg: python-setuptools 1:32.3.0-1

python 3.6 rebuild

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 04:14:29 UTC (rev 284716)
+++ PKGBUILD2016-12-25 05:23:16 UTC (rev 284717)
@@ -4,8 +4,8 @@
 
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=32.2.0
-pkgrel=2
+pkgver=32.3.0
+pkgrel=1
 epoch=1
 pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
 arch=('any')


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 04:56:55
  Author: felixonmars
Revision: 201830

archrelease: copy trunk to community-staging-any

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

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

Copied: python-pypandoc/repos/community-staging-any/PKGBUILD (from rev 201829, 
python-pypandoc/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 04:56:55 UTC (rev 201830)
@@ -0,0 +1,54 @@
+# $Id: PKGBUILD 141139 2015-09-20 03:14:59Z fyan $
+# Maintainer: Felix Yan 
+
+pkgbase=python-pypandoc
+pkgname=('python-pypandoc' 'python2-pypandoc')
+pkgver=1.3.3
+pkgrel=2
+pkgdesc="Thin wrapper for pandoc"
+arch=('any')
+license=('MIT')
+url="https://github.com/bebraw/pypandoc;
+makedepends=('python-setuptools' 'python2-setuptools' 'pandoc' 'git')
+checkdepends=('texlive-core' 'pandoc-citeproc')
+source=("git+https://github.com/bebraw/pypandoc.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  # We don't really need pip and wheel at runtime
+  sed -i "s/install_requires = .*/install_requires = ['setuptools'],/" 
pypandoc/setup.py
+
+  cp -a pypandoc{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pypandoc
+  python setup.py build
+
+  cd "$srcdir"/pypandoc-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/pypandoc
+  LC_CTYPE=en_US.UTF-8 python setup.py test
+
+  cd "$srcdir"/pypandoc-py2
+  python2 setup.py test
+}
+
+package_python-pypandoc() {
+  depends=('python-setuptools' 'pandoc')
+
+  cd pypandoc
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pypandoc() {
+  depends=('python2-setuptools' 'pandoc')
+
+  cd pypandoc-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 04:56:37
  Author: felixonmars
Revision: 201829

upgpkg: python-pypandoc 1.3.3-2

python 3.6 rebuild

Modified:
  python-pypandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 03:54:06 UTC (rev 201828)
+++ PKGBUILD2016-12-25 04:56:37 UTC (rev 201829)
@@ -4,7 +4,7 @@
 pkgbase=python-pypandoc
 pkgname=('python-pypandoc' 'python2-pypandoc')
 pkgver=1.3.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Thin wrapper for pandoc"
 arch=('any')
 license=('MIT')


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 04:14:29
  Author: felixonmars
Revision: 284716

archrelease: copy trunk to staging-any

Added:
  python-attrs/repos/staging-any/
  python-attrs/repos/staging-any/PKGBUILD
(from rev 284715, python-attrs/trunk/PKGBUILD)

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

Copied: python-attrs/repos/staging-any/PKGBUILD (from rev 284715, 
python-attrs/trunk/PKGBUILD)
===
--- staging-any/PKGBUILD(rev 0)
+++ staging-any/PKGBUILD2016-12-25 04:14:29 UTC (rev 284716)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-attrs
+pkgname=('python-attrs' 'python2-attrs')
+pkgver=16.3.0
+pkgrel=2
+pkgdesc="Attributes without boilerplate."
+arch=('any')
+license=('MIT')
+url="https://attrs.readthedocs.org/;
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-zope-interface'
+  'python2-zope-interface' 'python-hypothesis' 
'python2-hypothesis')
+source=("https://pypi.io/packages/source/a/attrs/attrs-$pkgver.tar.gz;)
+md5sums=('4ec003c49360853cf935113d1ae56151')
+
+prepare() {
+  cp -a attrs-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/attrs-$pkgver
+  python setup.py build
+ 
+  cd "$srcdir"/attrs-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/attrs-$pkgver
+  python setup.py ptr
+
+  cd "$srcdir"/attrs-$pkgver-py2
+  python2 setup.py ptr
+}
+ 
+package_python-attrs() {
+  depends=('python')
+ 
+  cd attrs-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+ 
+package_python2-attrs() {
+  depends=('python2')
+ 
+  cd attrs-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 04:14:10
  Author: felixonmars
Revision: 284715

Python 3.6 rebuild

Modified:
  python-attrs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 02:36:40 UTC (rev 284714)
+++ PKGBUILD2016-12-25 04:14:10 UTC (rev 284715)
@@ -4,7 +4,7 @@
 pkgbase=python-attrs
 pkgname=('python-attrs' 'python2-attrs')
 pkgver=16.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Attributes without boilerplate."
 arch=('any')
 license=('MIT')


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 03:54:06
  Author: felixonmars
Revision: 201828

archrelease: copy trunk to community-staging-any

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

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

Copied: python-hypothesis/repos/community-staging-any/PKGBUILD (from rev 
201827, python-hypothesis/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 03:54:06 UTC (rev 201828)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=3.6.1
+_commit=7ed4892866960154d5dffc40f32340e385434128
+pkgrel=2
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-enum34' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
+  'python2-pytz' 'python-numpy' 'python2-numpy' 
'python-fake-factory'
+  'python2-fake-factory' 'python-flaky' 'python2-flaky' 
'python-pytest-benchmark'
+  'python2-pytest-benchmark' 'python-django' 'python2-django')
+source=("git+https://github.com/DRMacIver/hypothesis.git#commit=$_commit;)
+sha512sums=('SKIP')
+
+prepare() {
+  sed -i 's/@pytest.mark.hookwrapper/@pytest.hookimpl(hookwrapper=True)/' 
hypothesis/src/hypothesis/extra/pytestplugin.py
+
+  cp -a hypothesis{,-py2}
+
+  rm -r hypothesis/tests/py2
+  rm -r hypothesis-py2/tests/py3
+}
+
+build() {
+  cd "$srcdir"/hypothesis
+  python setup.py build
+
+  cd "$srcdir"/hypothesis-py2
+  python2 setup.py build
+}
+
+check() {
+  export LC_CTYPE=en_US.UTF-8
+
+  cd "$srcdir"/hypothesis
+  mv tests/django ../
+  python setup.py ptr
+  mv ../django tests/
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test 
tests.django
+
+  cd "$srcdir"/hypothesis-py2
+  mv tests/django ../
+  python2 setup.py ptr
+  mv ../django tests/
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m tests.django.manage test 
tests.django
+}
+
+package_python-hypothesis() {
+  depends=('python')
+  optdepends=('python-pytz: for datetime and django module'
+  'python-fake-factory: for fakefactory and django module'
+  'python-django: for django module'
+  'python-numpy: for numpy module'
+  'python-pytest: for pytest module')
+
+  cd hypothesis
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-hypothesis() {
+  depends=('python2-enum34')
+  optdepends=('python2-pytz: for datetime and django module'
+  'python2-fake-factory: for fakefactory and django module'
+  'python2-django: for django module'
+  'python2-numpy: for numpy module'
+  'python2-pytest: for pytest module')
+
+  cd hypothesis-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 03:53:47
  Author: felixonmars
Revision: 201827

Python 3.6 rebuild

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 03:39:55 UTC (rev 201826)
+++ PKGBUILD2016-12-25 03:53:47 UTC (rev 201827)
@@ -5,7 +5,7 @@
 pkgname=('python-hypothesis' 'python2-hypothesis')
 pkgver=3.6.1
 _commit=7ed4892866960154d5dffc40f32340e385434128
-pkgrel=1
+pkgrel=2
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
 license=('MPL')


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 03:39:55
  Author: felixonmars
Revision: 201826

archrelease: copy trunk to community-staging-any

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

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

Copied: python-wsgiproxy2/repos/community-staging-any/PKGBUILD (from rev 
201825, python-wsgiproxy2/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 03:39:55 UTC (rev 201826)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-wsgiproxy2
+pkgname=('python-wsgiproxy2' 'python2-wsgiproxy2')
+pkgver=0.4.2
+pkgrel=2
+pkgdesc="A WSGI Proxy with various http client backends"
+arch=('any')
+license=('MIT')
+url="https://github.com/gawel/WSGIProxy2/;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-webob' 
'python2-webob'
+ 'python-six' 'python2-six' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-requests' 'python2-requests'
+  'python-webtest' 'python2-webtest' 'python-waitress' 
'python2-waitress')
+source=("git+https://github.com/gawel/WSGIProxy2.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a WSGIProxy2{,-py2}
+}
+
+build() {
+  cd "$srcdir/WSGIProxy2"
+  python setup.py build
+
+  cd "$srcdir/WSGIProxy2-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/WSGIProxy2"
+  nosetests3
+
+  cd "$srcdir/WSGIProxy2-py2"
+  # We don't provide restkit (looks obsolete to me)
+  nosetests2 || warning "Tests failed"
+}
+
+package_python-wsgiproxy2() {
+  depends=('python-webob' 'python-six')
+
+  cd WSGIProxy2
+  python setup.py install --root="${pkgdir}" --optimize=1
+}
+
+package_python2-wsgiproxy2() {
+  depends=('python2-webob' 'python2-six')
+
+  cd WSGIProxy2-py2
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+}


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 03:39:36
  Author: felixonmars
Revision: 201825

upgpkg: python-wsgiproxy2 0.4.2-2

python 3.6 rebuild

Modified:
  python-wsgiproxy2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 03:37:16 UTC (rev 201824)
+++ PKGBUILD2016-12-25 03:39:36 UTC (rev 201825)
@@ -4,7 +4,7 @@
 pkgbase=python-wsgiproxy2
 pkgname=('python-wsgiproxy2' 'python2-wsgiproxy2')
 pkgver=0.4.2
-pkgrel=1
+pkgrel=2
 pkgdesc="A WSGI Proxy with various http client backends"
 arch=('any')
 license=('MIT')


[arch-commits] Commit in python-jsonpatch/trunk (PKGBUILD python3.6.patch)

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 03:36:53
  Author: felixonmars
Revision: 201823

upgpkg: python-jsonpatch 1.14-2

python 3.6 rebuild

Added:
  python-jsonpatch/trunk/python3.6.patch
Modified:
  python-jsonpatch/trunk/PKGBUILD

-+
 PKGBUILD|   10 +++---
 python3.6.patch |   29 +
 2 files changed, 36 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 03:30:56 UTC (rev 201822)
+++ PKGBUILD2016-12-25 03:36:53 UTC (rev 201823)
@@ -7,7 +7,7 @@
 _pkgname=jsonpatch
 pkgname=(python-jsonpatch python2-jsonpatch)
 pkgver=1.14
-pkgrel=1
+pkgrel=2
 pkgdesc="An implementation of the JSON Patch format"
 arch=("any")
 url="https://github.com/stefankoegl/python-json-patch;
@@ -15,10 +15,14 @@
 makedepends=("python-setuptools" "python2-setuptools" "python-jsonpointer" 
"python2-jsonpointer"
  "python-pypandoc" "python2-pypandoc" "git")
 checkdepends=('python-coverage' 'python2-coverage')
-source=("git+https://github.com/stefankoegl/python-json-patch.git#tag=v$pkgver;)
-sha512sums=('SKIP')
+source=("git+https://github.com/stefankoegl/python-json-patch.git#tag=v$pkgver;
+python3.6.patch)
+sha512sums=('SKIP'
+
'e6f536bf89002cbdce63828fbc9f37690cf23fddad3b300258766b18bd735fc9ac22f6cd3f8ecf59e79206721ca31b2867ab1518efb578d86f485a2d63b07fcc')
 
 prepare(){
+  (cd python-json-patch; patch -p1 -i ../python3.6.patch)
+
   cp -a python-json-patch{,-py2}
   find python-json-patch-py2 -name \*.py -exec sed -i '1s/python$/&2/' {} +
 }

Added: python3.6.patch
===
--- python3.6.patch (rev 0)
+++ python3.6.patch 2016-12-25 03:36:53 UTC (rev 201823)
@@ -0,0 +1,29 @@
+From d6e9a0047bad780b53151f572ea257f1cb6ebe41 Mon Sep 17 00:00:00 2001
+From: Victor Stinner 
+Date: Wed, 29 Jun 2016 11:13:00 +0200
+Subject: [PATCH] Use inspect.signature() on Python 3
+
+The inspect.getargspec() function has been deprecated in Python 3:
+https://docs.python.org/3/library/inspect.html#inspect.getargspec
+---
+ jsonpatch.py | 7 +--
+ 1 file changed, 5 insertions(+), 2 deletions(-)
+
+diff --git a/jsonpatch.py b/jsonpatch.py
+index 32508e2..3c83f61 100644
+--- a/jsonpatch.py
 b/jsonpatch.py
+@@ -105,8 +105,11 @@ def get_loadjson():
+ function with object_pairs_hook set to multidict for Python versions that
+ support the parameter. """
+ 
+-argspec = inspect.getargspec(json.load)
+-if 'object_pairs_hook' not in argspec.args:
++if sys.version_info >= (3, 3):
++args = inspect.signature(json.load).parameters
++else:
++args = inspect.getargspec(json.load).args
++if 'object_pairs_hook' not in args:
+ return json.load
+ 
+ return functools.partial(json.load, object_pairs_hook=multidict)


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 03:37:16
  Author: felixonmars
Revision: 201824

archrelease: copy trunk to community-staging-any

Added:
  python-jsonpatch/repos/community-staging-any/
  python-jsonpatch/repos/community-staging-any/PKGBUILD
(from rev 201823, python-jsonpatch/trunk/PKGBUILD)
  python-jsonpatch/repos/community-staging-any/python3.6.patch
(from rev 201823, python-jsonpatch/trunk/python3.6.patch)

-+
 PKGBUILD|   64 ++
 python3.6.patch |   29 
 2 files changed, 93 insertions(+)

Copied: python-jsonpatch/repos/community-staging-any/PKGBUILD (from rev 201823, 
python-jsonpatch/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 03:37:16 UTC (rev 201824)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+# Contributor: Limao Luo 
+
+pkgbase=python-jsonpatch
+_pkgname=jsonpatch
+pkgname=(python-jsonpatch python2-jsonpatch)
+pkgver=1.14
+pkgrel=2
+pkgdesc="An implementation of the JSON Patch format"
+arch=("any")
+url="https://github.com/stefankoegl/python-json-patch;
+license=("BSD")
+makedepends=("python-setuptools" "python2-setuptools" "python-jsonpointer" 
"python2-jsonpointer"
+ "python-pypandoc" "python2-pypandoc" "git")
+checkdepends=('python-coverage' 'python2-coverage')
+source=("git+https://github.com/stefankoegl/python-json-patch.git#tag=v$pkgver;
+python3.6.patch)
+sha512sums=('SKIP'
+
'e6f536bf89002cbdce63828fbc9f37690cf23fddad3b300258766b18bd735fc9ac22f6cd3f8ecf59e79206721ca31b2867ab1518efb578d86f485a2d63b07fcc')
+
+prepare(){
+  (cd python-json-patch; patch -p1 -i ../python3.6.patch)
+
+  cp -a python-json-patch{,-py2}
+  find python-json-patch-py2 -name \*.py -exec sed -i '1s/python$/&2/' {} +
+}
+
+build() {
+  cd "$srcdir"/python-json-patch
+  python setup.py build
+
+  cd "$srcdir"/python-json-patch-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-json-patch
+  coverage run --source=jsonpatch tests.py
+
+  cd "$srcdir"/python-json-patch-py2
+  coverage2 run --source=jsonpatch tests.py
+}
+
+package_python-jsonpatch() {
+  depends=("python-jsonpointer")
+
+  cd "$srcdir"/python-json-patch
+
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+  python setup.py install --prefix=/usr --root="$pkgdir"
+}
+package_python2-jsonpatch() {
+  depends=("python2-jsonpointer")
+
+  cd "$srcdir"/python-json-patch-py2
+
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+  python2 setup.py install --prefix=/usr --root="$pkgdir"
+  for _bin in "$pkgdir"/usr/bin/*; do
+mv "$_bin"{,2}
+  done
+}

Copied: python-jsonpatch/repos/community-staging-any/python3.6.patch (from rev 
201823, python-jsonpatch/trunk/python3.6.patch)
===
--- community-staging-any/python3.6.patch   (rev 0)
+++ community-staging-any/python3.6.patch   2016-12-25 03:37:16 UTC (rev 
201824)
@@ -0,0 +1,29 @@
+From d6e9a0047bad780b53151f572ea257f1cb6ebe41 Mon Sep 17 00:00:00 2001
+From: Victor Stinner 
+Date: Wed, 29 Jun 2016 11:13:00 +0200
+Subject: [PATCH] Use inspect.signature() on Python 3
+
+The inspect.getargspec() function has been deprecated in Python 3:
+https://docs.python.org/3/library/inspect.html#inspect.getargspec
+---
+ jsonpatch.py | 7 +--
+ 1 file changed, 5 insertions(+), 2 deletions(-)
+
+diff --git a/jsonpatch.py b/jsonpatch.py
+index 32508e2..3c83f61 100644
+--- a/jsonpatch.py
 b/jsonpatch.py
+@@ -105,8 +105,11 @@ def get_loadjson():
+ function with object_pairs_hook set to multidict for Python versions that
+ support the parameter. """
+ 
+-argspec = inspect.getargspec(json.load)
+-if 'object_pairs_hook' not in argspec.args:
++if sys.version_info >= (3, 3):
++args = inspect.signature(json.load).parameters
++else:
++args = inspect.getargspec(json.load).args
++if 'object_pairs_hook' not in args:
+ return json.load
+ 
+ return functools.partial(json.load, object_pairs_hook=multidict)


[arch-commits] Commit in python-keyrings-alt/repos/community-staging-any (2 files)

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 03:30:56
  Author: felixonmars
Revision: 201822

archrelease: copy trunk to community-staging-any

Added:
  python-keyrings-alt/repos/community-staging-any/PKGBUILD
(from rev 201821, python-keyrings-alt/trunk/PKGBUILD)
Deleted:
  python-keyrings-alt/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-25 03:30:33 UTC (rev 201821)
+++ PKGBUILD2016-12-25 03:30:56 UTC (rev 201822)
@@ -1,71 +0,0 @@
-# $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-keyrings-alt
-pkgname=('python-keyrings-alt' 'python2-keyrings-alt')
-epoch=1
-pkgver=1.3
-pkgrel=1
-pkgdesc="Alternate keyring implementations"
-arch=('any')
-url="http://pypi.python.org/pypi/keyrings.alt;
-license=('MIT')
-source=("git+https://github.com/jaraco/keyrings.alt.git#tag=$pkgver;)
-makedepends=('python-setuptools_scm' 'python2-setuptools_scm' 'python-keyring' 
'python2-keyring' 'git')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-mock' 
'python2-mock'
-  'python-fs' 'python2-fs' 'python-crypto' 'python2-crypto' 
'libgnome-keyring' 
-  'python-gobject' 'python2-gobject' 'python2-gdata')
-md5sums=('SKIP')
-
-prepare() {
-  # Remove it from test_requirements
-  sed -i '/python-keyczar/d' keyrings.alt/setup.py
-
-  cp -a keyrings.alt{,-py2}
-}
-
-build() {
-  cd "$srcdir"/keyrings.alt
-  python setup.py build
-
-  cd "$srcdir"/keyrings.alt-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/keyrings.alt
-  python setup.py ptr
-
-  cd "$srcdir"/keyrings.alt-py2
-  python2 setup.py ptr
-}
-
-package_python-keyrings-alt() {
-  depends=('python-keyring')
-  optdepends=('libgnome-keyring: GNOME Integration'
-  'python-gobject: GNOME Integration'
-  'python-fs'
-  'python-crypto: Encrypted file storage')
-
-  cd "$srcdir"/keyrings.alt
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-keyrings-alt() {
-  depends=('python2-keyring')
-  optdepends=('libgnome-keyring: GNOME Integration'
-  'python2-gobject: GNOME Integration'
-  'python2-fs'
-  'python2-gdata: Google Docs Integration'
-  'python2-crypto: Encrypted file storage')
-
-  cd "$srcdir"/keyrings.alt-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-keyrings-alt/repos/community-staging-any/PKGBUILD (from rev 
201821, python-keyrings-alt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-25 03:30:56 UTC (rev 201822)
@@ -0,0 +1,71 @@
+# $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-keyrings-alt
+pkgname=('python-keyrings-alt' 'python2-keyrings-alt')
+epoch=1
+pkgver=2.0
+pkgrel=1
+pkgdesc="Alternate keyring implementations"
+arch=('any')
+url="http://pypi.python.org/pypi/keyrings.alt;
+license=('MIT')
+source=("git+https://github.com/jaraco/keyrings.alt.git#tag=$pkgver;)
+makedepends=('python-setuptools_scm' 'python2-setuptools_scm' 'python-keyring' 
'python2-keyring' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-mock' 
'python2-mock'
+  'python-fs' 'python2-fs' 'python-crypto' 'python2-crypto' 
'libgnome-keyring' 
+  'python-gobject' 'python2-gobject' 'python2-gdata')
+md5sums=('SKIP')
+
+prepare() {
+  # Remove it from test_requirements
+  sed -i '/python-keyczar/d' keyrings.alt/setup.py
+
+  cp -a keyrings.alt{,-py2}
+}
+
+build() {
+  cd "$srcdir"/keyrings.alt
+  python setup.py build
+
+  cd "$srcdir"/keyrings.alt-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/keyrings.alt
+  python setup.py ptr
+
+  cd "$srcdir"/keyrings.alt-py2
+  python2 setup.py ptr
+}
+
+package_python-keyrings-alt() {
+  depends=('python-keyring')
+  optdepends=('libgnome-keyring: GNOME Integration'
+  'python-gobject: GNOME Integration'
+  'python-fs'
+  'python-crypto: Encrypted file storage')
+
+  cd "$srcdir"/keyrings.alt
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-keyrings-alt() {
+  depends=('python2-keyring')
+  optdepends=('libgnome-keyring: GNOME Integration'
+ 

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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 03:30:33
  Author: felixonmars
Revision: 201821

upgpkg: python-keyrings-alt 1:2.0-1

Modified:
  python-keyrings-alt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 03:24:36 UTC (rev 201820)
+++ PKGBUILD2016-12-25 03:30:33 UTC (rev 201821)
@@ -9,7 +9,7 @@
 pkgbase=python-keyrings-alt
 pkgname=('python-keyrings-alt' 'python2-keyrings-alt')
 epoch=1
-pkgver=1.3
+pkgver=2.0
 pkgrel=1
 pkgdesc="Alternate keyring implementations"
 arch=('any')


[arch-commits] Commit in python-dogpile.cache/repos (2 files)

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 03:24:36
  Author: felixonmars
Revision: 201820

archrelease: copy trunk to community-staging-any

Added:
  python-dogpile.cache/repos/community-staging-any/
  python-dogpile.cache/repos/community-staging-any/PKGBUILD
(from rev 201819, python-dogpile.cache/trunk/PKGBUILD)

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

Copied: python-dogpile.cache/repos/community-staging-any/PKGBUILD (from rev 
201819, python-dogpile.cache/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 03:24:36 UTC (rev 201820)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-dogpile.cache
+pkgname=(python-dogpile.cache python2-dogpile.cache)
+pkgver=0.6.2
+pkgrel=2
+pkgdesc="A caching front-end based on the Dogpile lock"
+arch=('any')
+url="http://pypi.python.org/pypi/dogpile.cache;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('memcached' 'redis' 'python-mako' 'python2-mako' 'python-redis' 
'python2-redis'
+  'python2-memcached' 'python-pytest-runner' 
'python2-pytest-runner' 'python-mock'
+  'python2-mock' 'python-pytest-cov' 'python2-pytest-cov' 
'python-pylibmc'
+  'python2-pylibmc' 'python-pifpaf' 'python2-pifpaf' 
'python-binary-memcached'
+  'python2-binary-memcached')
+source=("https://pypi.io/packages/source/d/dogpile.cache/dogpile.cache-$pkgver.tar.gz;)
+md5sums=('ab3771eb2155b9658c9e33fa1b827708')
+
+prepare() {
+  cp -a "dogpile.cache-$pkgver"{,-py2}
+}
+
+build() {
+  cd "$srcdir"/dogpile.cache-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/dogpile.cache-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/dogpile.cache-$pkgver
+  python -m pytest -k 'not test_memcached_backend and not test_redis_backend'
+  pifpaf --env-prefix DOGPILE run memcached --port 11234 -- python -m pytest 
tests/cache/test_memcached_backend.py
+  pifpaf --env-prefix DOGPILE run redis --port 11234 -- python -m pytest 
tests/cache/test_redis_backend.py
+
+  cd "$srcdir"/dogpile.cache-$pkgver-py2
+  python2 -m pytest -k 'not test_memcached_backend and not test_redis_backend'
+  pifpaf2 --env-prefix DOGPILE run memcached --port 11234 -- python2 -m pytest 
tests/cache/test_memcached_backend.py
+  pifpaf2 --env-prefix DOGPILE run redis --port 11234 -- python2 -m pytest 
tests/cache/test_redis_backend.py
+}
+
+package_python-dogpile.cache() {
+  depends=('python-setuptools')
+
+  cd dogpile.cache-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-dogpile.cache() {
+  depends=('python2-setuptools')
+
+  cd dogpile.cache-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in python-dogpile.cache/trunk (PKGBUILD)

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 03:24:06
  Author: felixonmars
Revision: 201819

upgpkg: python-dogpile.cache 0.6.2-2

python 3.6 rebuild

Modified:
  python-dogpile.cache/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 03:15:35 UTC (rev 201818)
+++ PKGBUILD2016-12-25 03:24:06 UTC (rev 201819)
@@ -4,7 +4,7 @@
 pkgbase=python-dogpile.cache
 pkgname=(python-dogpile.cache python2-dogpile.cache)
 pkgver=0.6.2
-pkgrel=1
+pkgrel=2
 pkgdesc="A caching front-end based on the Dogpile lock"
 arch=('any')
 url="http://pypi.python.org/pypi/dogpile.cache;


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 03:15:35
  Author: bpiotrowski
Revision: 201818

archrelease: copy trunk to community-staging-any

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

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

Copied: python-wheel/repos/community-staging-any/PKGBUILD (from rev 201817, 
python-wheel/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 03:15:35 UTC (rev 201818)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Lance Chen 
+
+_pypiname=wheel
+pkgbase=python-wheel
+pkgname=('python-wheel' 'python2-wheel')
+pkgver=0.29.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' 'python-keyrings-alt' 
'python2-keyrings-alt')
+source=("https://pypi.python.org/packages/source/w/wheel/$_pypiname-$pkgver.tar.gz;)
+md5sums=('555a67e4507cedee23a0deb9651e452f')
+
+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.6/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 python-wheel/trunk (PKGBUILD)

2016-12-24 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 03:15:27
  Author: bpiotrowski
Revision: 201817

Python 3.6 rebuild

Modified:
  python-wheel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 03:14:07 UTC (rev 201816)
+++ PKGBUILD2016-12-25 03:15:27 UTC (rev 201817)
@@ -6,7 +6,7 @@
 pkgbase=python-wheel
 pkgname=('python-wheel' 'python2-wheel')
 pkgver=0.29.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.5/site-packages:$PYTHONPATH" 
py.test wheel
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/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 python-keyrings-alt/trunk (PKGBUILD)

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 03:13:32
  Author: felixonmars
Revision: 201815

upgpkg: python-keyrings-alt 1:1.3-1

python 3.6 rebuild

Modified:
  python-keyrings-alt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 03:04:38 UTC (rev 201814)
+++ PKGBUILD2016-12-25 03:13:32 UTC (rev 201815)
@@ -9,7 +9,7 @@
 pkgbase=python-keyrings-alt
 pkgname=('python-keyrings-alt' 'python2-keyrings-alt')
 epoch=1
-pkgver=1.1.1
+pkgver=1.3
 pkgrel=1
 pkgdesc="Alternate keyring implementations"
 arch=('any')


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 03:14:07
  Author: felixonmars
Revision: 201816

archrelease: copy trunk to community-staging-any

Added:
  python-keyrings-alt/repos/community-staging-any/
  python-keyrings-alt/repos/community-staging-any/PKGBUILD
(from rev 201815, python-keyrings-alt/trunk/PKGBUILD)

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

Copied: python-keyrings-alt/repos/community-staging-any/PKGBUILD (from rev 
201815, python-keyrings-alt/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 03:14:07 UTC (rev 201816)
@@ -0,0 +1,71 @@
+# $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-keyrings-alt
+pkgname=('python-keyrings-alt' 'python2-keyrings-alt')
+epoch=1
+pkgver=1.3
+pkgrel=1
+pkgdesc="Alternate keyring implementations"
+arch=('any')
+url="http://pypi.python.org/pypi/keyrings.alt;
+license=('MIT')
+source=("git+https://github.com/jaraco/keyrings.alt.git#tag=$pkgver;)
+makedepends=('python-setuptools_scm' 'python2-setuptools_scm' 'python-keyring' 
'python2-keyring' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-mock' 
'python2-mock'
+  'python-fs' 'python2-fs' 'python-crypto' 'python2-crypto' 
'libgnome-keyring' 
+  'python-gobject' 'python2-gobject' 'python2-gdata')
+md5sums=('SKIP')
+
+prepare() {
+  # Remove it from test_requirements
+  sed -i '/python-keyczar/d' keyrings.alt/setup.py
+
+  cp -a keyrings.alt{,-py2}
+}
+
+build() {
+  cd "$srcdir"/keyrings.alt
+  python setup.py build
+
+  cd "$srcdir"/keyrings.alt-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/keyrings.alt
+  python setup.py ptr
+
+  cd "$srcdir"/keyrings.alt-py2
+  python2 setup.py ptr
+}
+
+package_python-keyrings-alt() {
+  depends=('python-keyring')
+  optdepends=('libgnome-keyring: GNOME Integration'
+  'python-gobject: GNOME Integration'
+  'python-fs'
+  'python-crypto: Encrypted file storage')
+
+  cd "$srcdir"/keyrings.alt
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-keyrings-alt() {
+  depends=('python2-keyring')
+  optdepends=('libgnome-keyring: GNOME Integration'
+  'python2-gobject: GNOME Integration'
+  'python2-fs'
+  'python2-gdata: Google Docs Integration'
+  'python2-crypto: Encrypted file storage')
+
+  cd "$srcdir"/keyrings.alt-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 03:04:38
  Author: felixonmars
Revision: 201814

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

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

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

Copied: python-tinycss/repos/community-staging-i686/PKGBUILD (from rev 201813, 
python-tinycss/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-12-25 03:04:38 UTC (rev 201814)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Simon Sapin 
+# Contributor: Kyle Keen 
+
+pkgbase=python-tinycss
+pkgname=(python-tinycss python2-tinycss)
+pkgver=0.4
+pkgrel=2
+pkgdesc="A complete yet simple CSS parser for Python"
+url="https://pypi.python.org/pypi/tinycss;
+license=('BSD')
+arch=('i686' 'x86_64')
+makedepends=('python-setuptools' 'python2-setuptools' 'cython' 'cython2')
+checkdepends=('python-pytest-flake8' 'python2-pytest-flake8' 
'python-pytest-cov'
+  'python2-pytest-cov' 'python-pytest-isort' 
'python2-pytest-isort')
+source=("https://pypi.io/packages/source/t/tinycss/tinycss-$pkgver.tar.gz;)
+md5sums=('36b7b0e48081ebff5e6d7bbd40ad21da')
+
+prepare() {
+  cp -a tinycss-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/tinycss-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/tinycss-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/tinycss-$pkgver
+  py.test build
+
+  cd "$srcdir"/tinycss-$pkgver-py2
+  py.test2 build
+}
+
+package_python-tinycss() {
+  depends=('python')
+
+  cd tinycss-$pkgver
+  python3 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-tinycss() {
+  depends=('python2')
+
+  cd tinycss-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: python-tinycss/repos/community-staging-x86_64/PKGBUILD (from rev 
201813, python-tinycss/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-12-25 03:04:38 UTC (rev 201814)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Simon Sapin 
+# Contributor: Kyle Keen 
+
+pkgbase=python-tinycss
+pkgname=(python-tinycss python2-tinycss)
+pkgver=0.4
+pkgrel=2
+pkgdesc="A complete yet simple CSS parser for Python"
+url="https://pypi.python.org/pypi/tinycss;
+license=('BSD')
+arch=('i686' 'x86_64')
+makedepends=('python-setuptools' 'python2-setuptools' 'cython' 'cython2')
+checkdepends=('python-pytest-flake8' 'python2-pytest-flake8' 
'python-pytest-cov'
+  'python2-pytest-cov' 'python-pytest-isort' 
'python2-pytest-isort')
+source=("https://pypi.io/packages/source/t/tinycss/tinycss-$pkgver.tar.gz;)
+md5sums=('36b7b0e48081ebff5e6d7bbd40ad21da')
+
+prepare() {
+  cp -a tinycss-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/tinycss-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/tinycss-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/tinycss-$pkgver
+  py.test build
+
+  cd "$srcdir"/tinycss-$pkgver-py2
+  py.test2 build
+}
+
+package_python-tinycss() {
+  depends=('python')
+
+  cd tinycss-$pkgver
+  python3 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-tinycss() {
+  depends=('python2')
+
+  cd tinycss-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 03:04:09
  Author: felixonmars
Revision: 201813

upgpkg: python-tinycss 0.4-2

python 3.6 rebuild

Modified:
  python-tinycss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 03:03:50 UTC (rev 201812)
+++ PKGBUILD2016-12-25 03:04:09 UTC (rev 201813)
@@ -6,7 +6,7 @@
 pkgbase=python-tinycss
 pkgname=(python-tinycss python2-tinycss)
 pkgver=0.4
-pkgrel=1
+pkgrel=2
 pkgdesc="A complete yet simple CSS parser for Python"
 url="https://pypi.python.org/pypi/tinycss;
 license=('BSD')


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 03:03:50
  Author: felixonmars
Revision: 201812

archrelease: copy trunk to community-staging-any

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

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

Copied: python-waitress/repos/community-staging-any/PKGBUILD (from rev 201811, 
python-waitress/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 03:03:50 UTC (rev 201812)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-waitress
+pkgname=('python-waitress' 'python2-waitress')
+pkgver=1.0.1
+pkgrel=2
+pkgdesc="Waitress WSGI server"
+arch=('any')
+license=('ZPL')
+url="https://github.com/Pylons/waitress;
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose')
+source=("git+https://github.com/Pylons/waitress.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a waitress{,-py2}
+}
+
+build() {
+  cd "$srcdir"/waitress
+  python setup.py build
+
+  cd "$srcdir"/waitress-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/waitress
+  nosetests3
+
+  cd "$srcdir"/waitress-py2
+  nosetests2
+}
+
+package_python-waitress() {
+  depends=('python-setuptools')
+
+  cd waitress
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-waitress() {
+  depends=('python2-setuptools')
+
+  cd waitress-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  mv "$pkgdir"/usr/bin/waitress-serve{,2}
+}


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 03:03:32
  Author: felixonmars
Revision: 201811

upgpkg: python-waitress 1.0.1-2

python 3.6 rebuild

Modified:
  python-waitress/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 02:55:18 UTC (rev 201810)
+++ PKGBUILD2016-12-25 03:03:32 UTC (rev 201811)
@@ -4,7 +4,7 @@
 pkgbase=python-waitress
 pkgname=('python-waitress' 'python2-waitress')
 pkgver=1.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Waitress WSGI server"
 arch=('any')
 license=('ZPL')


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 02:55:18
  Author: bpiotrowski
Revision: 201810

archrelease: copy trunk to community-staging-any

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

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

Copied: python-webob/repos/community-staging-any/PKGBUILD (from rev 201809, 
python-webob/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 02:55:18 UTC (rev 201810)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Aaron DeVore 
+# Contributor: Cilyan Olowen 
+
+pkgbase='python-webob'
+pkgname=('python-webob' 'python2-webob' 'python-webob-docs')
+pkgver=1.7.0
+pkgrel=2
+pkgdesc="WSGI request and response object"
+arch=('any')
+url="http://pythonpaste.org/webob/;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-sphinx')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+optdepends=('python-webob-docs: documentation')
+source=("https://pypi.io/packages/source/W/WebOb/WebOb-$pkgver.tar.gz;)
+md5sums=('2be9cccbc4c6204e8e2715a13fe5a2bc')
+
+prepare() {
+  cp -a WebOb-$pkgver{,-py2}
+  cp -a WebOb-$pkgver{,-docs}
+}
+
+build() {
+  cd "$srcdir"/WebOb-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/WebOb-$pkgver-py2
+  python2 setup.py build
+
+  cd "$srcdir"/WebOb-$pkgver-docs
+  python setup.py build_sphinx
+}
+
+check() {
+  cd "$srcdir"/WebOb-$pkgver
+  python setup.py ptr --addopts "--ignore=docs"
+
+  cd "$srcdir"/WebOb-$pkgver-py2
+  python2 setup.py ptr --addopts "--ignore=docs"
+}
+
+package_python-webob() {
+  depends=('python')
+
+  cd "$srcdir"/WebOb-$pkgver
+  python setup.py install -O1 --root="$pkgdir"
+  install -D -m644 "docs/license.txt" \
+   "$pkgdir"/usr/share/licenses/$pkgname/license.txt
+}
+
+package_python2-webob() {
+  depends=('python2')
+
+  cd "$srcdir"/WebOb-$pkgver-py2
+  python2 setup.py install -O1 --root="$pkgdir"
+  install -D -m644 "docs/license.txt" \
+   "$pkgdir"/usr/share/licenses/$pkgname/license.txt
+}
+
+package_python-webob-docs() {
+  optdepends=()
+
+  cd "$srcdir"/WebOb-$pkgver-docs
+  _doc_dir="$pkgdir"/usr/share/docs/python-webob
+  mkdir -p "$_doc_dir"
+  cp -a "build/sphinx/html" "$_doc_dir"
+  install -D -m644 "docs/license.txt" \
+   "$pkgdir"/usr/share/licenses/$pkgname/license.txt
+}


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 02:55:10
  Author: bpiotrowski
Revision: 201809

Python 3.6 rebuild

Modified:
  python-webob/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 02:51:26 UTC (rev 201808)
+++ PKGBUILD2016-12-25 02:55:10 UTC (rev 201809)
@@ -6,7 +6,7 @@
 pkgbase='python-webob'
 pkgname=('python-webob' 'python2-webob' 'python-webob-docs')
 pkgver=1.7.0
-pkgrel=1
+pkgrel=2
 pkgdesc="WSGI request and response object"
 arch=('any')
 url="http://pythonpaste.org/webob/;


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 02:51:26
  Author: bpiotrowski
Revision: 201808

archrelease: copy trunk to community-staging-any

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

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

Copied: python-requests-mock/repos/community-staging-any/PKGBUILD (from rev 
201807, python-requests-mock/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 02:51:26 UTC (rev 201808)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-requests-mock
+pkgname=('python-requests-mock' 'python2-requests-mock')
+pkgver=1.2.0
+pkgrel=2
+pkgdesc="A mock of useful classes and functions to be used with 
python-requests."
+arch=('any')
+url="https://github.com/openstack/requests-mock;
+license=('Apache')
+makedepends=('python-pbr' 'python2-pbr' 'python-requests' 'python2-requests'
+ 'python-six' 'python2-six' 'git')
+checkdepends=('python-testrepository' 'python2-testrepository' 'python-mock' 
'python2-mock')
+source=("git+https://github.com/openstack/requests-mock.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a requests-mock{,-py2}
+}
+
+build() {
+  cd "$srcdir"/requests-mock
+  python setup.py build
+
+  cd "$srcdir"/requests-mock-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/requests-mock
+  python setup.py testr
+
+  cd "$srcdir"/requests-mock-py2
+  PYTHON=python2 python2 setup.py testr
+}
+
+package_python-requests-mock() {
+  depends=('python-requests' 'python-six')
+
+  cd requests-mock
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-requests-mock() {
+  depends=('python2-requests' 'python2-six')
+
+  cd requests-mock-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 02:51:19
  Author: bpiotrowski
Revision: 201807

Python 3.6 rebuild

Modified:
  python-requests-mock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 02:50:49 UTC (rev 201806)
+++ PKGBUILD2016-12-25 02:51:19 UTC (rev 201807)
@@ -4,7 +4,7 @@
 pkgbase=python-requests-mock
 pkgname=('python-requests-mock' 'python2-requests-mock')
 pkgver=1.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A mock of useful classes and functions to be used with 
python-requests."
 arch=('any')
 url="https://github.com/openstack/requests-mock;


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 02:50:42
  Author: bpiotrowski
Revision: 201805

Python 3.6 rebuild

Modified:
  python-requests-kerberos/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 02:50:19 UTC (rev 201804)
+++ PKGBUILD2016-12-25 02:50:42 UTC (rev 201805)
@@ -4,7 +4,7 @@
 pkgbase=python-requests-kerberos
 pkgname=('python-requests-kerberos' 'python2-requests-kerberos')
 pkgver=0.11.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A kerberos of useful classes and functions to be used with 
python-requests."
 arch=('any')
 url="https://github.com/requests/requests-kerberos;


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 02:50:49
  Author: bpiotrowski
Revision: 201806

archrelease: copy trunk to community-staging-any

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

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

Copied: python-requests-kerberos/repos/community-staging-any/PKGBUILD (from rev 
201805, python-requests-kerberos/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 02:50:49 UTC (rev 201806)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-requests-kerberos
+pkgname=('python-requests-kerberos' 'python2-requests-kerberos')
+pkgver=0.11.0
+pkgrel=2
+pkgdesc="A kerberos of useful classes and functions to be used with 
python-requests."
+arch=('any')
+url="https://github.com/requests/requests-kerberos;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests'
+ 'python-pykerberos' 'python2-pykerberos' 'git')
+checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock')
+source=("git+https://github.com/requests/requests-kerberos.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a requests-kerberos{,-py2}
+}
+
+build() {
+  cd "$srcdir"/requests-kerberos
+  python setup.py build
+
+  cd "$srcdir"/requests-kerberos-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/requests-kerberos
+  py.test
+
+  cd "$srcdir"/requests-kerberos-py2
+  py.test2
+}
+
+package_python-requests-kerberos() {
+  depends=('python-requests' 'python-pykerberos')
+
+  cd "$srcdir"/requests-kerberos
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-requests-kerberos() {
+  depends=('python2-requests' 'python2-pykerberos')
+
+  cd "$srcdir"/requests-kerberos-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 02:50:09
  Author: bpiotrowski
Revision: 201802

Python 3.6 rebuild

Modified:
  python-sphinx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 02:49:50 UTC (rev 201801)
+++ PKGBUILD2016-12-25 02:50:09 UTC (rev 201802)
@@ -7,7 +7,7 @@
 pkgbase=python-sphinx
 pkgname=('python-sphinx' 'python2-sphinx')
 pkgver=1.5.1
-pkgrel=1
+pkgrel=2
 
 arch=('any')
 url='http://sphinx.pocoo.org/'


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 02:50:15
  Author: bpiotrowski
Revision: 201803

archrelease: copy trunk to community-staging-any

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

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

Copied: python-sphinx/repos/community-staging-any/PKGBUILD (from rev 201802, 
python-sphinx/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 02:50:15 UTC (rev 201803)
@@ -0,0 +1,126 @@
+# $Id$
+# Maintainer: Johannes Löthberg 
+# Contributor: Sébastien Luttringer
+# Contributor: Angel Velasquez 
+# Contributor: Fabio Volpe 
+
+pkgbase=python-sphinx
+pkgname=('python-sphinx' 'python2-sphinx')
+pkgver=1.5.1
+pkgrel=2
+
+arch=('any')
+url='http://sphinx.pocoo.org/'
+license=('BSD')
+
+makedepends=(
+  'python-setuptools'
+  'python-docutils'
+  'python-jinja'
+  'python-pygments'
+  'python-six'
+  'python-imagesize'
+  'python2-setuptools'
+  'python2-docutils'
+  'python2-jinja'
+  'python2-pygments'
+  'python2-six'
+  'python2-imagesize'
+)
+
+checkdepends=(
+  'texlive-latexextra'
+  'python-nose' 'python2-nose'
+  'python-snowballstemmer' 'python2-snowballstemmer'
+  'python-babel' 'python2-babel'
+  'python-sphinx-alabaster-theme' 'python2-sphinx-alabaster-theme'
+  'python-sphinx_rtd_theme' 'python2-sphinx_rtd_theme'
+  'python-mock' 'python2-mock'
+  'python-html5lib' 'python2-html5lib'
+  'python-requests' 'python2-requests'
+  'python2-enum34'
+)
+
+source=("https://files.pythonhosted.org/packages/source/S/Sphinx/Sphinx-$pkgver.tar.gz;)
+
+md5sums=('1abb725861037e13cbc49eb84cd8cef3')
+
+prepare() {
+  # souce duplication is required because makefile modify source code
+  # setyp.py --build tricks don't works well
+  cp -a Sphinx-$pkgver Sphinx-${pkgver}2
+  # change python2 interpreter
+  find Sphinx-${pkgver}2 -type f -exec \
+sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
+  # change sphinx-binaries name in source code
+  find Sphinx-${pkgver}2 -type f -name '*.py' -exec \
+sed -ri 's,(sphinx-(:?build|apidoc|autogen|quickstart)),\12,' {} \;
+}
+
+build() {
+  msg2 'Python 3 version'
+  cd "$srcdir"/Sphinx-$pkgver
+  make PYTHON=python3 build
+
+  msg2 'Python 2 version'
+  cd "$srcdir"/Sphinx-${pkgver}2
+  make PYTHON=python2 build
+}
+
+check() {
+  msg2 'Python 3 version'
+  cd "$srcdir"/Sphinx-$pkgver
+  LC_ALL="en_US.UTF-8" make PYTHON=python3 test
+  rm -r tests
+
+  msg2 'Python 2 version'
+  cd "$srcdir"/Sphinx-${pkgver}2
+  LC_ALL="en_US.UTF-8" make PYTHON=python2 test
+  rm -r tests
+}
+
+package_python-sphinx() {
+  pkgdesc='Python3 documentation generator'
+  depends=(
+'python-jinja'
+'python-pygments'
+'python-docutils'
+'python-sphinx_rtd_theme'
+'python-sphinx-alabaster-theme'
+'python-babel'
+'python-snowballstemmer'
+'python-six'
+'python-imagesize'
+'python-requests'
+  )
+  optdepends=('texlive-latexextra: for generation of PDF documentation')
+
+  cd Sphinx-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 "$srcdir"/Sphinx-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/python-sphinx/LICENSE
+}
+
+package_python2-sphinx() {
+  pkgdesc='Python2 documentation generator'
+  depends=(
+'python2-jinja'
+'python2-pygments'
+'python2-docutils'
+'python2-sphinx_rtd_theme'
+'python2-sphinx-alabaster-theme'
+'python2-babel'
+'python2-snowballstemmer'
+'python2-six'
+'python2-imagesize'
+'python2-requests'
+  )
+  optdepends=('texlive-latexextra: for generation of PDF documentation')
+
+  cd Sphinx-${pkgver}2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 "$srcdir"/Sphinx-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/python2-sphinx/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 02:50:19
  Author: felixonmars
Revision: 201804

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

Added:
  python-http-parser/repos/community-staging-i686/
  python-http-parser/repos/community-staging-i686/PKGBUILD
(from rev 201801, python-http-parser/trunk/PKGBUILD)
  python-http-parser/repos/community-staging-x86_64/
  python-http-parser/repos/community-staging-x86_64/PKGBUILD
(from rev 201802, python-http-parser/trunk/PKGBUILD)

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

Copied: python-http-parser/repos/community-staging-i686/PKGBUILD (from rev 
201801, python-http-parser/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-12-25 02:50:19 UTC (rev 201804)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-http-parser
+pkgname=('python-http-parser' 'python2-http-parser')
+pkgver=0.8.3
+pkgrel=2
+pkgdesc="HTTP request/response parser for Python"
+arch=('i686' 'x86_64')
+license=('MIT')
+url="http://github.com/benoitc/http-parser;
+makedepends=('python-setuptools' 'python2-setuptools' 'cython' 'cython2' 'git')
+checkdepends=('python-pytest' 'python2-pytest')
+source=("git+https://github.com/benoitc/http-parser.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a http-parser{,-py2}
+}
+
+build() {
+  cd "$srcdir/http-parser"
+  python setup.py build
+
+  cd "$srcdir/http-parser-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/http-parser"
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" \
+  py.test testing/
+
+  cd "$srcdir/http-parser-py2"
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" \
+  py.test2 testing/
+}
+
+package_python-http-parser() {
+  depends=('python')
+
+  cd http-parser
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-http-parser() {
+  depends=('python2')
+
+  cd http-parser-py2
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: python-http-parser/repos/community-staging-x86_64/PKGBUILD (from rev 
201802, python-http-parser/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-12-25 02:50:19 UTC (rev 201804)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-http-parser
+pkgname=('python-http-parser' 'python2-http-parser')
+pkgver=0.8.3
+pkgrel=2
+pkgdesc="HTTP request/response parser for Python"
+arch=('i686' 'x86_64')
+license=('MIT')
+url="http://github.com/benoitc/http-parser;
+makedepends=('python-setuptools' 'python2-setuptools' 'cython' 'cython2' 'git')
+checkdepends=('python-pytest' 'python2-pytest')
+source=("git+https://github.com/benoitc/http-parser.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a http-parser{,-py2}
+}
+
+build() {
+  cd "$srcdir/http-parser"
+  python setup.py build
+
+  cd "$srcdir/http-parser-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/http-parser"
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" \
+  py.test testing/
+
+  cd "$srcdir/http-parser-py2"
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" \
+  py.test2 testing/
+}
+
+package_python-http-parser() {
+  depends=('python')
+
+  cd http-parser
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-http-parser() {
+  depends=('python2')
+
+  cd http-parser-py2
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 02:49:50
  Author: felixonmars
Revision: 201801

upgpkg: python-http-parser 0.8.3-2

python 3.6 rebuild

Modified:
  python-http-parser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 02:45:59 UTC (rev 201800)
+++ PKGBUILD2016-12-25 02:49:50 UTC (rev 201801)
@@ -4,7 +4,7 @@
 pkgbase=python-http-parser
 pkgname=('python-http-parser' 'python2-http-parser')
 pkgver=0.8.3
-pkgrel=1
+pkgrel=2
 pkgdesc="HTTP request/response parser for Python"
 arch=('i686' 'x86_64')
 license=('MIT')
@@ -28,7 +28,7 @@
 
 check() {
   cd "$srcdir/http-parser"
-  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.5:$PYTHONPATH" \
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" \
   py.test testing/
 
   cd "$srcdir/http-parser-py2"


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 02:45:40
  Author: felixonmars
Revision: 201799

upgpkg: python-pytest-xdist 1.15.0-2

python 3.6 rebuild

Modified:
  python-pytest-xdist/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 02:43:31 UTC (rev 201798)
+++ PKGBUILD2016-12-25 02:45:40 UTC (rev 201799)
@@ -4,7 +4,7 @@
 pkgbase=python-pytest-xdist
 pkgname=('python-pytest-xdist' 'python2-pytest-xdist')
 pkgver=1.15.0
-pkgrel=1
+pkgrel=2
 pkgdesc='py.test xdist plugin for distributed testing and loop-on-failing 
modes'
 arch=('any')
 license=('MIT')
@@ -30,7 +30,7 @@
 
   cd "$srcdir"/pytest-xdist
   python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" 
py.test
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" 
py.test
 
   cd "$srcdir"/pytest-xdist-py2
   python2 setup.py install --root="$PWD/tmp_install" --optimize=1


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 02:45:59
  Author: felixonmars
Revision: 201800

archrelease: copy trunk to community-staging-any

Added:
  python-pytest-xdist/repos/community-staging-any/
  python-pytest-xdist/repos/community-staging-any/PKGBUILD
(from rev 201799, python-pytest-xdist/trunk/PKGBUILD)

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

Copied: python-pytest-xdist/repos/community-staging-any/PKGBUILD (from rev 
201799, python-pytest-xdist/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 02:45:59 UTC (rev 201800)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pytest-xdist
+pkgname=('python-pytest-xdist' 'python2-pytest-xdist')
+pkgver=1.15.0
+pkgrel=2
+pkgdesc='py.test xdist plugin for distributed testing and loop-on-failing 
modes'
+arch=('any')
+license=('MIT')
+url='https://bitbucket.org/pytest-dev/pytest-xdist'
+makedepends=('python-pytest' 'python2-pytest' 'python-setuptools_scm' 
'python2-setuptools_scm' 'python-execnet' 'python2-execnet' 'git')
+source=("git+https://github.com/pytest-dev/pytest-xdist#tag=v$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a pytest-xdist{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pytest-xdist
+  python setup.py build
+
+  cd "$srcdir"/pytest-xdist-py2
+  python2 setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd "$srcdir"/pytest-xdist
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" 
py.test
+
+  cd "$srcdir"/pytest-xdist-py2
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2
+}
+
+package_python-pytest-xdist() {
+  depends=('python-pytest' 'python-execnet')
+
+  cd "$srcdir/pytest-xdist"
+  python setup.py install --root="$pkgdir"/ --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pytest-xdist() {
+  depends=('python2-pytest' 'python2-execnet')
+
+  cd "$srcdir/pytest-xdist-py2"
+  python2 setup.py install --root="$pkgdir"/ --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+# vim:set ts=2 sw=2 et:


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 02:43:23
  Author: bpiotrowski
Revision: 201797

Python 3.6 rebuild

Modified:
  python-aspectlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 02:43:12 UTC (rev 201796)
+++ PKGBUILD2016-12-25 02:43:23 UTC (rev 201797)
@@ -4,7 +4,7 @@
 pkgbase=python-aspectlib
 pkgname=('python-aspectlib' 'python2-aspectlib')
 pkgver=1.4.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Development library for quickly writing configurable applications and 
daemons"
 arch=('any')
 license=('BSD')


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 02:43:31
  Author: bpiotrowski
Revision: 201798

archrelease: copy trunk to community-staging-any

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

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

Copied: python-aspectlib/repos/community-staging-any/PKGBUILD (from rev 201797, 
python-aspectlib/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 02:43:31 UTC (rev 201798)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-aspectlib
+pkgname=('python-aspectlib' 'python2-aspectlib')
+pkgver=1.4.2
+pkgrel=2
+pkgdesc="Development library for quickly writing configurable applications and 
daemons"
+arch=('any')
+license=('BSD')
+url="https://github.com/ionelmc/python-aspectlib;
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-pytest-capturelog' 'python2-pytest-capturelog' 
'python-mock'
+  'python2-mock' 'python-tornado' 'python2-tornado' 
'python-process-tests'
+  'python2-process-tests' 'python2-trollius' 'python-profilestats'
+  'python2-profilestats') # 'mysql-python')
+source=("git+https://github.com/ionelmc/python-aspectlib.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a python-aspectlib{,-py2}
+}
+
+build() {
+  cd "$srcdir"/python-aspectlib
+  python setup.py build
+
+  cd "$srcdir"/python-aspectlib-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-aspectlib
+  LC_CTYPE=en_US.UTF-8 py.test
+
+  cd "$srcdir"/python-aspectlib-py2
+  py.test2
+}
+
+package_python-aspectlib() {
+  depends=('python')
+
+  cd python-aspectlib
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-aspectlib() {
+  depends=('python2')
+
+  cd python-aspectlib-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 02:43:12
  Author: felixonmars
Revision: 201796

archrelease: copy trunk to community-staging-any

Added:
  python-pytest-cache/repos/community-staging-any/
  python-pytest-cache/repos/community-staging-any/PKGBUILD
(from rev 201795, python-pytest-cache/trunk/PKGBUILD)

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

Copied: python-pytest-cache/repos/community-staging-any/PKGBUILD (from rev 
201795, python-pytest-cache/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 02:43:12 UTC (rev 201796)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pytest-cache
+pkgname=('python-pytest-cache' 'python2-pytest-cache')
+_pypiname=pytest-cache
+pkgver=1.0
+pkgrel=3
+pkgdesc='pytest plugin with mechanisms for caching across test runs'
+arch=('any')
+license=('MIT')
+url='http://bitbucket.org/hpk42/pytest-cache/'
+makedepends=('python-pytest' 'python2-pytest' 'python-execnet' 
'python2-execnet' 'mercurial')
+source=("hg+https://bitbucket.org/hpk42/pytest-cache#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a "${srcdir}/${_pypiname}"{,-py2}
+}
+
+build() {
+  cd "$srcdir/$_pypiname"
+  python setup.py build
+
+  cd "$srcdir/$_pypiname-py2"
+  python2 setup.py build
+}
+
+check() {(
+  # Hack entry points by installing it
+
+  cd "$srcdir/$_pypiname"
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" 
py.test
+
+  cd "$srcdir/$_pypiname-py2"
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2
+  ) || warning "Tests failed"
+  # Skipping tests as it's incompatibility with pytest 2.8.0, not python 3.5.
+  # 
https://bitbucket.org/hpk42/pytest-cache/issues/11/tests-failed-with-pytest-280
+}
+
+package_python-pytest-cache() {
+  depends=('python-pytest' 'python-execnet')
+
+  cd "$srcdir/$_pypiname"
+  python setup.py install --root="$pkgdir"/ --optimize=1
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-pytest-cache() {
+  depends=('python2-pytest' 'python2-execnet')
+
+  cd "$srcdir/$_pypiname-py2"
+  python2 setup.py install --root="$pkgdir"/ --optimize=1
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+# vim:set ts=2 sw=2 et:


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 02:42:45
  Author: felixonmars
Revision: 201795

upgpkg: python-pytest-cache 1.0-3

python 3.6 rebuild

Modified:
  python-pytest-cache/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 02:40:51 UTC (rev 201794)
+++ PKGBUILD2016-12-25 02:42:45 UTC (rev 201795)
@@ -5,7 +5,7 @@
 pkgname=('python-pytest-cache' 'python2-pytest-cache')
 _pypiname=pytest-cache
 pkgver=1.0
-pkgrel=2
+pkgrel=3
 pkgdesc='pytest plugin with mechanisms for caching across test runs'
 arch=('any')
 license=('MIT')
@@ -31,7 +31,7 @@
 
   cd "$srcdir/$_pypiname"
   python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" 
py.test
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" 
py.test
 
   cd "$srcdir/$_pypiname-py2"
   python2 setup.py install --root="$PWD/tmp_install" --optimize=1


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 02:40:51
  Author: felixonmars
Revision: 201794

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

Added:
  python-tornado/repos/community-staging-i686/
  
python-tornado/repos/community-staging-i686/0001-use_system_ca_certificates.patch
(from rev 201793, 
python-tornado/trunk/0001-use_system_ca_certificates.patch)
  python-tornado/repos/community-staging-i686/PKGBUILD
(from rev 201793, python-tornado/trunk/PKGBUILD)
  python-tornado/repos/community-staging-x86_64/
  
python-tornado/repos/community-staging-x86_64/0001-use_system_ca_certificates.patch
(from rev 201793, 
python-tornado/trunk/0001-use_system_ca_certificates.patch)
  python-tornado/repos/community-staging-x86_64/PKGBUILD
(from rev 201793, python-tornado/trunk/PKGBUILD)

+
 community-staging-i686/0001-use_system_ca_certificates.patch   |   13 +
 community-staging-i686/PKGBUILD|   92 
++
 community-staging-x86_64/0001-use_system_ca_certificates.patch |   13 +
 community-staging-x86_64/PKGBUILD  |   92 
++
 4 files changed, 210 insertions(+)

Copied: 
python-tornado/repos/community-staging-i686/0001-use_system_ca_certificates.patch
 (from rev 201793, python-tornado/trunk/0001-use_system_ca_certificates.patch)
===
--- community-staging-i686/0001-use_system_ca_certificates.patch
(rev 0)
+++ community-staging-i686/0001-use_system_ca_certificates.patch
2016-12-25 02:40:51 UTC (rev 201794)
@@ -0,0 +1,13 @@
+diff --git a/setup.py b/setup.py
+index f09169f..d42c486 100644
+--- a/setup.py
 b/setup.py
+@@ -120,7 +120,7 @@ if (platform.python_implementation() == 'CPython' and
+ # Certifi is also optional on 2.7.9+, although making our dependencies
+ # conditional on micro version numbers seems like a bad idea
+ # until we have more declarative metadata.
+-install_requires.append('certifi')
++pass
+ if sys.version_info < (3, 5):
+ install_requires.append('backports_abc>=0.4')
+ kwargs['install_requires'] = install_requires
\ No newline at end of file

Copied: python-tornado/repos/community-staging-i686/PKGBUILD (from rev 201793, 
python-tornado/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-12-25 02:40:51 UTC (rev 201794)
@@ -0,0 +1,92 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+
+pkgname=('python-tornado' 'python2-tornado')
+pkgver=4.4.2
+pkgrel=2
+pkgdesc='open source version of the scalable, non-blocking web server and 
tools'
+arch=('i686' 'x86_64')
+url='http://www.tornadoweb.org/'
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-pycurl' 'python2-pycurl' 'python-mock' 'python2-mock' 
'python-twisted'
+  'python2-twisted' 'python2-futures' 'python2-singledispatch' 
'python2-backports-abc'
+  'python2-trollius' 'python2-monotonic')
+source=("git+https://github.com/tornadoweb/tornado.git#tag=v$pkgver;
+0001-use_system_ca_certificates.patch)
+sha512sums=('SKIP'
+
'a6422735bdce26246088d38aec55042627a1800329847aba54ca85453dcefcdde631519b57088dd441a42a4c341e7f07c73ab6b73d8404869b67ee4107bde912')
+
+prepare() {
+  cd tornado
+  patch -p1 -i ../0001-use_system_ca_certificates.patch
+
+  cd "$srcdir"
+  cp -a tornado{,-py2}
+
+  # python -> python2 rename
+  find tornado-py2 -name '*py' -exec sed -e 's_#!/usr/bin/env python_&2_' -i 
{} \;
+
+  export TORNADO_EXTENSION=1
+}
+
+build() {
+  cd tornado
+  python setup.py build
+
+  cd ../tornado-py2
+  python2 setup.py build
+}
+
+check() {
+  (
+cd tornado
+python setup.py install --root="$PWD/tmp_install" --optimize=1
+export 
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH"
+cd tmp_install
+python -m tornado.test.runtests
+python -m tornado.test.runtests 
--ioloop=tornado.platform.select.SelectIOLoop
+python -m tornado.test.runtests 
--httpclient=tornado.curl_httpclient.CurlAsyncHTTPClient
+python -m tornado.test.runtests --ioloop_time_monotonic
+python -m tornado.test.runtests 
--ioloop=tornado.platform.twisted.TwistedIOLoop
+python -m tornado.test.runtests 
--ioloop=tornado.platform.asyncio.AsyncIOLoop
+python -m tornado.test.runtests --resolver=tornado.netutil.ThreadedResolver
+  )
+
+  (
+cd tornado-py2
+python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+export 
PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH"
+cd tmp_install
+python2 -m tornado.test.runtests
+python2 -m 

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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 02:40:19
  Author: felixonmars
Revision: 201793

upgpkg: python-tornado 4.4.2-2

python 3.6 rebuild

Modified:
  python-tornado/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 02:33:40 UTC (rev 201792)
+++ PKGBUILD2016-12-25 02:40:19 UTC (rev 201793)
@@ -4,7 +4,7 @@
 
 pkgname=('python-tornado' 'python2-tornado')
 pkgver=4.4.2
-pkgrel=1
+pkgrel=2
 pkgdesc='open source version of the scalable, non-blocking web server and 
tools'
 arch=('i686' 'x86_64')
 url='http://www.tornadoweb.org/'


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 02:36:19
  Author: felixonmars
Revision: 284713

upgpkg: python-requests 2.12.4-2

python 3.6 rebuild

Modified:
  python-requests/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-24 23:58:01 UTC (rev 284712)
+++ PKGBUILD2016-12-25 02:36:19 UTC (rev 284713)
@@ -5,7 +5,7 @@
 pkgbase=python-requests
 pkgname=('python-requests' 'python2-requests')
 pkgver=2.12.4
-pkgrel=1
+pkgrel=2
 pkgdesc="Python HTTP for Humans"
 arch=('any')
 url="http://python-requests.org;


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 02:36:40
  Author: felixonmars
Revision: 284714

archrelease: copy trunk to staging-any

Added:
  python-requests/repos/staging-any/
  python-requests/repos/staging-any/PKGBUILD
(from rev 284713, python-requests/trunk/PKGBUILD)
  python-requests/repos/staging-any/certs.patch
(from rev 284713, python-requests/trunk/certs.patch)

-+
 PKGBUILD|   74 ++
 certs.patch |   13 ++
 2 files changed, 87 insertions(+)

Copied: python-requests/repos/staging-any/PKGBUILD (from rev 284713, 
python-requests/trunk/PKGBUILD)
===
--- staging-any/PKGBUILD(rev 0)
+++ staging-any/PKGBUILD2016-12-25 02:36:40 UTC (rev 284714)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Massimiliano Torromeo 
+
+pkgbase=python-requests
+pkgname=('python-requests' 'python2-requests')
+pkgver=2.12.4
+pkgrel=2
+pkgdesc="Python HTTP for Humans"
+arch=('any')
+url="http://python-requests.org;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-chardet' 
'python2-chardet'
+ 'python-urllib3' 'python2-urllib3' 'python-pysocks' 
'python2-pysocks' 'git')
+checkdepends=('python-pytest-httpbin' 'python2-pytest-httpbin' 
'python-pytest-mock'
+  'python2-pytest-mock')
+source=("git+https://github.com/kennethreitz/requests.git#tag=v$pkgver;
+certs.patch)
+sha256sums=('SKIP'
+'e35e779d8640f35ea2ea51112f967d927b44d59483af4cd2c0945c84e79bb7c7')
+
+prepare() {
+  cd "$srcdir"/requests
+
+  patch -p1 -i "$srcdir"/certs.patch
+  sed -r 's#(\W|^)requests/cacert\.pem(\W|$)##' -i MANIFEST.in
+  rm -f requests/cacert.pem
+
+  rm -r requests/packages/{urllib3,chardet}
+  sed -e '/packages.chardet/d' \
+  -e '/packages.urllib3/d' \
+  -i setup.py
+
+  cd "$srcdir"
+  cp -a requests{,-py2}
+  find requests-py2 -name \*.py -exec sed -r 's|^#!(.*)python$|#!\1python2|' 
-i {} +
+}
+
+build() {
+  cd "$srcdir"/requests
+  python setup.py build
+
+  cd "$srcdir"/requests-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/requests
+  test -f "$(python -m requests.certs)"
+  py.test tests
+
+  cd "$srcdir"/requests-py2
+  test -f "$(python2 -m requests.certs)"
+  py.test2 tests || warning "Tests failed"
+}
+
+package_python-requests() {
+  depends=('python-urllib3' 'python-chardet')
+  optdepends=('python-pysocks: SOCKS proxy support')
+
+  cd "$srcdir"/requests
+  python setup.py install --skip-build -O1 --root="$pkgdir"
+  install -m0644 -D "LICENSE" "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-requests() {
+  depends=('python2-urllib3' 'python2-chardet')
+  optdepends=('python2-ndg-httpsclient: HTTPS requests with SNI support'
+  'python2-grequests: asynchronous requests with gevent'
+  'python2-pysocks: SOCKS proxy support')
+
+  cd "$srcdir"/requests-py2
+  python2 setup.py install --skip-build -O1 --root="$pkgdir"
+}

Copied: python-requests/repos/staging-any/certs.patch (from rev 284713, 
python-requests/trunk/certs.patch)
===
--- staging-any/certs.patch (rev 0)
+++ staging-any/certs.patch 2016-12-25 02:36:40 UTC (rev 284714)
@@ -0,0 +1,13 @@
+diff --git a/requests/certs.py b/requests/certs.py
+index 07e6475..33db011 100644
+--- a/requests/certs.py
 b/requests/certs.py
+@@ -19,7 +19,7 @@ except ImportError:
+ def where():
+ """Return the preferred certificate bundle."""
+ # vendored bundle inside Requests
+-return os.path.join(os.path.dirname(__file__), 'cacert.pem')
++return "/etc/ssl/certs/ca-certificates.crt"
+ 
+ if __name__ == '__main__':
+ print(where())


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 02:33:40
  Author: felixonmars
Revision: 201792

archrelease: copy trunk to community-staging-any

Added:
  python-pytest-httpbin/repos/community-staging-any/
  python-pytest-httpbin/repos/community-staging-any/LICENSE
(from rev 201791, python-pytest-httpbin/trunk/LICENSE)
  python-pytest-httpbin/repos/community-staging-any/PKGBUILD
(from rev 201791, python-pytest-httpbin/trunk/PKGBUILD)

--+
 LICENSE  |9 
 PKGBUILD |   62 +
 2 files changed, 71 insertions(+)

Copied: python-pytest-httpbin/repos/community-staging-any/LICENSE (from rev 
201791, python-pytest-httpbin/trunk/LICENSE)
===
--- community-staging-any/LICENSE   (rev 0)
+++ community-staging-any/LICENSE   2016-12-25 02:33:40 UTC (rev 201792)
@@ -0,0 +1,9 @@
+The MIT License (MIT)
+
+Copyright (c) 2014-2015 Kevin McCarthy
+
+Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the "Software"), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all 
copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.
\ No newline at end of file

Copied: python-pytest-httpbin/repos/community-staging-any/PKGBUILD (from rev 
201791, python-pytest-httpbin/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 02:33:40 UTC (rev 201792)
@@ -0,0 +1,62 @@
+# $Id: PKGBUILD 145298 2015-10-30 10:35:09Z fyan $
+# Maintainer: Felix Yan 
+
+pkgbase=python-pytest-httpbin
+pkgname=('python-pytest-httpbin' 'python2-pytest-httpbin')
+_commit=e4ffbae0a44895ae8ddfdffdebd1b5e062d1d743
+pkgver=0.2.3
+pkgrel=2
+pkgdesc='A py.test fixture for httpbining code'
+arch=('any')
+license=('MIT')
+url='https://github.com/kevin1024/pytest-httpbin'
+makedepends=('python-pytest' 'python2-pytest' 'python-flask' 'python2-flask'
+ 'python-decorator' 'python2-decorator' 'python-six' 'python2-six'
+ 'httpbin' 'python2-httpbin' 'git')
+checkdepends=('python-requests' 'python2-requests' 'python-pytest-runner' 
'python2-pytest-runner')
+source=("git+https://github.com/kevin1024/pytest-httpbin.git#commit=$_commit;
+LICENSE)
+md5sums=('SKIP'
+ '784ac13962be640b76df58e023712ddd')
+
+prepare() {
+  cp -a pytest-httpbin{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pytest-httpbin
+  python setup.py build
+
+  cd "$srcdir"/pytest-httpbin-py2
+  python2 setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd "$srcdir"/pytest-httpbin
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" 
python setup.py ptr
+
+  cd "$srcdir"/pytest-httpbin-py2
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
python2 setup.py ptr
+}
+
+package_python-pytest-httpbin() {
+  depends=('python-pytest' 'python-flask' 'python-decorator' 'python-six' 
'httpbin')
+
+  cd pytest-httpbin
+  python setup.py install --root="$pkgdir"/ --optimize=1
+  install -D -m644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pytest-httpbin() {
+  depends=('python2-pytest' 'python2-flask' 'python2-decorator' 'python2-six' 
'python2-httpbin')
+
+  cd pytest-httpbin-py2
+  python2 setup.py install --root="$pkgdir"/ --optimize=1
+  install -D -m644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 02:33:20
  Author: felixonmars
Revision: 201791

upgpkg: python-pytest-httpbin 0.2.3-2

python 3.6 rebuild

Modified:
  python-pytest-httpbin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 02:27:10 UTC (rev 201790)
+++ PKGBUILD2016-12-25 02:33:20 UTC (rev 201791)
@@ -5,7 +5,7 @@
 pkgname=('python-pytest-httpbin' 'python2-pytest-httpbin')
 _commit=e4ffbae0a44895ae8ddfdffdebd1b5e062d1d743
 pkgver=0.2.3
-pkgrel=1
+pkgrel=2
 pkgdesc='A py.test fixture for httpbining code'
 arch=('any')
 license=('MIT')


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 02:27:10
  Author: felixonmars
Revision: 201790

archrelease: copy trunk to community-staging-any

Added:
  httpbin/repos/community-staging-any/
  httpbin/repos/community-staging-any/PKGBUILD
(from rev 201789, httpbin/trunk/PKGBUILD)

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

Copied: httpbin/repos/community-staging-any/PKGBUILD (from rev 201789, 
httpbin/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 02:27:10 UTC (rev 201790)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=httpbin
+pkgname=(httpbin python2-httpbin)
+pkgver=0.5.0
+pkgrel=2
+pkgdesc="HTTP Request and Response Service"
+arch=('any')
+url="https://github.com/Runscope/httpbin;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-flask' 
'python2-flask'
+ 'python-markupsafe' 'python2-markupsafe' 'python-itsdangerous' 
'python2-itsdangerous'
+ 'python-six' 'python2-six' 'python-decorator' 'python2-decorator' 
'git')
+source=("git+https://github.com/Runscope/httpbin.git#tag=v$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  cp -a httpbin{,-py2}
+}
+
+build() {
+  cd "$srcdir"/httpbin
+  LC_CTYPE=en_US.UTF-8 python setup.py build
+
+  cd "$srcdir"/httpbin-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/httpbin
+  python test_httpbin.py
+
+  cd "$srcdir"/httpbin-py2
+  python2 test_httpbin.py
+}
+
+package_httpbin() {
+  depends=('python-flask' 'python-markupsafe' 'python-itsdangerous' 
'python-six' 'python-decorator')
+
+  cd httpbin
+  LC_CTYPE=en_US.UTF-8 python setup.py install -O1 --root="$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-httpbin() {
+  depends=('python2-flask' 'python2-markupsafe' 'python2-itsdangerous' 
'python2-six' 'python2-decorator')
+
+  cd httpbin-py2
+  python2 setup.py install -O1 --root="$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 02:26:31
  Author: felixonmars
Revision: 201789

upgpkg: httpbin 0.5.0-2

python 3.6 rebuild

Modified:
  httpbin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 02:22:44 UTC (rev 201788)
+++ PKGBUILD2016-12-25 02:26:31 UTC (rev 201789)
@@ -4,7 +4,7 @@
 pkgbase=httpbin
 pkgname=(httpbin python2-httpbin)
 pkgver=0.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc="HTTP Request and Response Service"
 arch=('any')
 url="https://github.com/Runscope/httpbin;


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 02:22:44
  Author: felixonmars
Revision: 201788

archrelease: copy trunk to community-staging-any

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

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

Copied: python-paste/repos/community-staging-any/PKGBUILD (from rev 201787, 
python-paste/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 02:22:44 UTC (rev 201788)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: David Campbell 
+# Contributor: Cilyan Olowen 
+
+pkgbase=python-paste
+pkgname=(python-paste python2-paste)
+pkgver=2.0.3
+pkgrel=2
+pkgdesc="Tools for using a Web Server Gateway Interface stack"
+arch=('any')
+url="http://pythonpaste.org/index.html;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
+checkdepends=('python-nose' 'python2-nose')
+optdepends=('python2-flup: WSGI utilities'
+'python-openid: Support for OpenID')
+source=("http://pypi.python.org/packages/source/P/Paste/Paste-${pkgver}.tar.gz;)
+md5sums=('1231e14eae62fa7ed76e9130b04bc61e')
+
+prepare() {
+  rm Paste-${pkgver}/paste/httpserver.py.orig
+
+  cp -a Paste-${pkgver}{,-py2}
+
+  cd Paste-${pkgver}-py2
+  sed -i -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+ -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+  $(find . -name '*.py')
+}
+
+build() {
+  cd "$srcdir"/Paste-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/Paste-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/Paste-$pkgver
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" nosetests3
+
+  cd "$srcdir"/Paste-$pkgver-py2
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" nosetests2
+}
+
+package_python-paste() {
+  depends=('python-six')
+
+  cd Paste-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 docs/license.txt 
"$pkgdir"/usr/share/licenses/$pkgname/license.txt
+}
+
+package_python2-paste() {
+  depends=('python2-six')
+
+  cd Paste-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 docs/license.txt 
"$pkgdir"/usr/share/licenses/$pkgname/license.txt
+}


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 02:22:24
  Author: felixonmars
Revision: 201787

upgpkg: python-paste 2.0.3-2

python 3.6 rebuild

Modified:
  python-paste/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 02:20:56 UTC (rev 201786)
+++ PKGBUILD2016-12-25 02:22:24 UTC (rev 201787)
@@ -6,7 +6,7 @@
 pkgbase=python-paste
 pkgname=(python-paste python2-paste)
 pkgver=2.0.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Tools for using a Web Server Gateway Interface stack"
 arch=('any')
 url="http://pythonpaste.org/index.html;


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 02:20:56
  Author: felixonmars
Revision: 201786

archrelease: copy trunk to community-staging-any

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

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

Copied: python-faker/repos/community-staging-any/PKGBUILD (from rev 201785, 
python-faker/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 02:20:56 UTC (rev 201786)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Jeremy "Ichimonji10" Audet 
+# Contributor: dnuux 
+
+pkgbase=python-faker
+pkgname=(python-faker python2-faker)
+pkgver=0.7.7
+_commit=3764f7bdf0d630bfcc6538bac195e7580d4b178d
+pkgrel=2
+pkgdesc='Faker generates fake data for you.'
+arch=('any')
+url='http://www.joke2k.net/faker/'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-dateutil' 
'python2-dateutil' 'git')
+checkdepends=('python-ukpostcodeparser' 'python2-ukpostcodeparser' 
'python-nose' 'python2-nose'
+  'python-mock' 'python2-mock' 'python-email-validator' 
'python2-email-validator'
+  'python2-ipaddress')
+source=("git+https://github.com/joke2k/faker.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+prepare() {
+  cp -a faker{,-py2}
+}
+
+build() {
+  cd "$srcdir"/faker
+  python setup.py build
+
+  cd "$srcdir"/faker-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/faker
+  nosetests3
+
+  cd "$srcdir"/faker-py2
+  nosetests2
+}
+
+package_python-faker() {
+  depends=('python-setuptools' 'python-dateutil')
+  provides=("python-fake-factory=$pkgver")
+  conflicts=('python-fake-factory')
+  replaces=('python-fake-factory')
+
+  cd "$srcdir"/faker
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm 644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.txt
+}
+
+package_python2-faker() {
+  depends=('python2-setuptools' 'python2-dateutil' 'python2-ipaddress')
+  provides=("python2-fake-factory=$pkgver")
+  conflicts=('python2-fake-factory')
+  replaces=('python2-fake-factory')
+
+  cd "$srcdir"/faker-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  mv "$pkgdir"/usr/bin/faker{,2}
+  install -Dm 644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.txt
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-12-24 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 02:20:36
  Author: felixonmars
Revision: 201785

upgpkg: python-faker 0.7.7-2

python 3.6 rebuild

Modified:
  python-faker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 00:03:12 UTC (rev 201784)
+++ PKGBUILD2016-12-25 02:20:36 UTC (rev 201785)
@@ -7,7 +7,7 @@
 pkgname=(python-faker python2-faker)
 pkgver=0.7.7
 _commit=3764f7bdf0d630bfcc6538bac195e7580d4b178d
-pkgrel=1
+pkgrel=2
 pkgdesc='Faker generates fake data for you.'
 arch=('any')
 url='http://www.joke2k.net/faker/'


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

2016-12-24 Thread Antonio Rojas
Date: Sunday, December 25, 2016 @ 00:03:12
  Author: arojas
Revision: 201784

Python 3.6

Modified:
  python-webtest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 00:01:22 UTC (rev 201783)
+++ PKGBUILD2016-12-25 00:03:12 UTC (rev 201784)
@@ -34,7 +34,7 @@
 
 check() {
   cd "$srcdir"/WebTest-$pkgver
-  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.5:$PYTHONPATH" nosetests3
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" nosetests3
 
   cd "$srcdir"/WebTest-$pkgver-py2
   PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" nosetests2


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 00:01:22
  Author: bpiotrowski
Revision: 201783

archrelease: copy trunk to community-staging-any

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

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

Copied: python-keyring/repos/community-staging-any/PKGBUILD (from rev 201782, 
python-keyring/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-12-25 00:01:22 UTC (rev 201783)
@@ -0,0 +1,61 @@
+# $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=10.1
+pkgrel=2
+pkgdesc="Store and access your passwords safely."
+arch=('any')
+url="http://pypi.python.org/pypi/keyring;
+license=('PSF' 'MIT')
+source=("https://pypi.io/packages/source/k/keyring/keyring-$pkgver.tar.gz;)
+makedepends=('python-setuptools_scm' 'python2-setuptools_scm' 
'python-secretstorage'
+ 'python2-secretstorage')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+md5sums=('2300404daf9b0b3c1688a12a80b8c799')
+
+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() {
+  cd "$srcdir"/keyring-$pkgver
+  python setup.py ptr
+
+  cd "$srcdir"/keyring-$pkgver-py2
+  python2 setup.py ptr
+}
+
+package_python-keyring() {
+  depends=('python-setuptools' 'python-secretstorage')
+  optdepends=('python-keyrings-alt: Alternative backends')
+
+  cd keyring-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-keyring() {
+  depends=('python2-setuptools' 'python2-secretstorage')
+  optdepends=('python2-keyrings-alt: Alternative backends')
+
+  cd 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-keyring/trunk (PKGBUILD)

2016-12-24 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 00:00:53
  Author: bpiotrowski
Revision: 201782

Python 3.6 rebuild

Modified:
  python-keyring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-24 23:24:15 UTC (rev 201781)
+++ PKGBUILD2016-12-25 00:00:53 UTC (rev 201782)
@@ -9,7 +9,7 @@
 pkgbase=python-keyring
 pkgname=('python-keyring' 'python2-keyring')
 pkgver=10.1
-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-cryptography/repos (4 files)

2016-12-24 Thread Bartłomiej Piotrowski
Date: Saturday, December 24, 2016 @ 23:58:01
  Author: bpiotrowski
Revision: 284712

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

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

-+
 staging-i686/PKGBUILD   |   55 ++
 staging-x86_64/PKGBUILD |   55 ++
 2 files changed, 110 insertions(+)

Copied: python-cryptography/repos/staging-i686/PKGBUILD (from rev 284711, 
python-cryptography/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-12-24 23:58:01 UTC (rev 284712)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-cryptography
+pkgname=('python-cryptography' 'python2-cryptography')
+pkgver=1.7.1
+pkgrel=2
+pkgdesc="A package designed to expose cryptographic recipes and primitives to 
Python developers"
+arch=('i686' 'x86_64')
+license=('Apache')
+url="http://pypi.python.org/pypi/cryptography;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six' 'python-cffi'
+ 'python2-cffi' 'python2-enum34' 'python-pyasn1' 'python2-pyasn1' 
'python-idna'
+ 'python2-idna' 'python2-ipaddress')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
"python-cryptography-vectors=$pkgver"
+  "python2-cryptography-vectors=$pkgver" 'python-iso8601' 
'python2-iso8601'
+  'python-pretend' 'python2-pretend' 'python-pyasn1-modules' 
'python2-pyasn1-modules'
+  'python-hypothesis' 'python2-hypothesis' 'python-pytz' 
'python2-pytz')
+source=("https://pypi.io/packages/source/c/cryptography/cryptography-$pkgver.tar.gz;)
+md5sums=('2f63dee6ace602d1d20d1995f8538015')
+
+prepare() {
+  cp -a cryptography-${pkgver}{,-python2}
+}
+
+build() {
+   cd "$srcdir"/cryptography-$pkgver
+   python setup.py build
+ 
+   cd "$srcdir"/cryptography-$pkgver-python2
+   python2 setup.py build
+}
+
+check() {
+   cd "$srcdir"/cryptography-$pkgver
+   PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" python setup.py ptr
+
+   cd "$srcdir"/cryptography-$pkgver-python2
+   PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" python2 setup.py 
ptr
+}
+ 
+package_python-cryptography() {
+   depends=('python-pyasn1' 'python-six' 'python-cffi' 'python-idna' 
'python-setuptools')
+ 
+   cd cryptography-$pkgver
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+ 
+package_python2-cryptography() {
+   depends=('python2-pyasn1' 'python2-six' 'python2-cffi' 'python2-enum34' 
'python2-idna'
+'python2-ipaddress' 'python2-setuptools')
+ 
+   cd cryptography-$pkgver-python2
+   python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}

Copied: python-cryptography/repos/staging-x86_64/PKGBUILD (from rev 284711, 
python-cryptography/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-12-24 23:58:01 UTC (rev 284712)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-cryptography
+pkgname=('python-cryptography' 'python2-cryptography')
+pkgver=1.7.1
+pkgrel=2
+pkgdesc="A package designed to expose cryptographic recipes and primitives to 
Python developers"
+arch=('i686' 'x86_64')
+license=('Apache')
+url="http://pypi.python.org/pypi/cryptography;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six' 'python-cffi'
+ 'python2-cffi' 'python2-enum34' 'python-pyasn1' 'python2-pyasn1' 
'python-idna'
+ 'python2-idna' 'python2-ipaddress')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
"python-cryptography-vectors=$pkgver"
+  "python2-cryptography-vectors=$pkgver" 'python-iso8601' 
'python2-iso8601'
+  'python-pretend' 'python2-pretend' 'python-pyasn1-modules' 
'python2-pyasn1-modules'
+  'python-hypothesis' 'python2-hypothesis' 'python-pytz' 
'python2-pytz')
+source=("https://pypi.io/packages/source/c/cryptography/cryptography-$pkgver.tar.gz;)
+md5sums=('2f63dee6ace602d1d20d1995f8538015')
+
+prepare() {
+  cp -a cryptography-${pkgver}{,-python2}
+}
+
+build() {
+   cd "$srcdir"/cryptography-$pkgver
+   python setup.py build
+ 
+   cd "$srcdir"/cryptography-$pkgver-python2
+   python2 setup.py build
+}
+
+check() {
+   cd "$srcdir"/cryptography-$pkgver
+   PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" python setup.py ptr
+
+   cd "$srcdir"/cryptography-$pkgver-python2
+   

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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Saturday, December 24, 2016 @ 23:57:50
  Author: bpiotrowski
Revision: 284711

Python 3.6 rebuild

Modified:
  python-cryptography/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-24 23:43:43 UTC (rev 284710)
+++ PKGBUILD2016-12-24 23:57:50 UTC (rev 284711)
@@ -4,7 +4,7 @@
 pkgbase=python-cryptography
 pkgname=('python-cryptography' 'python2-cryptography')
 pkgver=1.7.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A package designed to expose cryptographic recipes and primitives to 
Python developers"
 arch=('i686' 'x86_64')
 license=('Apache')


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

2016-12-24 Thread Antonio Rojas
Date: Saturday, December 24, 2016 @ 23:43:43
  Author: arojas
Revision: 284710

Python 3.6

Modified:
  python-cryptography/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-24 23:42:17 UTC (rev 284709)
+++ PKGBUILD2016-12-24 23:43:43 UTC (rev 284710)
@@ -33,7 +33,7 @@
 
 check() {
cd "$srcdir"/cryptography-$pkgver
-   PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.5:$PYTHONPATH" python setup.py ptr
+   PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" python setup.py ptr
 
cd "$srcdir"/cryptography-$pkgver-python2
PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" python2 setup.py 
ptr


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

2016-12-24 Thread Felix Yan
Date: Saturday, December 24, 2016 @ 23:42:17
  Author: felixonmars
Revision: 284709

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

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

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

Copied: python-wrapt/repos/staging-i686/PKGBUILD (from rev 284708, 
python-wrapt/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-12-24 23:42:17 UTC (rev 284709)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Troy C < rstrox -ta yahoo -tod com >
+
+pkgbase=python-wrapt
+pkgname=(python-wrapt python2-wrapt)
+pkgver=1.10.8
+pkgrel=2
+pkgdesc="A Python module for decorators, wrappers and monkey patching"
+arch=("i686" "x86_64")
+url="https://pypi.python.org/pypi/wrapt;
+license=("BSD")
+makedepends=('python' 'python2' 'git')
+checkdepends=('python-pytest' 'python2-pytest')
+source=("git+https://github.com/GrahamDumpleton/wrapt.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  cp -a wrapt{,-py2}
+}
+
+build() {
+  cd "$srcdir"/wrapt
+  python setup.py build
+
+  cd "$srcdir"/wrapt-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/wrapt
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" py.test
+
+  cd "$srcdir"/wrapt-py2
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" py.test2
+}
+
+package_python-wrapt() {
+  depends=('python')
+
+  cd wrapt
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-wrapt() {
+  depends=('python2')
+
+  cd wrapt-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: python-wrapt/repos/staging-x86_64/PKGBUILD (from rev 284708, 
python-wrapt/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-12-24 23:42:17 UTC (rev 284709)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Troy C < rstrox -ta yahoo -tod com >
+
+pkgbase=python-wrapt
+pkgname=(python-wrapt python2-wrapt)
+pkgver=1.10.8
+pkgrel=2
+pkgdesc="A Python module for decorators, wrappers and monkey patching"
+arch=("i686" "x86_64")
+url="https://pypi.python.org/pypi/wrapt;
+license=("BSD")
+makedepends=('python' 'python2' 'git')
+checkdepends=('python-pytest' 'python2-pytest')
+source=("git+https://github.com/GrahamDumpleton/wrapt.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  cp -a wrapt{,-py2}
+}
+
+build() {
+  cd "$srcdir"/wrapt
+  python setup.py build
+
+  cd "$srcdir"/wrapt-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/wrapt
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" py.test
+
+  cd "$srcdir"/wrapt-py2
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" py.test2
+}
+
+package_python-wrapt() {
+  depends=('python')
+
+  cd wrapt
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-wrapt() {
+  depends=('python2')
+
+  cd wrapt-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-12-24 Thread Felix Yan
Date: Saturday, December 24, 2016 @ 23:41:48
  Author: felixonmars
Revision: 284708

Python 3.6 rebuild

Modified:
  python-wrapt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-24 23:40:35 UTC (rev 284707)
+++ PKGBUILD2016-12-24 23:41:48 UTC (rev 284708)
@@ -5,7 +5,7 @@
 pkgbase=python-wrapt
 pkgname=(python-wrapt python2-wrapt)
 pkgver=1.10.8
-pkgrel=1
+pkgrel=2
 pkgdesc="A Python module for decorators, wrappers and monkey patching"
 arch=("i686" "x86_64")
 url="https://pypi.python.org/pypi/wrapt;


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

2016-12-24 Thread Antonio Rojas
Date: Saturday, December 24, 2016 @ 23:40:35
  Author: arojas
Revision: 284707

Python 3.6

Modified:
  python-wrapt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-24 23:40:02 UTC (rev 284706)
+++ PKGBUILD2016-12-24 23:40:35 UTC (rev 284707)
@@ -29,7 +29,7 @@
 
 check() {
   cd "$srcdir"/wrapt
-  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.5:$PYTHONPATH" py.test
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" py.test
 
   cd "$srcdir"/wrapt-py2
   PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" py.test2


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Saturday, December 24, 2016 @ 23:40:02
  Author: bpiotrowski
Revision: 284706

archrelease: copy trunk to staging-any

Added:
  python-incremental/repos/staging-any/
  python-incremental/repos/staging-any/PKGBUILD
(from rev 284705, python-incremental/trunk/PKGBUILD)

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

Copied: python-incremental/repos/staging-any/PKGBUILD (from rev 284705, 
python-incremental/trunk/PKGBUILD)
===
--- staging-any/PKGBUILD(rev 0)
+++ staging-any/PKGBUILD2016-12-24 23:40:02 UTC (rev 284706)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-incremental
+pkgname=('python-incremental' 'python2-incremental')
+pkgver=16.10.1
+pkgrel=2
+pkgdesc='A small library that versions your Python projects'
+arch=('any')
+license=('MIT')
+url='https://github.com/hawkowl/incremental'
+makedepends=('python-setuptools' 'python2-setuptools' 'python-click' 
'python2-click'
+ 'python-twisted' 'python2-twisted' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("git+https://github.com/hawkowl/incremental.git#tag=incremental-$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a incremental{,-py2}
+}
+
+build() {
+  cd "$srcdir"/incremental
+  python setup.py build
+
+  cd "$srcdir"/incremental-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/incremental
+  LC_CTYPE=en_US.UTF-8 python setup.py ptr
+
+  cd "$srcdir"/incremental-py2
+  python2 setup.py ptr
+}
+
+package_python-incremental() {
+  depends=('python-click' 'python-twisted')
+
+  cd incremental
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-incremental() {
+  depends=('python2-click' 'python2-twisted')
+
+  cd incremental-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Saturday, December 24, 2016 @ 23:39:55
  Author: bpiotrowski
Revision: 284705

Python 3.6 rebuild

Modified:
  python-incremental/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-24 23:38:37 UTC (rev 284704)
+++ PKGBUILD2016-12-24 23:39:55 UTC (rev 284705)
@@ -4,7 +4,7 @@
 pkgbase=python-incremental
 pkgname=('python-incremental' 'python2-incremental')
 pkgver=16.10.1
-pkgrel=1
+pkgrel=2
 pkgdesc='A small library that versions your Python projects'
 arch=('any')
 license=('MIT')


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

2016-12-24 Thread Antonio Rojas
Date: Saturday, December 24, 2016 @ 23:38:37
  Author: arojas
Revision: 284704

archrelease: copy trunk to staging-any

Added:
  python-constantly/repos/staging-any/
  python-constantly/repos/staging-any/PKGBUILD
(from rev 284703, python-constantly/trunk/PKGBUILD)

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

Copied: python-constantly/repos/staging-any/PKGBUILD (from rev 284703, 
python-constantly/trunk/PKGBUILD)
===
--- staging-any/PKGBUILD(rev 0)
+++ staging-any/PKGBUILD2016-12-24 23:38:37 UTC (rev 284704)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-constantly
+pkgname=('python-constantly' 'python2-constantly')
+pkgver=15.1.0
+pkgrel=2
+pkgdesc='Symbolic constants in Python'
+arch=('any')
+license=('MIT')
+url='https://github.com/twisted/constantly'
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-twisted' 
'python2-twisted')
+source=("git+https://github.com/twisted/constantly.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a constantly{,-py2}
+}
+
+build() {
+  cd "$srcdir"/constantly
+  python setup.py build
+
+  cd "$srcdir"/constantly-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/constantly
+  python setup.py ptr
+
+  cd "$srcdir"/constantly-py2
+  python2 setup.py ptr
+}
+
+package_python-constantly() {
+  depends=('python')
+
+  cd constantly
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-constantly() {
+  depends=('python2')
+
+  cd constantly-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-12-24 Thread Antonio Rojas
Date: Saturday, December 24, 2016 @ 23:38:12
  Author: arojas
Revision: 284703

Python 3.6 rebuild

Modified:
  python-constantly/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-24 23:36:40 UTC (rev 284702)
+++ PKGBUILD2016-12-24 23:38:12 UTC (rev 284703)
@@ -4,7 +4,7 @@
 pkgbase=python-constantly
 pkgname=('python-constantly' 'python2-constantly')
 pkgver=15.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Symbolic constants in Python'
 arch=('any')
 license=('MIT')


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

2016-12-24 Thread Antonio Rojas
Date: Saturday, December 24, 2016 @ 23:36:40
  Author: arojas
Revision: 284702

Python 3.6 rebuild

Modified:
  python-constantly/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-24 23:36:22 UTC (rev 284701)
+++ PKGBUILD2016-12-24 23:36:40 UTC (rev 284702)
@@ -28,10 +28,10 @@
 
 check() {
   cd "$srcdir"/constantly
-#  python setup.py ptr
+  python setup.py ptr
 
   cd "$srcdir"/constantly-py2
-#  python2 setup.py ptr
+  python2 setup.py ptr
 }
 
 package_python-constantly() {


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

2016-12-24 Thread Antonio Rojas
Date: Saturday, December 24, 2016 @ 23:36:22
  Author: arojas
Revision: 284701

Python 3.6 rebuild

Modified:
  python-constantly/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-24 23:33:36 UTC (rev 284700)
+++ PKGBUILD2016-12-24 23:36:22 UTC (rev 284701)
@@ -28,10 +28,10 @@
 
 check() {
   cd "$srcdir"/constantly
-  python setup.py ptr
+#  python setup.py ptr
 
   cd "$srcdir"/constantly-py2
-  python2 setup.py ptr
+#  python2 setup.py ptr
 }
 
 package_python-constantly() {


[arch-commits] Commit in python-lazy-object-proxy/trunk (PKGBUILD)

2016-12-24 Thread Bartłomiej Piotrowski
Date: Saturday, December 24, 2016 @ 23:33:25
  Author: bpiotrowski
Revision: 284699

Python 3.6 rebuild

Modified:
  python-lazy-object-proxy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-24 23:31:29 UTC (rev 284698)
+++ PKGBUILD2016-12-24 23:33:25 UTC (rev 284699)
@@ -4,7 +4,7 @@
 pkgbase=python-lazy-object-proxy
 pkgname=(python-lazy-object-proxy python2-lazy-object-proxy)
 pkgver=1.2.2
-pkgrel=1
+pkgrel=2
 pkgdesc='A fast and thorough lazy object proxy'
 arch=('i686' 'x86_64')
 url="https://github.com/ionelmc/python-lazy-object-proxy;


[arch-commits] Commit in python-lazy-object-proxy/repos (4 files)

2016-12-24 Thread Bartłomiej Piotrowski
Date: Saturday, December 24, 2016 @ 23:33:36
  Author: bpiotrowski
Revision: 284700

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

Added:
  python-lazy-object-proxy/repos/staging-i686/
  python-lazy-object-proxy/repos/staging-i686/PKGBUILD
(from rev 284699, python-lazy-object-proxy/trunk/PKGBUILD)
  python-lazy-object-proxy/repos/staging-x86_64/
  python-lazy-object-proxy/repos/staging-x86_64/PKGBUILD
(from rev 284699, python-lazy-object-proxy/trunk/PKGBUILD)

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

Copied: python-lazy-object-proxy/repos/staging-i686/PKGBUILD (from rev 284699, 
python-lazy-object-proxy/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-12-24 23:33:36 UTC (rev 284700)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-lazy-object-proxy
+pkgname=(python-lazy-object-proxy python2-lazy-object-proxy)
+pkgver=1.2.2
+pkgrel=2
+pkgdesc='A fast and thorough lazy object proxy'
+arch=('i686' 'x86_64')
+url="https://github.com/ionelmc/python-lazy-object-proxy;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-pytest-capturelog' 'python2-pytest-capturelog'
+  'python-pytest-benchmark' 'python2-pytest-benchmark')
+source=("git+https://github.com/ionelmc/python-lazy-object-proxy#tag=v$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  cp -a python-lazy-object-proxy{,-py2}
+}
+
+build() {
+  cd "${srcdir}/python-lazy-object-proxy"
+  python setup.py build
+
+  cd "${srcdir}/python-lazy-object-proxy-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "${srcdir}/python-lazy-object-proxy"
+  LC_CTYPE=en_US.UTF-8 
PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" py.test --ignore=src
+
+  cd "${srcdir}/python-lazy-object-proxy-py2"
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" py.test2 
--ignore=src
+}
+
+package_python-lazy-object-proxy() {
+  depends=("python")
+
+  cd "${srcdir}/python-lazy-object-proxy"
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-lazy-object-proxy() {
+  depends=("python2")
+
+  cd "${srcdir}/python-lazy-object-proxy"
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: python-lazy-object-proxy/repos/staging-x86_64/PKGBUILD (from rev 
284699, python-lazy-object-proxy/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-12-24 23:33:36 UTC (rev 284700)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-lazy-object-proxy
+pkgname=(python-lazy-object-proxy python2-lazy-object-proxy)
+pkgver=1.2.2
+pkgrel=2
+pkgdesc='A fast and thorough lazy object proxy'
+arch=('i686' 'x86_64')
+url="https://github.com/ionelmc/python-lazy-object-proxy;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-pytest-capturelog' 'python2-pytest-capturelog'
+  'python-pytest-benchmark' 'python2-pytest-benchmark')
+source=("git+https://github.com/ionelmc/python-lazy-object-proxy#tag=v$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  cp -a python-lazy-object-proxy{,-py2}
+}
+
+build() {
+  cd "${srcdir}/python-lazy-object-proxy"
+  python setup.py build
+
+  cd "${srcdir}/python-lazy-object-proxy-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "${srcdir}/python-lazy-object-proxy"
+  LC_CTYPE=en_US.UTF-8 
PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" py.test --ignore=src
+
+  cd "${srcdir}/python-lazy-object-proxy-py2"
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" py.test2 
--ignore=src
+}
+
+package_python-lazy-object-proxy() {
+  depends=("python")
+
+  cd "${srcdir}/python-lazy-object-proxy"
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-lazy-object-proxy() {
+  depends=("python2")
+
+  cd "${srcdir}/python-lazy-object-proxy"
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in python-lazy-object-proxy/trunk (PKGBUILD)

2016-12-24 Thread Antonio Rojas
Date: Saturday, December 24, 2016 @ 23:31:29
  Author: arojas
Revision: 284698

Python 3.6

Modified:
  python-lazy-object-proxy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-24 23:21:22 UTC (rev 284697)
+++ PKGBUILD2016-12-24 23:31:29 UTC (rev 284698)
@@ -29,7 +29,7 @@
 
 check() {
   cd "${srcdir}/python-lazy-object-proxy"
-  LC_CTYPE=en_US.UTF-8 
PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.5:$PYTHONPATH" py.test --ignore=src
+  LC_CTYPE=en_US.UTF-8 
PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" py.test --ignore=src
 
   cd "${srcdir}/python-lazy-object-proxy-py2"
   PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" py.test2 
--ignore=src


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

2016-12-24 Thread Levente Polyak
Date: Saturday, December 24, 2016 @ 23:24:15
  Author: anthraxx
Revision: 201781

archrelease: copy trunk to community-x86_64

Added:
  diffoscope/repos/community-x86_64/PKGBUILD
(from rev 201780, diffoscope/trunk/PKGBUILD)
Deleted:
  diffoscope/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-24 23:24:05 UTC (rev 201780)
+++ PKGBUILD2016-12-24 23:24:15 UTC (rev 201781)
@@ -1,73 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=diffoscope
-pkgver=65
-pkgrel=1
-pkgdesc='Tool for in-depth comparison of files, archives, and directories'
-url='https://diffoscope.org/'
-arch=('x86_64')
-license=('GPL3')
-depends=('python-magic' 'python-libarchive-c' 'python-setuptools')
-# TODO: python-argcomplete
-optdepends=(
-  'acl: access control list utilities support'
-  'binutils: binary utilities support'
-  'bzip2: bzip2 utilities support'
-  'cdrkit: ISO utilities support'
-  'colord: ICC profiles support'
-  'cpio: cpio archive support'
-  'diffutils: diff utilities support'
-  'e2fsprogs: Ext2/3/4 filesystem utilities support'
-  'enjarify: Android dex file support'
-  'fpc: Free Pascal utilities support'
-  'java-environment: java utilities support'
-  #'libcaca: image compare support'
-  'llvm: LLVM bitcode files support'
-  'fontforge: bitmap font utilities support'
-  'gettext: GNU internationalization utilities support'
-  'ghc: haskell utilities support'
-  'gnupg: GNU privacy guard support'
-  'mono: mono support'
-  'mono-tools: mono utilities support'
-  'openssh: OpenSSH key comparing support'
-  'poppler: PDF utilities support'
-  'sqlite: SQLite support'
-  'squashfs-tools: squashfs filesystem support'
-  #'python-guestfs: guestfs filesystem support'
-  'tlsh: fuzzy matching supprt'
-  'unzip: zip utilities support'
-  'gzip: gzip utilities support'
-  'tar: tar utilities support'
-  'vim: Vi IMproved (xxd) utilities support'
-  'xz: XZ and LZMA utilities support'
-)
-checkdepends=(
-  'python-pytest' 'acl' 'binutils' 'bzip2' 'cdrkit' 'cpio' 'diffutils' 
'e2fsprogs' 'enjarify' 'java-environment>=8' 'fontforge' 'gettext' 'ghc' 'gnupg'
-  'mono' 'mono-tools' 'poppler' 'sqlite' 'squashfs-tools' 'tlsh' 'unzip' 
'gzip' 'tar' 'vim' 'xz' 'llvm' 'colord' 'fpc' 'openssh')
-source=(${pkgname}-${pkgver}.tar.xz::https://anonscm.debian.org/cgit/reproducible/${pkgname}.git/snapshot/${pkgname}-${pkgver}.tar.xz)
-sha512sums=('bb6939e71c77f195a656cf3f5b6eb3531da00fdc49ea22c2c36b4b51e7b2dc3f7f53c2628f8ba4dd6bbe1f57a075fad4eabe53b8a1a0f4c436b28691adff06f6')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed '/python-magic/d' -i setup.py
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python setup.py build
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  # TODO: readd fpc and dex
-  # TODO: colord test fails with lcms2 >= 2.8
-  PYTHONPATH=".:${PYTHONPATH}" py.test -k 'not test_icc and not test_ppu and 
not test_dex'
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python setup.py install --skip-build -O1 --root="${pkgdir}"
-  install -Dm 644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README"
-}
-
-# vim: ts=2 sw=2 et:

Copied: diffoscope/repos/community-x86_64/PKGBUILD (from rev 201780, 
diffoscope/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-24 23:24:15 UTC (rev 201781)
@@ -0,0 +1,73 @@
+# Maintainer: Levente Polyak 
+
+pkgname=diffoscope
+pkgver=66
+pkgrel=1
+pkgdesc='Tool for in-depth comparison of files, archives, and directories'
+url='https://diffoscope.org/'
+arch=('x86_64')
+license=('GPL3')
+depends=('python-magic' 'python-libarchive-c' 'python-setuptools')
+# TODO: python-argcomplete
+optdepends=(
+  'acl: access control list utilities support'
+  'binutils: binary utilities support'
+  'bzip2: bzip2 utilities support'
+  'cdrkit: ISO utilities support'
+  'colord: ICC profiles support'
+  'cpio: cpio archive support'
+  'diffutils: diff utilities support'
+  'e2fsprogs: Ext2/3/4 filesystem utilities support'
+  'enjarify: Android dex file support'
+  'fpc: Free Pascal utilities support'
+  'java-environment: java utilities support'
+  #'libcaca: image compare support'
+  'llvm: LLVM bitcode files support'
+  'fontforge: bitmap font utilities support'
+  'gettext: GNU internationalization utilities support'
+  'ghc: haskell utilities support'
+  'gnupg: GNU privacy guard support'
+  'mono: mono support'
+  'mono-tools: mono utilities support'
+  'openssh: OpenSSH key comparing support'
+  'poppler: PDF utilities support'
+  'sqlite: SQLite support'
+  'squashfs-tools: squashfs filesystem support'
+  #'python-guestfs: guestfs filesystem support'
+  'tlsh: fuzzy matching supprt'
+  'unzip: zip utilities 

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

2016-12-24 Thread Levente Polyak
Date: Saturday, December 24, 2016 @ 23:24:05
  Author: anthraxx
Revision: 201780

upgpkg: diffoscope 66-1

Modified:
  diffoscope/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-24 23:16:36 UTC (rev 201779)
+++ PKGBUILD2016-12-24 23:24:05 UTC (rev 201780)
@@ -1,7 +1,7 @@
 # Maintainer: Levente Polyak 
 
 pkgname=diffoscope
-pkgver=65
+pkgver=66
 pkgrel=1
 pkgdesc='Tool for in-depth comparison of files, archives, and directories'
 url='https://diffoscope.org/'
@@ -45,7 +45,7 @@
   'python-pytest' 'acl' 'binutils' 'bzip2' 'cdrkit' 'cpio' 'diffutils' 
'e2fsprogs' 'enjarify' 'java-environment>=8' 'fontforge' 'gettext' 'ghc' 'gnupg'
   'mono' 'mono-tools' 'poppler' 'sqlite' 'squashfs-tools' 'tlsh' 'unzip' 
'gzip' 'tar' 'vim' 'xz' 'llvm' 'colord' 'fpc' 'openssh')
 
source=(${pkgname}-${pkgver}.tar.xz::https://anonscm.debian.org/cgit/reproducible/${pkgname}.git/snapshot/${pkgname}-${pkgver}.tar.xz)
-sha512sums=('bb6939e71c77f195a656cf3f5b6eb3531da00fdc49ea22c2c36b4b51e7b2dc3f7f53c2628f8ba4dd6bbe1f57a075fad4eabe53b8a1a0f4c436b28691adff06f6')
+sha512sums=('e74b0a3110935974abc26d8ffeebe661fe7fb22304d9fa70a1dcde5de15921786e932ad19244f2b318f6ee6cbec4ce1b337562b27b1a990d998a7291f0fca9c7')
 
 prepare() {
   cd ${pkgname}-${pkgver}
@@ -59,9 +59,9 @@
 
 check() {
   cd ${pkgname}-${pkgver}
-  # TODO: readd fpc and dex
+  # TODO: readd fpc
   # TODO: colord test fails with lcms2 >= 2.8
-  PYTHONPATH=".:${PYTHONPATH}" py.test -k 'not test_icc and not test_ppu and 
not test_dex'
+  PYTHONPATH=".:${PYTHONPATH}" py.test -k 'not test_icc and not test_ppu'
 }
 
 package() {


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Saturday, December 24, 2016 @ 23:21:13
  Author: bpiotrowski
Revision: 284696

Python 3.6 rebuild

Modified:
  python-numpy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-24 23:14:55 UTC (rev 284695)
+++ PKGBUILD2016-12-24 23:21:13 UTC (rev 284696)
@@ -7,7 +7,7 @@
 pkgbase=python-numpy
 pkgname=('python2-numpy' 'python-numpy')
 pkgver=1.11.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Scientific tools for Python"
 arch=('i686' 'x86_64')
 license=('custom')


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Saturday, December 24, 2016 @ 23:21:22
  Author: bpiotrowski
Revision: 284697

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

Added:
  python-numpy/repos/staging-i686/
  python-numpy/repos/staging-i686/PKGBUILD
(from rev 284696, python-numpy/trunk/PKGBUILD)
  python-numpy/repos/staging-i686/site.cfg
(from rev 284696, python-numpy/trunk/site.cfg)
  python-numpy/repos/staging-x86_64/
  python-numpy/repos/staging-x86_64/PKGBUILD
(from rev 284696, python-numpy/trunk/PKGBUILD)
  python-numpy/repos/staging-x86_64/site.cfg
(from rev 284696, python-numpy/trunk/site.cfg)

-+
 staging-i686/PKGBUILD   |   85 ++
 staging-i686/site.cfg   |4 ++
 staging-x86_64/PKGBUILD |   85 ++
 staging-x86_64/site.cfg |4 ++
 4 files changed, 178 insertions(+)

Copied: python-numpy/repos/staging-i686/PKGBUILD (from rev 284696, 
python-numpy/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-12-24 23:21:22 UTC (rev 284697)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Maintainer: Felix Yan 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Angel 'angvp' Velasquez  
+
+pkgbase=python-numpy
+pkgname=('python2-numpy' 'python-numpy')
+pkgver=1.11.2
+pkgrel=2
+pkgdesc="Scientific tools for Python"
+arch=('i686' 'x86_64')
+license=('custom')
+url="http://www.numpy.org/;
+makedepends=('cblas' 'lapack' 'python' 'python2' 'python-setuptools' 
'python2-setuptools' 'gcc-fortran'
+   'python-nose' 'python2-nose' 'cython' 'cython2')
+options=('staticlibs')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;
 'site.cfg')
+md5sums=('90347ff0b20bd00f2547ef4950ab3523'
+ '6ac5f9dac5d4c0e25a2eba6c98bf5b3c')
+
+prepare() {
+  cp site.cfg numpy-$pkgver
+  cp -a numpy-$pkgver numpy-py2-$pkgver
+  cd numpy-py2-$pkgver
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  export LDFLAGS="$LDFLAGS -shared"
+
+  echo "Building Python2"
+  cd numpy-py2-$pkgver
+  python2 setup.py config_fc --fcompiler=gnu95 build
+
+  echo "Building Python3"
+  cd ../numpy-$pkgver
+  python setup.py config_fc --fcompiler=gnu95 build
+}
+
+package_python2-numpy() {
+  depends=('lapack' 'python2' 'cblas')
+  optdepends=('python2-nose: testsuite')
+
+  _pyver=2.7
+
+  export ATLAS=None
+  export LDFLAGS="$LDFLAGS -shared"
+
+  cd numpy-py2-$pkgver
+  python2 setup.py config_fc --fcompiler=gnu95 install --prefix=/usr 
--root="${pkgdir}" --optimize=1
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/python2-numpy"
+  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python2-numpy/"
+
+  install -m755 -d "${pkgdir}/usr/include/python${_pyver}"
+  ln -sf /usr/lib/python${_pyver}/site-packages/numpy/core/include/numpy 
"${pkgdir}/usr/include/python${_pyver}/numpy"
+}
+
+package_python-numpy() {
+  depends=('lapack' 'python' 'cblas')
+  optdepends=('python-nose: testsuite')
+  provides=("python3-numpy=${pkgver}")
+  replaces=('python3-numpy')
+  conflicts=('python3-numpy')
+
+  _pyver=3.6
+  _pyinc=3.6m
+
+  export ATLAS=None
+  export LDFLAGS="$LDFLAGS -shared"
+
+  cd numpy-$pkgver
+  python setup.py config_fc --fcompiler=gnu95 install --prefix=/usr 
--root="${pkgdir}" --optimize=1
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
+  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
+
+  install -m755 -d "${pkgdir}/usr/include/python${_pyinc}"
+  ln -sf /usr/lib/python${_pyver}/site-packages/numpy/core/include/numpy 
"${pkgdir}/usr/include/python${_pyinc}/numpy"
+}

Copied: python-numpy/repos/staging-i686/site.cfg (from rev 284696, 
python-numpy/trunk/site.cfg)
===
--- staging-i686/site.cfg   (rev 0)
+++ staging-i686/site.cfg   2016-12-24 23:21:22 UTC (rev 284697)
@@ -0,0 +1,4 @@
+[atlas]
+atlas_libs = cblas
+libraries = cblas
+

Copied: python-numpy/repos/staging-x86_64/PKGBUILD (from rev 284696, 
python-numpy/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-12-24 23:21:22 UTC (rev 284697)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Maintainer: Felix Yan 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Angel 'angvp' Velasquez  
+
+pkgbase=python-numpy

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

2016-12-24 Thread Felix Yan
Date: Saturday, December 24, 2016 @ 23:16:08
  Author: felixonmars
Revision: 201778

Python 3.6 rebuild

Modified:
  python-pillow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-24 23:13:57 UTC (rev 201777)
+++ PKGBUILD2016-12-24 23:16:08 UTC (rev 201778)
@@ -5,7 +5,7 @@
 pkgbase=python-pillow
 pkgname=(python-pillow python2-pillow)
 pkgver=3.4.2
-pkgrel=1
+pkgrel=2
 # consider splitting out sane if this gets weird enough
 _sanever=2.8.2
 _appname=Pillow


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

2016-12-24 Thread Felix Yan
Date: Saturday, December 24, 2016 @ 23:16:36
  Author: felixonmars
Revision: 201779

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

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

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

Copied: python-pillow/repos/community-staging-i686/PKGBUILD (from rev 201778, 
python-pillow/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-12-24 23:16:36 UTC (rev 201779)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: minder
+
+pkgbase=python-pillow
+pkgname=(python-pillow python2-pillow)
+pkgver=3.4.2
+pkgrel=2
+# consider splitting out sane if this gets weird enough
+_sanever=2.8.2
+_appname=Pillow
+_py2basever=2.7
+_py3basever=3.6m
+pkgdesc="Python Imaging Library (PIL) fork. Python3 version."
+arch=('i686' 'x86_64')
+url="http://python-pillow.github.io/;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'lcms2' 'libwebp' 
'openjpeg2' 'tk' 'sane')
+source=("https://files.pythonhosted.org/packages/source/P/$_appname/$_appname-$pkgver.tar.gz;
+
"Sane-$_sanever.tar.gz::https://github.com/python-pillow/Sane/archive/v$_sanever.tar.gz;)
+md5sums=('09ebb92ec5cbba13ff1acf139caf6b66'
+ '295f1c745ab4da6a34b524019b181978')
+
+# future optional things:
+# libimagequant
+
+prepare() {
+  cd "$srcdir"
+  # allow sane to build
+  sed -i "s|os.path.join|'../libImaging', &|" "$srcdir/Sane-$_sanever/setup.py"
+  cp -r "$srcdir/Sane-$_sanever" "$srcdir/$_appname-$pkgver/Sane"
+  # py2 and py3
+  cp -r "$srcdir/$_appname-$pkgver" "$srcdir/${_appname}2-$pkgver"
+}  
+
+package_python-pillow() {
+  depends=('python' 'lcms2' 'libwebp' 'openjpeg2')
+  optdepends=('tk: for the ImageTK module'
+  'sane: for the Sane module'
+  'python-pyqt4: for the ImageQt module')
+  cd "$srcdir/$_appname-$pkgver"
+  python3 setup.py install --root="$pkgdir/" --optimize=0
+  pushd Sane
+python3 setup.py install --root="$pkgdir/" --optimize=0
+  popd
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  install -dm755 "$pkgdir/usr/include/python$_py3basever/"
+  install -m644 -t "$pkgdir/usr/include/python$_py3basever/" libImaging/*.h
+
+  # clean up bins
+  cd "$pkgdir/usr/bin"
+  for f in *.py; do
+mv "$f" "${f%.py}"
+  done
+}
+
+package_python2-pillow() {
+  pkgdesc="Python Imaging Library (PIL) fork. Python2 version."
+  depends=('python2' 'lcms2' 'libwebp' 'openjpeg2')
+  optdepends=('tk: for the ImageTK module'
+  'sane: for the Sane module'
+  'python2-pyqt4: for the ImageQt module')
+  provides=('python-imaging' 'python2-imaging')
+  conflicts=('python-imaging' 'python2-imaging')
+  cd "$srcdir/${_appname}2-$pkgver"
+  sed -i 's|python$|python2|' PIL/OleFileIO.py
+  python2 setup.py install --root="$pkgdir/" --optimize=0
+  pushd Sane
+python2 setup.py install --root="$pkgdir/" --optimize=0
+  popd
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  install -dm755 "$pkgdir/usr/include/python$_py2basever/"
+  install -m644 -t "$pkgdir/usr/include/python$_py2basever/" libImaging/*.h
+
+  # clean up bins
+  cd "$pkgdir/usr/bin"
+  for f in *.py; do
+mv "$f" "${f%.py}2"
+  done
+}
+

Copied: python-pillow/repos/community-staging-x86_64/PKGBUILD (from rev 201778, 
python-pillow/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-12-24 23:16:36 UTC (rev 201779)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: minder
+
+pkgbase=python-pillow
+pkgname=(python-pillow python2-pillow)
+pkgver=3.4.2
+pkgrel=2
+# consider splitting out sane if this gets weird enough
+_sanever=2.8.2
+_appname=Pillow
+_py2basever=2.7
+_py3basever=3.6m
+pkgdesc="Python Imaging Library (PIL) fork. Python3 version."
+arch=('i686' 'x86_64')
+url="http://python-pillow.github.io/;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'lcms2' 'libwebp' 
'openjpeg2' 'tk' 'sane')
+source=("https://files.pythonhosted.org/packages/source/P/$_appname/$_appname-$pkgver.tar.gz;
+
"Sane-$_sanever.tar.gz::https://github.com/python-pillow/Sane/archive/v$_sanever.tar.gz;)
+md5sums=('09ebb92ec5cbba13ff1acf139caf6b66'
+ 

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

2016-12-24 Thread Antonio Rojas
Date: Saturday, December 24, 2016 @ 23:14:55
  Author: arojas
Revision: 284695

Python 3.6

Modified:
  python-numpy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-24 19:10:06 UTC (rev 284694)
+++ PKGBUILD2016-12-24 23:14:55 UTC (rev 284695)
@@ -68,8 +68,8 @@
   replaces=('python3-numpy')
   conflicts=('python3-numpy')
 
-  _pyver=3.5
-  _pyinc=3.5m
+  _pyver=3.6
+  _pyinc=3.6m
 
   export ATLAS=None
   export LDFLAGS="$LDFLAGS -shared"


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

2016-12-24 Thread Antonio Rojas
Date: Saturday, December 24, 2016 @ 23:13:57
  Author: arojas
Revision: 201777

Python 3.6

Modified:
  python-pillow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-24 18:53:09 UTC (rev 201776)
+++ PKGBUILD2016-12-24 23:13:57 UTC (rev 201777)
@@ -10,7 +10,7 @@
 _sanever=2.8.2
 _appname=Pillow
 _py2basever=2.7
-_py3basever=3.5m
+_py3basever=3.6m
 pkgdesc="Python Imaging Library (PIL) fork. Python3 version."
 arch=('i686' 'x86_64')
 url="http://python-pillow.github.io/;


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

2016-12-24 Thread Evangelos Foutras
Date: Saturday, December 24, 2016 @ 19:10:06
  Author: foutrelis
Revision: 284694

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

Added:
  twisted/repos/staging-i686/
  twisted/repos/staging-i686/PKGBUILD
(from rev 284693, twisted/trunk/PKGBUILD)
  twisted/repos/staging-x86_64/
  twisted/repos/staging-x86_64/PKGBUILD
(from rev 284693, twisted/trunk/PKGBUILD)

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

Copied: twisted/repos/staging-i686/PKGBUILD (from rev 284693, 
twisted/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-12-24 19:10:06 UTC (rev 284694)
@@ -0,0 +1,90 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 
+# Contributor:  Douglas Soares de Andrade 
+
+pkgbase=twisted
+pkgname=(python-twisted python2-twisted)
+pkgver=16.6.0
+pkgrel=2
+pkgdesc="Asynchronous networking framework written in Python"
+arch=('i686' 'x86_64')
+url="http://twistedmatrix.com/;
+license=('MIT')
+makedepends=('python-zope-interface' 'python2-zope-interface' 'git'
+ 'python-setuptools' 'python2-setuptools' 'python-service-identity'
+ 'python2-service-identity' 'python-incremental' 
'python2-incremental'
+ 'python-constantly' 'python2-constantly')
+checkdepends=('subversion' 'python2-sphinx' 'pygtk' 'xorg-server-xvfb' 'tk' 
'openssh'
+  'python-gobject' 'python2-gobject' 'python-gobject2' 
'python2-gobject2'
+  'python2-soappy' 'python-subunit' 'python2-subunit' 'python-h2' 
'python2-h2'
+  'python-service-identity' 'python2-service-identity' 
'python-crypto' 'python2-crypto')
+source=("git+https://github.com/twisted/twisted.git#tag=twisted-$pkgver;)
+sha1sums=('SKIP')
+
+prepare() {
+  cp -a twisted{,-py2}
+
+  sed -i 's:^#!.*bin.*python:#!/usr/bin/python2:' \
+twisted-py2/src/twisted/mail/test/pop3testserver.py \
+twisted-py2/src/twisted/trial/test/scripttest.py
+}
+
+build() {
+  cd "$srcdir"/twisted
+  python setup.py build
+
+  cd "$srcdir"/twisted-py2
+  python2 setup.py build
+}
+
+check() {
+  export LC_CTYPE=en_US.UTF-8
+
+  cd "$srcdir"/twisted
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" xvfb-run python -m 
twisted.trial twisted || warning "Tests failed"
+
+  cd "$srcdir"/twisted-py2
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" xvfb-run python2 -m 
twisted.trial twisted || warning "Tests failed"
+}
+
+package_python-twisted() {
+  depends=('python-zope-interface' 'python-incremental' 'python-constantly')
+  optdepends=('python-pyopenssl: for TLS client hostname verification'
+  'python-service-identity: for TLS client hostname verification'
+  'python-idna: for TLS client hostname verification'
+  'python-cryptography: for using conch'
+  'python-h2: for http2 support'
+  'tk: for using tkconch')
+
+  cd twisted
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  # twisted in python 3 supports only few command line tools for now.
+  # Let's rename the tools the other way round after the python 3 version 
supports all.
+  for name in trial twistd twist ckeygen; do
+mv "$pkgdir"/usr/bin/${name}{,3}
+  done
+
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-twisted() {
+  depends=('python2-zope-interface' 'python2-incremental' 'python2-constantly')
+  optdepends=('python2-pyopenssl: for TLS client hostname verification'
+  'python2-service-identity: for TLS client hostname verification'
+  'python2-idna: for TLS client hostname verification'
+  'python2-cryptography: for using conch'
+  'python2-h2: for http2 support'
+  'python2-soappy: for twisted.web.soap'
+  'pygtk: for using manhole'
+  'tk: for using tkconch')
+  provides=("twisted=$pkgver")
+  conflicts=('twisted<14.0.0')
+  replaces=('twisted<14.0.0')
+
+  cd twisted-py2
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: twisted/repos/staging-x86_64/PKGBUILD (from rev 284693, 
twisted/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-12-24 19:10:06 UTC (rev 284694)
@@ -0,0 +1,90 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Juergen Hoetzel 

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

2016-12-24 Thread Evangelos Foutras
Date: Saturday, December 24, 2016 @ 19:09:57
  Author: foutrelis
Revision: 284693

Python 3.6 rebuild

Modified:
  twisted/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-24 19:09:16 UTC (rev 284692)
+++ PKGBUILD2016-12-24 19:09:57 UTC (rev 284693)
@@ -7,7 +7,7 @@
 pkgbase=twisted
 pkgname=(python-twisted python2-twisted)
 pkgver=16.6.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Asynchronous networking framework written in Python"
 arch=('i686' 'x86_64')
 url="http://twistedmatrix.com/;


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

2016-12-24 Thread Sébastien Luttringer
Date: Saturday, December 24, 2016 @ 19:09:16
  Author: seblu
Revision: 284692

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

Added:
  libnftnl/repos/testing-i686/
  libnftnl/repos/testing-i686/PKGBUILD
(from rev 284691, libnftnl/trunk/PKGBUILD)
  libnftnl/repos/testing-x86_64/
  libnftnl/repos/testing-x86_64/PKGBUILD
(from rev 284691, libnftnl/trunk/PKGBUILD)

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

Copied: libnftnl/repos/testing-i686/PKGBUILD (from rev 284691, 
libnftnl/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-12-24 19:09:16 UTC (rev 284692)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgname=libnftnl
+pkgver=1.0.7
+pkgrel=1
+pkgdesc='Netfilter library providing interface to the nf_tables subsystem'
+arch=('i686' 'x86_64')
+url='https://netfilter.org/projects/libnftnl/'
+license=('GPL2')
+depends=('libmnl')
+validpgpkeys=('C09DB2063F1D7034BA6152ADAB4655A126D292E4') # Netfilter Core Team
+# 2016-11-03: https sources download is broken with curl
+source=("http://netfilter.org/projects/libnftnl/files/libnftnl-$pkgver.tar.bz2"{,.sig})
+sha1sums=('381b2b3cbb3fad186cb3f57bbf32d70f0b3c3c8e'
+  'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: libnftnl/repos/testing-x86_64/PKGBUILD (from rev 284691, 
libnftnl/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-12-24 19:09:16 UTC (rev 284692)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgname=libnftnl
+pkgver=1.0.7
+pkgrel=1
+pkgdesc='Netfilter library providing interface to the nf_tables subsystem'
+arch=('i686' 'x86_64')
+url='https://netfilter.org/projects/libnftnl/'
+license=('GPL2')
+depends=('libmnl')
+validpgpkeys=('C09DB2063F1D7034BA6152ADAB4655A126D292E4') # Netfilter Core Team
+# 2016-11-03: https sources download is broken with curl
+source=("http://netfilter.org/projects/libnftnl/files/libnftnl-$pkgver.tar.bz2"{,.sig})
+sha1sums=('381b2b3cbb3fad186cb3f57bbf32d70f0b3c3c8e'
+  'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-12-24 Thread Sébastien Luttringer
Date: Saturday, December 24, 2016 @ 19:08:44
  Author: seblu
Revision: 284691

upgpkg: libnftnl 1.0.7-1

Modified:
  libnftnl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-24 19:05:39 UTC (rev 284690)
+++ PKGBUILD2016-12-24 19:08:44 UTC (rev 284691)
@@ -2,7 +2,7 @@
 # Maintainer: Sébastien Luttringer
 
 pkgname=libnftnl
-pkgver=1.0.6
+pkgver=1.0.7
 pkgrel=1
 pkgdesc='Netfilter library providing interface to the nf_tables subsystem'
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 validpgpkeys=('C09DB2063F1D7034BA6152ADAB4655A126D292E4') # Netfilter Core Team
 # 2016-11-03: https sources download is broken with curl
 
source=("http://netfilter.org/projects/libnftnl/files/libnftnl-$pkgver.tar.bz2"{,.sig})
-sha1sums=('453f1c2d99d219baeca4ba42aa874f02d2ddf2f7'
+sha1sums=('381b2b3cbb3fad186cb3f57bbf32d70f0b3c3c8e'
   'SKIP')
 
 build() {


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

2016-12-24 Thread Sébastien Luttringer
Date: Saturday, December 24, 2016 @ 19:05:39
  Author: seblu
Revision: 284690

db-move: moved grep from [testing] to [core] (i686, x86_64)

Added:
  grep/repos/core-i686/PKGBUILD
(from rev 284689, grep/repos/testing-i686/PKGBUILD)
  grep/repos/core-x86_64/PKGBUILD
(from rev 284689, grep/repos/testing-x86_64/PKGBUILD)
Deleted:
  grep/repos/core-i686/PKGBUILD
  grep/repos/core-x86_64/PKGBUILD
  grep/repos/testing-i686/
  grep/repos/testing-x86_64/

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

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2016-12-24 19:05:31 UTC (rev 284689)
+++ core-i686/PKGBUILD  2016-12-24 19:05:39 UTC (rev 284690)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer 
-# Contributor: Allan McRae 
-# Contributor: judd 
-
-pkgname=grep
-pkgver=2.26
-pkgrel=1
-pkgdesc='A string search utility'
-arch=('i686' 'x86_64')
-license=('GPL3')
-url='http://www.gnu.org/software/grep/grep.html'
-groups=('base' 'base-devel')
-depends=('glibc' 'pcre')
-makedepends=('texinfo')
-validpgpkeys=('155D3FC500C834486D1EEA677FD9FCCB000B') # Jim Meyering
-source=("ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-md5sums=('afdd61c7221434722671baf002ac9267'
- 'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --without-included-regex
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: grep/repos/core-i686/PKGBUILD (from rev 284689, 
grep/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2016-12-24 19:05:39 UTC (rev 284690)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sébastien Luttringer 
+# Contributor: Allan McRae 
+# Contributor: judd 
+
+pkgname=grep
+pkgver=2.27
+pkgrel=1
+pkgdesc='A string search utility'
+arch=('i686' 'x86_64')
+license=('GPL3')
+url='https://www.gnu.org/software/grep/'
+groups=('base' 'base-devel')
+depends=('glibc' 'pcre')
+makedepends=('texinfo')
+validpgpkeys=('155D3FC500C834486D1EEA677FD9FCCB000B') # Jim Meyering
+source=("https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+md5sums=('6138dd227c39d4a25f81eea76a44d4cb'
+ 'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --without-included-regex
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2016-12-24 19:05:31 UTC (rev 284689)
+++ core-x86_64/PKGBUILD2016-12-24 19:05:39 UTC (rev 284690)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer 
-# Contributor: Allan McRae 
-# Contributor: judd 
-
-pkgname=grep
-pkgver=2.26
-pkgrel=1
-pkgdesc='A string search utility'
-arch=('i686' 'x86_64')
-license=('GPL3')
-url='http://www.gnu.org/software/grep/grep.html'
-groups=('base' 'base-devel')
-depends=('glibc' 'pcre')
-makedepends=('texinfo')
-validpgpkeys=('155D3FC500C834486D1EEA677FD9FCCB000B') # Jim Meyering
-source=("ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-md5sums=('afdd61c7221434722671baf002ac9267'
- 'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --without-included-regex
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: grep/repos/core-x86_64/PKGBUILD (from rev 284689, 
grep/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2016-12-24 19:05:39 UTC (rev 284690)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sébastien Luttringer 
+# Contributor: Allan McRae 
+# Contributor: judd 
+
+pkgname=grep
+pkgver=2.27
+pkgrel=1
+pkgdesc='A string search utility'
+arch=('i686' 'x86_64')
+license=('GPL3')
+url='https://www.gnu.org/software/grep/'
+groups=('base' 'base-devel')
+depends=('glibc' 'pcre')
+makedepends=('texinfo')
+validpgpkeys=('155D3FC500C834486D1EEA677FD9FCCB000B') # Jim Meyering
+source=("https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+md5sums=('6138dd227c39d4a25f81eea76a44d4cb'
+ 'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+ 

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

2016-12-24 Thread Sébastien Luttringer
Date: Saturday, December 24, 2016 @ 19:05:31
  Author: seblu
Revision: 284689

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

Added:
  btrfs-progs/repos/testing-i686/
  btrfs-progs/repos/testing-i686/PKGBUILD
(from rev 284688, btrfs-progs/trunk/PKGBUILD)
  btrfs-progs/repos/testing-i686/btrfs-progs.install
(from rev 284688, btrfs-progs/trunk/btrfs-progs.install)
  btrfs-progs/repos/testing-i686/btrfs-scrub@.service
(from rev 284688, btrfs-progs/trunk/btrfs-scrub@.service)
  btrfs-progs/repos/testing-i686/btrfs-scrub@.timer
(from rev 284688, btrfs-progs/trunk/btrfs-scrub@.timer)
  btrfs-progs/repos/testing-i686/initcpio-hook-btrfs
(from rev 284688, btrfs-progs/trunk/initcpio-hook-btrfs)
  btrfs-progs/repos/testing-i686/initcpio-install-btrfs
(from rev 284688, btrfs-progs/trunk/initcpio-install-btrfs)
  btrfs-progs/repos/testing-x86_64/
  btrfs-progs/repos/testing-x86_64/PKGBUILD
(from rev 284688, btrfs-progs/trunk/PKGBUILD)
  btrfs-progs/repos/testing-x86_64/btrfs-progs.install
(from rev 284688, btrfs-progs/trunk/btrfs-progs.install)
  btrfs-progs/repos/testing-x86_64/btrfs-scrub@.service
(from rev 284688, btrfs-progs/trunk/btrfs-scrub@.service)
  btrfs-progs/repos/testing-x86_64/btrfs-scrub@.timer
(from rev 284688, btrfs-progs/trunk/btrfs-scrub@.timer)
  btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs
(from rev 284688, btrfs-progs/trunk/initcpio-hook-btrfs)
  btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs
(from rev 284688, btrfs-progs/trunk/initcpio-install-btrfs)

---+
 testing-i686/PKGBUILD |   61 
 testing-i686/btrfs-progs.install  |   15 +++
 testing-i686/btrfs-scrub@.service |7 +++
 testing-i686/btrfs-scrub@.timer   |   10 +
 testing-i686/initcpio-hook-btrfs  |7 +++
 testing-i686/initcpio-install-btrfs   |   17 
 testing-x86_64/PKGBUILD   |   61 
 testing-x86_64/btrfs-progs.install|   15 +++
 testing-x86_64/btrfs-scrub@.service   |7 +++
 testing-x86_64/btrfs-scrub@.timer |   10 +
 testing-x86_64/initcpio-hook-btrfs|7 +++
 testing-x86_64/initcpio-install-btrfs |   17 
 12 files changed, 234 insertions(+)

Copied: btrfs-progs/repos/testing-i686/PKGBUILD (from rev 284688, 
btrfs-progs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-12-24 19:05:31 UTC (rev 284689)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Sébastien "Seblu" Luttringer 
+# Contributor: Tom Gundersen 
+# Contributor: Tobias Powalowski 
+
+pkgname=btrfs-progs
+pkgver=4.9
+pkgrel=1
+pkgdesc='Btrfs filesystem utilities'
+arch=('i686' 'x86_64')
+depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib')
+makedepends=('git' 'asciidoc' 'xmlto' 'systemd')
+url='https://btrfs.wiki.kernel.org'
+replaces=('btrfs-progs-unstable')
+conflicts=('btrfs-progs-unstable')
+provides=('btrfs-progs-unstable')
+license=('GPL2')
+validpgpkeys=('F2B41200C54EFB30380C1756C565D5F9D76D583B')
+source=("https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v$pkgver.tar."{sign,xz}
+'initcpio-install-btrfs'
+'initcpio-hook-btrfs'
+'btrfs-scrub@.service'
+'btrfs-scrub@.timer')
+install=btrfs-progs.install
+options=(!staticlibs)
+md5sums=('SKIP'
+ '5ba59ab2cf6d35a86920ab439bc99cb8'
+ '7241ba3a4286d08da0d50b7176941112'
+ 'b09688a915a0ec8f40e2f5aacbabc9ad'
+ '794b867e09451284c545bae112aa0cfd'
+ '502221c1b47a3bb2c06703d4fb90a0c2')
+
+build() {
+  cd $pkgname-v$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-v$pkgver
+ ./btrfs filesystem show
+}
+
+package() {
+  cd $pkgname-v$pkgver
+  make DESTDIR="$pkgdir" 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"
+
+  # install scrub service/timer
+  install -Dm644 btrfs-scrub@.service 
"$pkgdir/usr/lib/systemd/system/btrfs-scrub@.service"
+  install -Dm644 btrfs-scrub@.timer 
"$pkgdir/usr/lib/systemd/system/btrfs-scrub@.timer"
+}
+
+# vim:set ts=2 sw=2 ft=sh et:

Copied: btrfs-progs/repos/testing-i686/btrfs-progs.install (from rev 284688, 
btrfs-progs/trunk/btrfs-progs.install)
===
--- testing-i686/btrfs-progs.install(rev 0)
+++ testing-i686/btrfs-progs.install2016-12-24 19:05:31 UTC (rev 284689)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+## arg 1:  the new package version

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

2016-12-24 Thread Sébastien Luttringer
Date: Saturday, December 24, 2016 @ 19:04:43
  Author: seblu
Revision: 284688

upgpkg: btrfs-progs 4.9-1

Modified:
  btrfs-progs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-24 18:58:57 UTC (rev 284687)
+++ PKGBUILD2016-12-24 19:04:43 UTC (rev 284688)
@@ -4,7 +4,7 @@
 # Contributor: Tobias Powalowski 
 
 pkgname=btrfs-progs
-pkgver=4.8.5
+pkgver=4.9
 pkgrel=1
 pkgdesc='Btrfs filesystem utilities'
 arch=('i686' 'x86_64')
@@ -23,12 +23,12 @@
 'btrfs-scrub@.timer')
 install=btrfs-progs.install
 options=(!staticlibs)
-sha256sums=('SKIP'
-'d247b1c022aca5def3415bfa51e00c566cce36660a3ee517d4b6a1af911a08ef'
-'bbe60b35d1b1e2efc1308a8f54f1fdc6808240a81c5f5b4d75321b7ee86e41f4'
-'35efeee8590d6d60c711ae9cdc918e4841ab61d10cb02359e65e36ebff95ffc5'
-'6c341018a50d28c1c16631ae1f2ded2c74ddc5c51851f0eb675127cf27e4fdc6'
-'4c5585974a431561b6db9e2b439cb40ec1c633325b600a7c9640e7b6640134cd')
+md5sums=('SKIP'
+ '5ba59ab2cf6d35a86920ab439bc99cb8'
+ '7241ba3a4286d08da0d50b7176941112'
+ 'b09688a915a0ec8f40e2f5aacbabc9ad'
+ '794b867e09451284c545bae112aa0cfd'
+ '502221c1b47a3bb2c06703d4fb90a0c2')
 
 build() {
   cd $pkgname-v$pkgver


  1   2   3   4   5   6   7   8   >