Verified Commit 33a1a09e authored by sunpoet's avatar sunpoet
Browse files

www/py-hpack: Update to 4.1.0

- Fix WWW
- Update COMMENT
- Convert to USE_PYTHON=pep517
- Update pkg-descr
- Take maintainership

Changes:	https://github.com/python-hyper/hpack/blob/master/CHANGELOG.rst
PR:		295157
Approved by:	maintainer (timeout, 16 days)
parent 1400af0f
Loading
Loading
Loading
Loading
+13 −8
Original line number Diff line number Diff line
PORTNAME=	hpack
PORTVERSION=	4.0.0
PORTREVISION=	1
PORTVERSION=	4.1.0
CATEGORIES=	www python
MASTER_SITES=	PYPI
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}

MAINTAINER=	shaun@FreeBSD.org
COMMENT=	HTTP/2 header encoding (HPACK) logic implementation
WWW=		https://hyper.rtfd.org/
MAINTAINER=	sunpoet@FreeBSD.org
COMMENT=	Pure-Python HPACK header encoding
WWW=		https://python-hyper.org/projects/hpack/en/stable/ \
		https://github.com/python-hyper/hpack

LICENSE=	MIT

USES?=		cpe python
CPE_VENDOR=	python
USE_PYTHON=	distutils autoplist
BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \
		${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}

USES=		cpe python
USE_PYTHON=	autoplist concurrent pep517

NO_ARCH=	yes

CPE_VENDOR=	python

.include <bsd.port.mk>
+3 −3
Original line number Diff line number Diff line
TIMESTAMP = 1609082781
SHA256 (hpack-4.0.0.tar.gz) = fc41de0c63e687ebffde81187a948221294896f6bdc0ae2312708df339430095
SIZE (hpack-4.0.0.tar.gz) = 49117
TIMESTAMP = 1768272806
SHA256 (hpack-4.1.0.tar.gz) = ec5eca154f7056aa06f196a557655c5b009b382873ac8d1e66e79e87535f1dca
SIZE (hpack-4.1.0.tar.gz) = 51276
+2 −4
Original line number Diff line number Diff line
This module contains a pure-Python HTTP/2 header encoding (HPACK) logic
for use in Python programs that implement HTTP/2. It also contains a
compatibility layer that automatically enables the use of nghttp2 if
it's available.
This module contains a pure-Python HTTP/2 header encoding (HPACK) logic for use
in Python programs that implement HTTP/2.