mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-24 15:11:42 +02:00
26 lines
653 B
Plaintext
26 lines
653 B
Plaintext
# Maintainer: Michael Zhou <zhoumichaely@gmail.com>
|
|
# Contributor: Michael Zhou <zhoumichaely@gmail.com>
|
|
pkgname=py-gevent
|
|
pkgver=0.13.6
|
|
pkgrel=1
|
|
pkgdesc="Python library for seamless coroutine-based concurrency"
|
|
url="http://gevent.org/"
|
|
arch="x86 x86_64"
|
|
license="MIT"
|
|
depends="py-greenlet"
|
|
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="7c836ce2315d44ba0af6134efbcd38c9 gevent-0.13.6.tar.gz"
|