2f2ef15d35
Fast implementation of asyncio event loop on top of libuv. Signed-off-by: Asaf Kahlon <asafka7@gmail.com> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com> [Arnout: change order of 'depends on' lines] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
18 lines
742 B
Makefile
18 lines
742 B
Makefile
################################################################################
|
|
#
|
|
# python-uvloop
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_UVLOOP_VERSION = 0.11.2
|
|
PYTHON_UVLOOP_SOURCE = uvloop-$(PYTHON_UVLOOP_VERSION).tar.gz
|
|
PYTHON_UVLOOP_SITE = https://files.pythonhosted.org/packages/5c/37/6daa39aac42b2deda6ee77f408bec0419b600e27b89b374b0d440af32b10
|
|
PYTHON_UVLOOP_SETUP_TYPE = setuptools
|
|
PYTHON_UVLOOP_LICENSE = Apache-2.0, MIT
|
|
PYTHON_UVLOOP_LICENSE_FILES = LICENSE-APACHE LICENSE-MIT
|
|
PYTHON_UVLOOP_BUILD_OPTS = build_ext --inplace --use-system-libuv
|
|
PYTHON_UVLOOP_INSTALL_TARGET_OPTS = build_ext --inplace --use-system-libuv
|
|
PYTHON_UVLOOP_DEPENDENCIES = libuv
|
|
|
|
$(eval $(python-package))
|