37 lines
1.0 KiB
Bash
37 lines
1.0 KiB
Bash
# Template file for 'python-gevent'
|
|
pkgname=python-gevent
|
|
version=1.3.7
|
|
revision=1
|
|
wrksrc="gevent-${version}"
|
|
build_style=python-module
|
|
pycompile_module="gevent"
|
|
hostmakedepends="python-setuptools python3-setuptools python-Cython python3-Cython"
|
|
makedepends="python-devel python3-devel libev-devel c-ares-devel"
|
|
depends="python-greenlet"
|
|
short_desc="Coroutine-based Python2 networking library"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="http://www.gevent.org/"
|
|
license="MIT"
|
|
distfiles="https://github.com/gevent/gevent/archive/${version}.tar.gz"
|
|
checksum=878a83ed503bcbf97686c1cc4b28701cb3a5b8a97e92c9566b4c9f89ef1b5715
|
|
|
|
export LIBEV_EMBED=0
|
|
export CARES_EMBED=0
|
|
|
|
post_install() {
|
|
# remove python2/3 compat stuff
|
|
rm -f ${DESTDIR}/${py2_sitelib}/gevent/_*3.py
|
|
rm -f ${DESTDIR}/${py3_sitelib}/gevent/_*2.py
|
|
vlicense LICENSE
|
|
}
|
|
|
|
python3-gevent_package() {
|
|
pycompile_module="gevent"
|
|
depends="python3-greenlet"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
vlicense LICENSE
|
|
}
|
|
}
|