dfee04535e
4.1.0 (2021-10-05) ------------------ API Changes (Backward-Compatible) - Support for Python 3.9 has been added. - Support for Python 3.10 has been added. - New example for a Python socket HTTP/2 client. - New `OutputLogger` for use with ``h2.config.logger``. This is only provided for convenience and not part of the stable API. Bugfixes - Header validation now rejects empty header names with a ProtocolError. While hpack decodes such header blocks without issues, they violate the HTTP semantics. - Fix TE header name in error message.
24 lines
670 B
Makefile
24 lines
670 B
Makefile
# $NetBSD: Makefile,v 1.10 2021/10/08 13:21:56 adam Exp $
|
|
|
|
DISTNAME= h2-4.1.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= www python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=h/h2/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/python-hyper/h2
|
|
COMMENT= HTTP/2 State-Machine based protocol implementation
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-hyperframe>=6.0.0:../../www/py-hyperframe
|
|
DEPENDS+= ${PYPKGPREFIX}-hpack>=4.0:../../net/py-hpack
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
PYSETUPTESTTARGET= pytest
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|