diff options
author | Michael Zhou <zhoumichaely@gmail.com> | 2011-04-28 10:13:53 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2011-04-28 05:26:38 -0500 |
commit | 52418145b081bd0a9e2e75bda35d8db06147df31 (patch) | |
tree | 0419b4adc12f598908f1315e2fa7662645e22419 /testing/py-gevent | |
parent | ff87ee307a92481bbe2bc527baaaefd0badc485e (diff) | |
download | aports-52418145b081bd0a9e2e75bda35d8db06147df31.tar.bz2 aports-52418145b081bd0a9e2e75bda35d8db06147df31.tar.xz |
testing/py-gevent: new package
Diffstat (limited to 'testing/py-gevent')
-rw-r--r-- | testing/py-gevent/APKBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/py-gevent/APKBUILD b/testing/py-gevent/APKBUILD new file mode 100644 index 0000000000..7cf3309200 --- /dev/null +++ b/testing/py-gevent/APKBUILD @@ -0,0 +1,25 @@ +# Maintainer: Michael Zhou <zhoumichaely@gmail.com> +# Contributor: Michael Zhou <zhoumichaely@gmail.com> +pkgname=py-gevent +pkgver=0.13.5 +pkgrel=0 +pkgdesc="Python library for seamless coroutine-based concurrency" +url="http://gevent.org/" +arch="x86 x86_64" +license="MIT" +depends="python py-greenlet libevent" +makedepends="python-dev py-setuptools libevent-dev" +source="http://pypi.python.org/packages/source/g/gevent/gevent-${pkgver}.tar.gz" + +_builddir="$srcdir"/gevent-$pkgver +build () +{ + cd "$_builddir" + python setup.py build +} + +package() { + cd "$_builddir" + python setup.py install --root="$pkgdir" +} +md5sums="8143d708256eec0579fb65d76ab0b05c gevent-0.13.5.tar.gz" |