1
0
mirror of https://git.freebsd.org/ports.git synced 2026-06-02 11:08:52 +00:00

www/py-hyperframe: Update to 6.1.0

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

Changes:	https://github.com/python-hyper/hyperframe/blob/master/CHANGELOG.rst
PR:		295158
Approved by:	maintainer (timeout, 16 days)
This commit is contained in:
Po-Chuan Hsieh
2026-05-26 12:56:12 +08:00
parent 33a1a09ed5
commit fe34b951b5
4 changed files with 29 additions and 15 deletions
+10 -7
View File
@@ -1,18 +1,21 @@
PORTNAME= hyperframe
PORTVERSION= 6.0.0
PORTREVISION= 1
PORTVERSION= 6.1.0
CATEGORIES= www python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= shaun@FreeBSD.org
COMMENT= Python module that decodes binary streams into HTTP/2 frames
WWW= https://hyper.rtfd.org/
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Pure-Python HTTP/2 framing
WWW= https://python-hyper.org/projects/hyperframe/en/stable/ \
https://github.com/python-hyper/hyperframe
LICENSE= MIT
USES?= python
USE_PYTHON= distutils autoplist
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=61:devel/py-setuptools@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
USES= python
USE_PYTHON= autoplist concurrent pep517
NO_ARCH= yes
+3 -3
View File
@@ -1,3 +1,3 @@
TIMESTAMP = 1608920027
SHA256 (hyperframe-6.0.0.tar.gz) = 742d2a4bc3152a340a49d59f32e33ec420aa8e7054c1444ef5c7efff255842f1
SIZE (hyperframe-6.0.0.tar.gz) = 24640
TIMESTAMP = 1768272972
SHA256 (hyperframe-6.1.0.tar.gz) = f630908a00854a7adeabd6382b43923a4c4cd4b821fcb527e6ab9e15382a3b08
SIZE (hyperframe-6.1.0.tar.gz) = 26566
@@ -0,0 +1,11 @@
--- pyproject.toml.orig 2025-01-22 21:35:30 UTC
+++ pyproject.toml
@@ -2,7 +2,7 @@
# https://packaging.python.org/en/latest/specifications/pyproject-toml/
[build-system]
-requires = ["setuptools>=75.6.0"]
+requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
+5 -5
View File
@@ -1,6 +1,6 @@
This library contains the HTTP/2 framing code used in the hyper project.
It provides a pure-Python codebase that is capable of decoding a binary
stream into HTTP/2 frames.
This library contains the HTTP/2 framing code used in the hyper project. It
provides a pure-Python codebase that is capable of decoding a binary stream into
HTTP/2 frames.
This library is used directly by hyper and a number of other projects to
provide HTTP/2 frame decoding logic.
This library is used directly by hyper and a number of other projects to provide
HTTP/2 frame decoding logic.