pkgsrc/devel/py-uvloop/Makefile
adam c02f8de05a py-uvloop: updated to 0.16.0
v0.16.0

This release adds Python 3.10 support, updates bundled libuv to 1.42.0
and fixes a handful of issues.

Changes

Python 3.10 support
Bump vendored libuv to 1.42.0
Use cibuildwheel to build wheels
Add support for <timer handle>.when()

Fixes

Fix ref issue when protocol is in Cython
Set python_requires in setup.py
SSL: schedule first data after waiter wakeup
Fix a possible race condition in sslproto test
Fix call_soon_threadsafe thread safety
2021-08-11 07:03:57 +00:00

21 lines
699 B
Makefile

# $NetBSD: Makefile,v 1.26 2021/08/11 07:03:57 adam Exp $
DISTNAME= uvloop-0.16.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=u/uvloop/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://github.com/MagicStack/uvloop
COMMENT= Fast implementation of asyncio event loop on top of libuv
LICENSE= mit AND apache-2.0
DEPENDS+= libuv>=1.42.0:../../devel/libuv
TEST_DEPENDS+= ${PYPKGPREFIX}-OpenSSL-[0-9]*:../../security/py-OpenSSL
TEST_DEPENDS+= ${PYPKGPREFIX}-psutil-[0-9]*:../../sysutils/py-psutil
PYTHON_VERSIONS_INCOMPATIBLE= 27 36
.include "../../devel/libuv/buildlink3.mk"
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"