mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 11:45:18 +03:00
29 lines
886 B
Text
29 lines
886 B
Text
# Maintainer: Elizabeth Jennifer Myers <elizabeth@sporksirc.net>
|
|
# Contributor: Elizabeth Jennifer Myers <elizabeth@sporksirc.net>
|
|
pkgname=py3-eventlet
|
|
_pkgname=eventlet
|
|
pkgver=0.19.0
|
|
pkgrel=0
|
|
pkgdesc="Python library for seamless coroutine-based concurrency"
|
|
options="!check" # Some tests fail
|
|
url="http://eventlet.net/"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3 py3-greenlet py3-openssl"
|
|
makedepends="py3-setuptools"
|
|
checkdepends="py3-nose"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py test
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --root "$pkgdir"
|
|
}
|
|
sha512sums="68b7f46b9270dc975a1133b3e8f77441a942b5b2ddd890c97a4cbfbc3f0070dabb3620800469023f0923c23ef5b50fbe9ec0bd354e084614deffde8b3d7cc84e eventlet-0.19.0.tar.gz"
|