Version 0.22.1 is an identical re-release of 0.22.0 Changes since v0.21.0: https://github.com/MagicStack/uvloop/releases/tag/v0.22.0 https://github.com/MagicStack/uvloop/releases/tag/v0.22.1 Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu> Signed-off-by: Julien Olivain <ju.o@free.fr>
21 lines
754 B
Makefile
21 lines
754 B
Makefile
################################################################################
|
|
#
|
|
# python-uvloop
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_UVLOOP_VERSION = 0.22.1
|
|
PYTHON_UVLOOP_SOURCE = uvloop-$(PYTHON_UVLOOP_VERSION).tar.gz
|
|
PYTHON_UVLOOP_SITE = https://files.pythonhosted.org/packages/06/f0/18d39dbd1971d6d62c4629cc7fa67f74821b0dc1f5a77af43719de7936a7
|
|
PYTHON_UVLOOP_SETUP_TYPE = setuptools
|
|
PYTHON_UVLOOP_LICENSE = Apache-2.0, MIT
|
|
PYTHON_UVLOOP_LICENSE_FILES = LICENSE-APACHE LICENSE-MIT
|
|
PYTHON_UVLOOP_DEPENDENCIES = libuv
|
|
PYTHON_UVLOOP_BUILD_OPTS = \
|
|
--skip-dependency-check \
|
|
-C--build-option=build_ext \
|
|
-C--build-option=--inplace \
|
|
-C--build-option=--use-system-libuv
|
|
|
|
$(eval $(python-package))
|