pkgsrc/devel/py-uvloop/Makefile
adam 6e83a93d26 py-uvloop: updated to 0.14.0
v0.14.0

New Features
Add support for Python 3.8.

Bug Fixes
Multiple fixes in the SSL/TLS layer.
Restore signal.wakeup_fd after the event loop is closed.
Handle large timeouts in loop.call_later().
Fix possible feezing of uvloop on os.fork.
Better handle Unix sockets for datagram transports.
Avoid double connecting to remote_addr for datagram transports.

Build
Bump Cython to 0.29.13.
Bump libuv to v1.33.1.
2019-11-06 12:48:47 +00:00

21 lines
696 B
Makefile

# $NetBSD: Makefile,v 1.21 2019/11/06 12:48:47 adam Exp $
DISTNAME= uvloop-0.14.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.33.1:../../devel/libuv
TEST_DEPENDS+= ${PYPKGPREFIX}-OpenSSL-[0-9]*:../../security/py-OpenSSL
TEST_DEPENDS+= ${PYPKGPREFIX}-psutil-[0-9]*:../../sysutils/py-psutil
PYTHON_VERSIONS_INCOMPATIBLE= 27
.include "../../devel/libuv/buildlink3.mk"
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"