[arch-commits] Commit in python-eventlet/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Sun Dec 25 15:40:58 UTC 2016
Date: Sunday, December 25, 2016 @ 15:40:57
Author: felixonmars
Revision: 201864
archrelease: copy trunk to community-staging-any
Added:
python-eventlet/repos/community-staging-any/
python-eventlet/repos/community-staging-any/PKGBUILD
(from rev 201863, python-eventlet/trunk/PKGBUILD)
----------+
PKGBUILD | 79 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 79 insertions(+)
Copied: python-eventlet/repos/community-staging-any/PKGBUILD (from rev 201863, python-eventlet/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2016-12-25 15:40:57 UTC (rev 201864)
@@ -0,0 +1,79 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+
+pkgbase=python-eventlet
+pkgname=('python-eventlet' 'python2-eventlet')
+_pyname=eventlet
+pkgver=0.19.0
+pkgrel=2
+pkgdesc='Highly concurrent networking library'
+url='http://eventlet.net'
+arch=('any')
+license=('MIT')
+makedepends=('python-greenlet' 'python-setuptools' 'python-sphinx' 'python2-greenlet' 'python2-setuptools' 'python2-sphinx' 'python2-subprocess32')
+#TODO: add 'python-dnspython' if test is fixed
+checkdepends=('python-psycopg2' 'python-nose' 'python-pyopenssl' 'python-httplib2' 'python-mock' 'python-pyzmq'
+ 'python2-psycopg2' 'python2-nose' 'python2-pyopenssl' 'python2-httplib2' 'python2-mock' 'python2-pyzmq' 'python2-dnspython')
+source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/eventlet/eventlet/archive/v${pkgver}.tar.gz)
+sha512sums=('a80814b4ce90edbcc904d56efab2f5e1d3cd39e2b2943e07042ede332395c2fce806e323fa5d44a91d76b985f38179e168d9d4a1e45de04319faeb89b354d862')
+
+prepare() {
+ (cd ${_pyname}-${pkgver}
+ sed -r 's|(check_idle_cpu_usage\(.*,) .*\)|\1 0.8\)|g' -i tests/*_test.py
+ )
+ cp -a ${_pyname}-${pkgver}{,-py2}
+ sed 's|python|python2|' -i ${_pyname}-${pkgver}-py2/examples/*
+}
+
+build() {
+ (cd ${_pyname}-${pkgver}
+ python setup.py build
+ make -C doc text
+ )
+ (cd ${_pyname}-${pkgver}-py2
+ python2 setup.py build
+ make -C doc text
+ )
+}
+
+check() {
+ (cd ${_pyname}-${pkgver}
+ nosetests -sv tests
+ )
+ (cd ${_pyname}-${pkgver}-py2
+ nosetests2 -sv tests
+ )
+}
+
+package_python-eventlet() {
+ depends=('python' 'python-greenlet')
+ optdepends=('python-psycopg2: non-blocking PostgreSQL support'
+ 'python-pyopenssl: non-blocking SSL support'
+ 'python-httplib2: non-blocking HTTP support'
+ 'python-pyzmq: non-blocking ZeroMQ support'
+ 'python-dnspython: non-blocking DNS support')
+
+ cd ${_pyname}-${pkgver}
+ python setup.py install --prefix=/usr --root="${pkgdir}" -O1
+ install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+ install -d "${pkgdir}/usr/share/doc/${pkgname}"
+ cp -r doc/_build/text "${pkgdir}/usr/share/doc/${pkgname}"
+ cp -r examples "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+package_python2-eventlet() {
+ depends=('python2' 'python2-greenlet' 'python2-subprocess32')
+ optdepends=('python2-psycopg2: non-blocking PostgreSQL support'
+ 'python2-pyopenssl: non-blocking SSL support'
+ 'python2-httplib2: non-blocking HTTP support'
+ 'python2-pyzmq: non-blocking ZeroMQ support'
+ 'python2-dnspython: non-blocking DNS support')
+
+ cd ${_pyname}-${pkgver}-py2
+ python2 setup.py install --prefix=/usr --root="${pkgdir}" -O1
+ install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+ install -d "${pkgdir}/usr/share/doc/${pkgname}"
+ cp -r doc/_build/text "${pkgdir}/usr/share/doc/${pkgname}"
+ cp -r examples "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:
More information about the arch-commits
mailing list