a01258abbd
4.0.0: API Changes (Backward-Incompatible) Support for Python 2.7 has been removed. Support for Python 3.4 has been removed. Support for Python 3.5 has been removed. Support for PyPy (Python 2.7 compatible) has been removed. Support for Python 3.8 has been added. Bugfixes Performance improvement of static header search. Use dict search instead of linear search. Fix debug output of headers during encoding.
26 lines
689 B
Makefile
26 lines
689 B
Makefile
# $NetBSD: Makefile,v 1.6 2020/10/03 18:09:10 adam Exp $
|
|
|
|
DISTNAME= hpack-4.0.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= net python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=h/hpack/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/python-hyper/hpack
|
|
COMMENT= Pure-Python HPACK header compression
|
|
LICENSE= mit
|
|
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-hypothesis-[0-9]*:../../devel/py-hypothesis
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
PYSETUPTESTTARGET= pytest
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
|
|
|
pre-test:
|
|
${MKDIR} ${WRKSRC}/test/test_fixtures/raw-data
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|