asyncpg v0.20.0 Improvements Support Python 3.8 Support PgBouncer by sending only a single SYNC message per query Bug Fixes Handle IP values with prefix in "inet" type as ipaddress.IPvXInterface Close transport if connection times out Use faster UUID codecs; make UUID decoding/encoding/operations 2-7x faster Use loop.start_tls() to upgrade connections to SSL Build Bump Cython to 0.29.14
22 lines
656 B
Makefile
22 lines
656 B
Makefile
# $NetBSD: Makefile,v 1.13 2019/11/22 09:32:37 adam Exp $
|
|
|
|
DISTNAME= asyncpg-0.20.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= databases python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=a/asyncpg/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/MagicStack/asyncpg
|
|
COMMENT= Asyncio PosgtreSQL driver
|
|
LICENSE= apache-2.0
|
|
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-flake8>=3.5.0:../../devel/py-flake8
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-uvloop>=0.8.0:../../devel/py-uvloop
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
|
|
|
# Testing requires postgresql-contrib
|
|
|
|
.include "../../devel/py-cython/buildlink3.mk"
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|