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

2020-05-12 Thread Jelle van der Waa via arch-commits
Date: Tuesday, May 12, 2020 @ 21:10:24
  Author: jelle
Revision: 627235

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-12 21:10:13 UTC (rev 627234)
+++ PKGBUILD2020-05-12 21:10:24 UTC (rev 627235)
@@ -1,62 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=6.10.0
-pkgrel=4
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="https://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2')
-checkdepends=('python-pytest-cov' 'python-bottle' 'python-celery' 
'python-django'
-  'python-pycodestyle' 'python-mock' 'python-nose' 'python-pytz' 
'python-exam'
-  'python-requests' 'python-tornado' 'python-paste' 'python-webob' 
'python-webtest'
-  'python-anyjson' 'python-flask' 'python-blinker' 'python-logbook'
-  'python-pytest-django' 'python-flask-login' 
'python-pytest-timeout' 'python-zconfig'
-  'python-pytest-xdist')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/getsentry/raven-python/archive/$pkgver.tar.gz;)
-sha512sums=('4e65c03b1c5d084588ef381223b06c7b2ded3239fb2f2da4b2694fcf897a590ba5b03ac421b6dd88e0ce408f2fafd605d92a2b544b4f975ece5510eb6010583b')
-
-prepare() {
-  cp -a raven-python-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/raven-python-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-  # "-p no:logging": https://github.com/getsentry/raven-python/issues/1164
-
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.8/site-packages:$PYTHONPATH" \
-py.test -p no:logging tests || warning 
"https://github.com/getsentry/raven-python/issues/1275;
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 627234, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-12 21:10:24 UTC (rev 627235)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgname=python-raven
+pkgver=6.10.0
+pkgrel=5
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="https://pypi.python.org/pypi/raven;
+license=('BSD')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-cov' 'python-bottle' 'python-celery' 
'python-django'
+  'python-pycodestyle' 'python-mock' 'python-nose' 'python-pytz' 
'python-exam'
+  'python-requests' 'python-tornado' 'python-paste' 'python-webob' 
'python-webtest'
+  'python-anyjson' 'python-flask' 'python-blinker' 'python-logbook'
+  'python-pytest-django' 'python-flask-login' 
'python-pytest-timeout' 'python-zconfig'
+  'python-pytest-xdist')
+optdepends=('python-setuptools: for "raven" script')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/getsentry/raven-python/archive/$pkgver.tar.gz;)
+sha512sums=('4e65c03b1c5d084588ef381223b06c7b2ded3239fb2f2da4b2694fcf897a590ba5b03ac421b6dd88e0ce408f2fafd605d92a2b544b4f975ece5510eb6010583b')
+
+build() {
+  cd "$srcdir"/raven-python-$pkgver
+  python setup.py build
+}
+
+check() {
+  # Hack distribution check by installing it
+  # "-p no:logging": https://github.com/getsentry/raven-python/issues/1164
+
+  cd "$srcdir"/raven-python-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.8/site-packages:$PYTHONPATH" \
+py.test -p no:logging tests || warning 
"https://github.com/getsentry/raven-python/issues/1275;
+}
+
+package() {
+  cd "$srcdir"/raven-python-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-08-18 Thread Felix Yan via arch-commits
Date: Sunday, August 18, 2019 @ 16:44:38
  Author: felixonmars
Revision: 500069

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-18 16:44:29 UTC (rev 500068)
+++ PKGBUILD2019-08-18 16:44:38 UTC (rev 500069)
@@ -1,73 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=6.10.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout' 'python-zconfig' 'python2-zconfig' 
'python-pytest-xdist'
-  'python2-pytest-xdist')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/getsentry/raven-python/archive/$pkgver.tar.gz;)
-sha512sums=('4e65c03b1c5d084588ef381223b06c7b2ded3239fb2f2da4b2694fcf897a590ba5b03ac421b6dd88e0ce408f2fafd605d92a2b544b4f975ece5510eb6010583b')
-
-prepare() {
-  cp -a raven-python-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/raven-python-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-  # "-p no:logging": https://github.com/getsentry/raven-python/issues/1164
-
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.7/site-packages:$PYTHONPATH" \
-py.test -p no:logging tests || warning 
"https://github.com/getsentry/raven-python/issues/1275;
-
-  cd "$srcdir"/raven-python-$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 -p no:logging tests || warning 
"https://github.com/getsentry/raven-python/issues/1275;
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 500068, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-18 16:44:38 UTC (rev 500069)
@@ -0,0 +1,62 @@
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=6.10.0
+pkgrel=2
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="https://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2')
+checkdepends=('python-pytest-cov' 'python-bottle' 'python-celery' 
'python-django'
+  'python-pycodestyle' 'python-mock' 'python-nose' 'python-pytz' 
'python-exam'
+  'python-requests' 'python-tornado' 'python-paste' 'python-webob' 
'python-webtest'
+  'python-anyjson' 'python-flask' 'python-blinker' 'python-logbook'
+  'python-pytest-django' 'python-flask-login' 
'python-pytest-timeout' 'python-zconfig'
+  'python-pytest-xdist')

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

2018-12-19 Thread Felix Yan via arch-commits
Date: Wednesday, December 19, 2018 @ 20:41:54
  Author: felixonmars
Revision: 416783

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-19 20:41:36 UTC (rev 416782)
+++ PKGBUILD2018-12-19 20:41:54 UTC (rev 416783)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=6.9.0
-pkgrel=2
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout' 'python-zconfig' 'python2-zconfig' 
'python-pytest-xdist'
-  'python2-pytest-xdist')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/getsentry/raven-python/archive/$pkgver.tar.gz;)
-sha512sums=('a8ab761779b9c4cf06150a763d31f56caf1688210354deeb065950b82276b6f7d4c9daff65bfd9fa865093350a2c65b983f7d8662d3232ea3b0304a8027276a9')
-
-prepare() {
-  cp -a raven-python-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/raven-python-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-  # "-p no:logging": https://github.com/getsentry/raven-python/issues/1164
-
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" \
-py.test -p no:logging tests
-
-  cd "$srcdir"/raven-python-$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 -p no:logging tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 416782, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-19 20:41:54 UTC (rev 416783)
@@ -0,0 +1,73 @@
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=6.10.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 

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

2018-05-30 Thread Felix Yan via arch-commits
Date: Thursday, May 31, 2018 @ 00:40:16
  Author: felixonmars
Revision: 333602

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-05-31 00:39:53 UTC (rev 333601)
+++ PKGBUILD2018-05-31 00:40:16 UTC (rev 333602)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=6.8.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout' 'python-zconfig' 'python2-zconfig' 
'python-pytest-xdist'
-  'python2-pytest-xdist')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/getsentry/raven-python/archive/$pkgver.tar.gz;)
-sha512sums=('4fdd186a5bc413e9b1a6e63088a3c43a057d6351edcd7e0302aca387cd6895d0b0862e35bfa86b647dd70b6e3c33201aadca80691b18880a456db5d84e33fb17')
-
-prepare() {
-  cp -a raven-python-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/raven-python-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-  # "-p no:logging": https://github.com/getsentry/raven-python/issues/1164
-
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" \
-py.test -p no:logging tests
-
-  cd "$srcdir"/raven-python-$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 -p no:logging tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 333601, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-05-31 00:40:16 UTC (rev 333602)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=6.9.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 

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

2018-04-19 Thread Felix Yan via arch-commits
Date: Friday, April 20, 2018 @ 03:15:31
  Author: felixonmars
Revision: 317100

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-20 03:15:06 UTC (rev 317099)
+++ PKGBUILD2018-04-20 03:15:31 UTC (rev 317100)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=6.6.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout' 'python-zconfig' 'python2-zconfig' 
'python-pytest-xdist'
-  'python2-pytest-xdist')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/getsentry/raven-python/archive/$pkgver.tar.gz;)
-sha512sums=('19d5db95669b44748d6a7f0478993e0119b23d11de80d6c25e77a6044b655bca8bb18fc48e20fbc93f592f6d9111e7666857509b42f48cbea2006a491e2ad1cd')
-
-prepare() {
-  cp -a raven-python-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/raven-python-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-  # "-p no:logging": https://github.com/getsentry/raven-python/issues/1164
-
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" \
-py.test -p no:logging tests
-
-  cd "$srcdir"/raven-python-$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 -p no:logging tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 317099, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-20 03:15:31 UTC (rev 317100)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=6.7.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 

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

2018-03-01 Thread Felix Yan via arch-commits
Date: Thursday, March 1, 2018 @ 14:37:32
  Author: felixonmars
Revision: 300955

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-01 14:37:03 UTC (rev 300954)
+++ PKGBUILD2018-03-01 14:37:32 UTC (rev 300955)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=6.5.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout' 'python-zconfig' 'python2-zconfig' 
'python-pytest-xdist'
-  'python2-pytest-xdist')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/getsentry/raven-python/archive/$pkgver.tar.gz;)
-sha512sums=('94944325a2a02358660139bcbd92fd217dcf9be9d4e6ec566b54529b5605339b40f8b06ae70efd2cca3a3015bec4e2db2a02f51112cd7b9029be98e15daecfbe')
-
-prepare() {
-  cp -a raven-python-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/raven-python-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-  # "-p no:logging": https://github.com/getsentry/raven-python/issues/1164
-
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" \
-py.test -p no:logging tests
-
-  cd "$srcdir"/raven-python-$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 -p no:logging tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 300954, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-01 14:37:32 UTC (rev 300955)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=6.6.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 

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

2018-01-19 Thread Felix Yan via arch-commits
Date: Friday, January 19, 2018 @ 18:27:58
  Author: felixonmars
Revision: 284186

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-19 18:27:39 UTC (rev 284185)
+++ PKGBUILD2018-01-19 18:27:58 UTC (rev 284186)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=6.4.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout' 'python-zconfig' 'python2-zconfig')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/getsentry/raven-python/archive/$pkgver.tar.gz;)
-sha512sums=('c7c1a68c8634e428c1958a4162f2470385cc2451a65d38c852539ad0c0dc650848c6dcd8dec7cbfde5bd0a34a3965b79029e64772c2c9ce4a6e37190f62b7f3e')
-
-prepare() {
-  cp -a raven-python-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/raven-python-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-  # "-p no:logging": https://github.com/getsentry/raven-python/issues/1164
-
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" \
-py.test -p no:logging tests
-
-  cd "$srcdir"/raven-python-$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 -p no:logging tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 284185, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-19 18:27:58 UTC (rev 284186)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=6.5.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 

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

2017-12-21 Thread Felix Yan via arch-commits
Date: Friday, December 22, 2017 @ 06:52:36
  Author: felixonmars
Revision: 275404

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-22 06:51:55 UTC (rev 275403)
+++ PKGBUILD2017-12-22 06:52:36 UTC (rev 275404)
@@ -1,75 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=6.3.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout' 'python-zconfig' 'python2-zconfig')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/getsentry/raven-python/archive/$pkgver.tar.gz;)
-sha512sums=('e8708206d3840ca087b9428d5243306be83c4a8d59a9f32d53dc7e1a931c647410a37a2aa5bd0853e30e41137f0a318f5c509a5fd3b8c8815ccb126d65a04458')
-
-prepare() {
-  # Remove in next version
-  sed -i '/recursive-include/a recursive-include raven/contrib/zconfig *.xml' 
raven-python-$pkgver/MANIFEST.in
-
-  cp -a raven-python-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/raven-python-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python-$pkgver
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 275403, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-22 06:52:36 UTC (rev 275404)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=6.4.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+

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

2017-11-16 Thread Felix Yan
Date: Thursday, November 16, 2017 @ 23:57:17
  Author: felixonmars
Revision: 267054

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-16 23:56:46 UTC (rev 267053)
+++ PKGBUILD2017-11-16 23:57:17 UTC (rev 267054)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=6.1.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 267053, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-16 23:57:17 UTC (rev 267054)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=6.3.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
+  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
+  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
+  'python2-pytest-timeout' 'python-zconfig' 'python2-zconfig')

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

2017-05-25 Thread Felix Yan
Date: Friday, May 26, 2017 @ 02:16:23
  Author: felixonmars
Revision: 230396

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-26 02:15:41 UTC (rev 230395)
+++ PKGBUILD2017-05-26 02:16:23 UTC (rev 230396)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=6.0.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 230395, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-26 02:16:23 UTC (rev 230396)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=6.1.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
+  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
+  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
+  'python2-pytest-timeout')

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

2017-02-18 Thread Felix Yan
Date: Saturday, February 18, 2017 @ 08:03:11
  Author: felixonmars
Revision: 213012

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-02-18 08:02:47 UTC (rev 213011)
+++ PKGBUILD2017-02-18 08:03:11 UTC (rev 213012)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.32.0
-pkgrel=2
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 213011, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-02-18 08:03:11 UTC (rev 213012)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=6.0.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
+  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
+  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
+  'python2-pytest-timeout')

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

2016-11-16 Thread Felix Yan
Date: Wednesday, November 16, 2016 @ 15:52:12
  Author: felixonmars
Revision: 196039

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-11-16 15:51:49 UTC (rev 196038)
+++ PKGBUILD2016-11-16 15:52:12 UTC (rev 196039)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.31.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 196038, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-11-16 15:52:12 UTC (rev 196039)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.32.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
+  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
+  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
+  'python2-pytest-timeout')

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

2016-10-21 Thread Felix Yan
Date: Saturday, October 22, 2016 @ 02:15:35
  Author: felixonmars
Revision: 192896

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-22 02:15:18 UTC (rev 192895)
+++ PKGBUILD2016-10-22 02:15:35 UTC (rev 192896)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.30.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 192895, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-22 02:15:35 UTC (rev 192896)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.31.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
+  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
+  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
+  'python2-pytest-timeout')

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

2016-10-19 Thread Felix Yan
Date: Thursday, October 20, 2016 @ 05:23:09
  Author: felixonmars
Revision: 192641

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-20 05:22:50 UTC (rev 192640)
+++ PKGBUILD2016-10-20 05:23:09 UTC (rev 192641)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.29.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 192640, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-20 05:23:09 UTC (rev 192641)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.30.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
+  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
+  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
+  'python2-pytest-timeout')

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

2016-10-18 Thread Felix Yan
Date: Wednesday, October 19, 2016 @ 03:48:31
  Author: felixonmars
Revision: 192549

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-19 03:48:13 UTC (rev 192548)
+++ PKGBUILD2016-10-19 03:48:31 UTC (rev 192549)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.28.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 192548, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-19 03:48:31 UTC (rev 192549)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.29.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
+  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
+  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
+  'python2-pytest-timeout')

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

2016-10-18 Thread Felix Yan
Date: Tuesday, October 18, 2016 @ 14:55:00
  Author: felixonmars
Revision: 192521

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-18 14:54:44 UTC (rev 192520)
+++ PKGBUILD2016-10-18 14:55:00 UTC (rev 192521)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.27.1
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 192520, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-18 14:55:00 UTC (rev 192521)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.28.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
+  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
+  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
+  'python2-pytest-timeout')

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

2016-09-19 Thread Felix Yan
Date: Tuesday, September 20, 2016 @ 02:45:24
  Author: felixonmars
Revision: 190004

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-20 02:44:53 UTC (rev 190003)
+++ PKGBUILD2016-09-20 02:45:24 UTC (rev 190004)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.27.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 190003, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-20 02:45:24 UTC (rev 190004)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.27.1
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
+  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
+  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
+  'python2-pytest-timeout')

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

2016-09-16 Thread Felix Yan
Date: Saturday, September 17, 2016 @ 01:08:46
  Author: felixonmars
Revision: 189802

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-17 01:08:27 UTC (rev 189801)
+++ PKGBUILD2016-09-17 01:08:46 UTC (rev 189802)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.26.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 189801, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-17 01:08:46 UTC (rev 189802)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.27.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
+  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
+  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
+  'python2-pytest-timeout')

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

2016-08-31 Thread Felix Yan
Date: Thursday, September 1, 2016 @ 01:16:54
  Author: felixonmars
Revision: 188187

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-01 01:16:36 UTC (rev 188186)
+++ PKGBUILD2016-09-01 01:16:54 UTC (rev 188187)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.25.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 188186, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-01 01:16:54 UTC (rev 188187)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.26.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
+  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
+  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
+  'python2-pytest-timeout')

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

2016-08-24 Thread Felix Yan
Date: Thursday, August 25, 2016 @ 01:03:37
  Author: felixonmars
Revision: 187491

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-08-25 01:03:22 UTC (rev 187490)
+++ PKGBUILD2016-08-25 01:03:37 UTC (rev 187491)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.24.3
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 187490, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-08-25 01:03:37 UTC (rev 187491)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.25.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
+  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
+  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
+  'python2-pytest-timeout')

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

2016-08-09 Thread Felix Yan
Date: Tuesday, August 9, 2016 @ 14:16:20
  Author: felixonmars
Revision: 186211

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-08-09 14:16:05 UTC (rev 186210)
+++ PKGBUILD2016-08-09 14:16:20 UTC (rev 186211)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.24.2
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 186210, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-08-09 14:16:20 UTC (rev 186211)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.24.3
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
+  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
+  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
+  'python2-pytest-timeout')

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

2016-08-06 Thread Felix Yan
Date: Saturday, August 6, 2016 @ 06:30:04
  Author: felixonmars
Revision: 185474

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-08-06 06:29:50 UTC (rev 185473)
+++ PKGBUILD2016-08-06 06:30:04 UTC (rev 185474)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.24.1
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 185473, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-08-06 06:30:04 UTC (rev 185474)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.24.2
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
+  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
+  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
+  'python2-pytest-timeout')

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

2016-08-04 Thread Felix Yan
Date: Friday, August 5, 2016 @ 02:50:07
  Author: felixonmars
Revision: 185166

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-08-05 02:49:52 UTC (rev 185165)
+++ PKGBUILD2016-08-05 02:50:07 UTC (rev 185166)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.23.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 185165, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-08-05 02:50:07 UTC (rev 185166)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.24.1
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
+  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
+  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
+  'python2-pytest-timeout')

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

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 14:06:02
  Author: felixonmars
Revision: 182893

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-14 14:05:41 UTC (rev 182892)
+++ PKGBUILD2016-07-14 14:06:02 UTC (rev 182893)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.22.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  sed -i 's/pep8/pycodestyle/' raven-python/setup.py
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 182892, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-14 14:06:02 UTC (rev 182893)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.23.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
+  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
+  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
+  'python2-pytest-timeout')

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

2016-07-07 Thread Felix Yan
Date: Friday, July 8, 2016 @ 02:43:30
  Author: felixonmars
Revision: 182483

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-08 02:43:12 UTC (rev 182482)
+++ PKGBUILD2016-07-08 02:43:30 UTC (rev 182483)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.21.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
-  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
-  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
-  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
-  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
-  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
-  'python2-webpy' 'python-flask-login' 'python2-flask-login'
-  'python-pytest-timeout' 'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 182482, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-08 02:43:30 UTC (rev 182483)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.22.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
+  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
+  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
+  'python2-pytest-timeout')
+source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)

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

2016-06-17 Thread Felix Yan
Date: Friday, June 17, 2016 @ 11:49:00
  Author: felixonmars
Revision: 180355

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-17 11:48:41 UTC (rev 180354)
+++ PKGBUILD2016-06-17 11:49:00 UTC (rev 180355)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.20.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
-  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
-  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
-  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
-  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
-  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
-  'python2-webpy' 'python-flask-login' 'python2-flask-login'
-  'python-pytest-timeout' 'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 180354, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-17 11:49:00 UTC (rev 180355)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.21.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
+  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
+  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
+  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
+  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
+  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
+  'python2-webpy' 'python-flask-login' 'python2-flask-login'
+  'python-pytest-timeout' 'python2-pytest-timeout')
+source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {

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

2016-06-08 Thread Felix Yan
Date: Thursday, June 9, 2016 @ 04:20:10
  Author: fyan
Revision: 178703

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-09 02:19:52 UTC (rev 178702)
+++ PKGBUILD2016-06-09 02:20:10 UTC (rev 178703)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.19.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
-  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
-  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
-  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
-  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
-  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
-  'python2-webpy' 'python-flask-login' 'python2-flask-login'
-  'python-pytest-timeout' 'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 178702, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-09 02:20:10 UTC (rev 178703)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.20.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
+  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
+  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
+  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
+  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
+  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
+  'python2-webpy' 'python-flask-login' 'python2-flask-login'
+  'python-pytest-timeout' 'python2-pytest-timeout')
+source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp 

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

2016-06-02 Thread Felix Yan
Date: Thursday, June 2, 2016 @ 17:36:57
  Author: fyan
Revision: 177734

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-02 15:36:41 UTC (rev 177733)
+++ PKGBUILD2016-06-02 15:36:57 UTC (rev 177734)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.18.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
-  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
-  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
-  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
-  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
-  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
-  'python2-webpy' 'python-flask-login' 'python2-flask-login'
-  'python-pytest-timeout' 'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 177733, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-02 15:36:57 UTC (rev 177734)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.19.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
+  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
+  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
+  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
+  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
+  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
+  'python2-webpy' 'python-flask-login' 'python2-flask-login'
+  'python-pytest-timeout' 'python2-pytest-timeout')
+source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp 

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

2016-05-19 Thread Felix Yan
Date: Friday, May 20, 2016 @ 07:28:28
  Author: fyan
Revision: 175774

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-20 05:28:07 UTC (rev 175773)
+++ PKGBUILD2016-05-20 05:28:28 UTC (rev 175774)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.17.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
-  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
-  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
-  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
-  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
-  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
-  'python2-webpy' 'python-flask-login' 'python2-flask-login'
-  'python-pytest-timeout' 'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 175773, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-20 05:28:28 UTC (rev 175774)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.18.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
+  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
+  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
+  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
+  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
+  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
+  'python2-webpy' 'python-flask-login' 'python2-flask-login'
+  'python-pytest-timeout' 'python2-pytest-timeout')
+source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a 

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

2016-05-13 Thread Felix Yan
Date: Saturday, May 14, 2016 @ 04:30:18
  Author: fyan
Revision: 175299

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-14 02:29:52 UTC (rev 175298)
+++ PKGBUILD2016-05-14 02:30:18 UTC (rev 175299)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.16.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
-  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
-  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
-  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
-  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
-  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
-  'python2-webpy' 'python-flask-login' 'python2-flask-login'
-  'python-pytest-timeout' 'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 175298, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-14 02:30:18 UTC (rev 175299)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.17.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
+  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
+  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
+  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
+  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
+  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
+  'python2-webpy' 'python-flask-login' 'python2-flask-login'
+  'python-pytest-timeout' 'python2-pytest-timeout')
+source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp 

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

2016-05-10 Thread Felix Yan
Date: Tuesday, May 10, 2016 @ 09:32:46
  Author: fyan
Revision: 174501

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-10 07:31:47 UTC (rev 174500)
+++ PKGBUILD2016-05-10 07:32:46 UTC (rev 174501)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.15.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
-  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
-  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
-  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
-  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
-  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
-  'python2-webpy' 'python-flask-login' 'python2-flask-login'
-  'python-pytest-timeout' 'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 174500, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-10 07:32:46 UTC (rev 174501)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.16.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
+  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
+  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
+  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
+  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
+  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
+  'python2-webpy' 'python-flask-login' 'python2-flask-login'
+  'python-pytest-timeout' 'python2-pytest-timeout')
+source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp 

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

2016-05-03 Thread Felix Yan
Date: Wednesday, May 4, 2016 @ 05:02:26
  Author: fyan
Revision: 173641

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-04 03:02:09 UTC (rev 173640)
+++ PKGBUILD2016-05-04 03:02:26 UTC (rev 173641)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.14.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
-  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
-  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
-  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
-  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
-  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
-  'python2-webpy' 'python-flask-login' 'python2-flask-login'
-  'python-pytest-timeout' 'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 173640, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-04 03:02:26 UTC (rev 173641)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.15.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
+  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
+  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
+  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
+  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
+  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
+  'python2-webpy' 'python-flask-login' 'python2-flask-login'
+  'python-pytest-timeout' 'python2-pytest-timeout')
+source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp 

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

2016-05-02 Thread Felix Yan
Date: Tuesday, May 3, 2016 @ 03:14:20
  Author: fyan
Revision: 173463

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-03 01:13:48 UTC (rev 173462)
+++ PKGBUILD2016-05-03 01:14:20 UTC (rev 173463)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.13.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
-  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
-  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
-  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
-  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
-  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
-  'python2-webpy' 'python-flask-login' 'python2-flask-login'
-  'python-pytest-timeout' 'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 173462, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-03 01:14:20 UTC (rev 173463)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.14.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
+  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
+  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
+  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
+  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
+  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
+  'python2-webpy' 'python-flask-login' 'python2-flask-login'
+  'python-pytest-timeout' 'python2-pytest-timeout')
+source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a 

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

2016-04-21 Thread Felix Yan
Date: Thursday, April 21, 2016 @ 10:23:09
  Author: fyan
Revision: 171490

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-21 08:22:47 UTC (rev 171489)
+++ PKGBUILD2016-04-21 08:23:09 UTC (rev 171490)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.12.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
-  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
-  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
-  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
-  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
-  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
-  'python2-webpy' 'python-flask-login' 'python2-flask-login'
-  'python-pytest-timeout' 'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 171489, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-21 08:23:09 UTC (rev 171490)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.13.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
+  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
+  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
+  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
+  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
+  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
+  'python2-webpy' 'python-flask-login' 'python2-flask-login'
+  'python-pytest-timeout' 'python2-pytest-timeout')
+source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  

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

2016-03-30 Thread Felix Yan
Date: Wednesday, March 30, 2016 @ 16:36:33
  Author: fyan
Revision: 168874

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-30 14:36:07 UTC (rev 168873)
+++ PKGBUILD2016-03-30 14:36:33 UTC (rev 168874)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.11.2
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
-  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
-  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
-  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
-  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
-  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
-  'python2-webpy' 'python-flask-login' 'python2-flask-login'
-  'python-pytest-timeout' 'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir/raven-python"
-  python setup.py build
-
-  cd "$srcdir/raven-python-py2"
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir/raven-python"
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir/raven-python"
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "${srcdir}/raven-python"
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "${srcdir}/raven-python-py2"
-  python2 setup.py install --root="${pkgdir}/" --optimize=1
-  mv "${pkgdir}/usr/bin/raven" "${pkgdir}/usr/bin/raven2"
-
-  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 168873, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-30 14:36:33 UTC (rev 168874)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.12.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
+  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
+  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
+  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
+  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
+  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
+  'python2-webpy' 'python-flask-login' 'python2-flask-login'
+  'python-pytest-timeout' 'python2-pytest-timeout')

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

2016-03-26 Thread Felix Yan
Date: Saturday, March 26, 2016 @ 15:51:18
  Author: fyan
Revision: 168485

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-26 14:51:00 UTC (rev 168484)
+++ PKGBUILD2016-03-26 14:51:18 UTC (rev 168485)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.11.1
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
-  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
-  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
-  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
-  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
-  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
-  'python2-webpy' 'python-flask-login' 'python2-flask-login'
-  'python-pytest-timeout' 'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir/raven-python"
-  python setup.py build
-
-  cd "$srcdir/raven-python-py2"
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir/raven-python"
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir/raven-python"
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "${srcdir}/raven-python"
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "${srcdir}/raven-python-py2"
-  python2 setup.py install --root="${pkgdir}/" --optimize=1
-  mv "${pkgdir}/usr/bin/raven" "${pkgdir}/usr/bin/raven2"
-
-  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 168484, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-26 14:51:18 UTC (rev 168485)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.11.2
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
+  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
+  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
+  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
+  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
+  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
+  'python2-webpy' 'python-flask-login' 'python2-flask-login'
+  'python-pytest-timeout' 'python2-pytest-timeout')

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

2016-03-07 Thread Felix Yan
Date: Tuesday, March 8, 2016 @ 03:53:29
  Author: fyan
Revision: 165557

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-08 02:52:57 UTC (rev 165556)
+++ PKGBUILD2016-03-08 02:53:29 UTC (rev 165557)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.11.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
-  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
-  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
-  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
-  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
-  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
-  'python2-webpy' 'python-flask-login' 'python2-flask-login'
-  'python-pytest-timeout' 'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir/raven-python"
-  python setup.py build
-
-  cd "$srcdir/raven-python-py2"
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir/raven-python"
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir/raven-python"
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "${srcdir}/raven-python"
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "${srcdir}/raven-python-py2"
-  python2 setup.py install --root="${pkgdir}/" --optimize=1
-  mv "${pkgdir}/usr/bin/raven" "${pkgdir}/usr/bin/raven2"
-
-  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 165556, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-08 02:53:29 UTC (rev 165557)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.11.1
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
+  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
+  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
+  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
+  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
+  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
+  'python2-webpy' 'python-flask-login' 'python2-flask-login'
+  'python-pytest-timeout' 'python2-pytest-timeout')

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

2016-03-01 Thread Felix Yan
Date: Tuesday, March 1, 2016 @ 12:47:52
  Author: fyan
Revision: 163894

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-01 11:47:35 UTC (rev 163893)
+++ PKGBUILD2016-03-01 11:47:52 UTC (rev 163894)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.10.2
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
-  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
-  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
-  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
-  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
-  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
-  'python2-webpy' 'python-flask-login' 'python2-flask-login'
-  'python-pytest-timeout' 'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir/raven-python"
-  python setup.py build
-
-  cd "$srcdir/raven-python-py2"
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir/raven-python"
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir/raven-python"
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "${srcdir}/raven-python"
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "${srcdir}/raven-python-py2"
-  python2 setup.py install --root="${pkgdir}/" --optimize=1
-  mv "${pkgdir}/usr/bin/raven" "${pkgdir}/usr/bin/raven2"
-
-  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 163893, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-01 11:47:52 UTC (rev 163894)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.11.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
+  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
+  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
+  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
+  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
+  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
+  'python2-webpy' 'python-flask-login' 'python2-flask-login'
+  'python-pytest-timeout' 'python2-pytest-timeout')

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

2016-01-28 Thread Felix Yan
Date: Thursday, January 28, 2016 @ 08:11:59
  Author: fyan
Revision: 159308

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-01-28 07:11:38 UTC (rev 159307)
+++ PKGBUILD2016-01-28 07:11:59 UTC (rev 159308)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.10.1
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
-  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
-  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
-  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
-  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
-  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
-  'python2-webpy' 'python-flask-login' 'python2-flask-login'
-  'python-pytest-timeout' 'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir/raven-python"
-  python setup.py build
-
-  cd "$srcdir/raven-python-py2"
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir/raven-python"
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir/raven-python"
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "${srcdir}/raven-python"
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "${srcdir}/raven-python-py2"
-  python2 setup.py install --root="${pkgdir}/" --optimize=1
-  mv "${pkgdir}/usr/bin/raven" "${pkgdir}/usr/bin/raven2"
-
-  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 159307, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-01-28 07:11:59 UTC (rev 159308)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.10.2
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
+  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
+  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
+  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
+  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
+  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
+  'python2-webpy' 'python-flask-login' 'python2-flask-login'
+  'python-pytest-timeout' 'python2-pytest-timeout')

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

2016-01-22 Thread Felix Yan
Date: Saturday, January 23, 2016 @ 07:26:44
  Author: fyan
Revision: 158653

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-01-23 06:26:23 UTC (rev 158652)
+++ PKGBUILD2016-01-23 06:26:44 UTC (rev 158653)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.8.1
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
-  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
-  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
-  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
-  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
-  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
-  'python2-webpy' 'python-flask-login' 'python2-flask-login'
-  'python-pytest-timeout' 'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir/raven-python"
-  python setup.py build
-
-  cd "$srcdir/raven-python-py2"
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir/raven-python"
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir/raven-python"
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "${srcdir}/raven-python"
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-raven() {
-  depends=('python2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "${srcdir}/raven-python-py2"
-  python2 setup.py install --root="${pkgdir}/" --optimize=1
-  mv "${pkgdir}/usr/bin/raven" "${pkgdir}/usr/bin/raven2"
-
-  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 158652, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-01-23 06:26:44 UTC (rev 158653)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.10.1
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
+  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
+  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
+  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
+  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
+  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
+  'python2-webpy' 'python-flask-login' 'python2-flask-login'
+  'python-pytest-timeout' 'python2-pytest-timeout')
+source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
+md5sums=('SKIP')
+

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

2015-10-20 Thread Felix Yan
Date: Tuesday, October 20, 2015 @ 11:44:06
  Author: fyan
Revision: 16

archrelease: copy trunk to community-any

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

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

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

Copied: python-raven/repos/community-any/PKGBUILD (from rev 10, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-10-20 09:44:06 UTC (rev 16)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.8.1
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
+  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
+  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
+  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
+  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
+  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
+  'python2-webpy' 'python-flask-login' 'python2-flask-login'
+  'python-pytest-timeout' 'python2-pytest-timeout')
+source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp 

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

2015-09-18 Thread Felix Yan
Date: Saturday, September 19, 2015 @ 02:57:00
  Author: fyan
Revision: 140679

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-19 00:56:44 UTC (rev 140678)
+++ PKGBUILD2015-09-19 00:57:00 UTC (rev 140679)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.7.1
-pkgrel=1
-pkgdesc="Python client for Sentry."
-arch=(any)
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
-  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
-  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
-  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
-  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
-  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
-  'python2-webpy')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir/raven-python"
-  python setup.py build
-
-  cd "$srcdir/raven-python-py2"
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir/raven-python"
-  # Expected failures: No Python 3 package for flask-login.
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.4/site-packages:$PYTHONPATH" \
-py.test tests || warning "Tests failed"
-
-  cd "$srcdir/raven-python"
-  # Expected failures: No Python 2 package for flask-login.
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test tests || warning "Tests failed"
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "${srcdir}/raven-python"
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-raven() {
-  depends=('python2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "${srcdir}/raven-python-py2"
-  python2 setup.py install --root="${pkgdir}/" --optimize=1
-  mv "${pkgdir}/usr/bin/raven" "${pkgdir}/usr/bin/raven2"
-
-  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 140678, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-09-19 00:57:00 UTC (rev 140679)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.7.2
+pkgrel=1
+pkgdesc="Python client for Sentry."
+arch=(any)
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
+  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
+  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
+  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
+  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
+  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
+  'python2-webpy')
+source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a raven-python{,-py2}
+}
+
+build() {
+  cd 

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

2015-09-16 Thread Felix Yan
Date: Thursday, September 17, 2015 @ 04:06:55
  Author: fyan
Revision: 140386

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-17 02:06:34 UTC (rev 140385)
+++ PKGBUILD2015-09-17 02:06:55 UTC (rev 140386)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.6.0
-pkgrel=1
-pkgdesc="Python client for Sentry."
-arch=(any)
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
-  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
-  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
-  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
-  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
-  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
-  'python2-webpy')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir/raven-python"
-  python setup.py build
-
-  cd "$srcdir/raven-python-py2"
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir/raven-python"
-  # Expected failures: No Python 3 package for flask-login.
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.4/site-packages:$PYTHONPATH" \
-py.test tests || warning "Tests failed"
-
-  cd "$srcdir/raven-python"
-  # Expected failures: No Python 2 package for flask-login.
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test tests || warning "Tests failed"
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "${srcdir}/raven-python"
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-raven() {
-  depends=('python2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "${srcdir}/raven-python-py2"
-  python2 setup.py install --root="${pkgdir}/" --optimize=1
-  mv "${pkgdir}/usr/bin/raven" "${pkgdir}/usr/bin/raven2"
-
-  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 140385, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-09-17 02:06:55 UTC (rev 140386)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.7.1
+pkgrel=1
+pkgdesc="Python client for Sentry."
+arch=(any)
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
+  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
+  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
+  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
+  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
+  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
+  'python2-webpy')
+source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a raven-python{,-py2}
+}
+
+build() {
+  cd