1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-05 06:27:37 +00:00

New port: HTTP/2 State-Machine based protocol implementation.

This commit is contained in:
Shaun Amott 2017-04-12 02:28:39 +00:00
parent 762427034a
commit 3cc5901947
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=438325
4 changed files with 32 additions and 0 deletions

View File

@ -1677,6 +1677,7 @@
SUBDIR += py-graphite-web
SUBDIR += py-grequests
SUBDIR += py-gunicorn
SUBDIR += py-h2
SUBDIR += py-horizon
SUBDIR += py-html
SUBDIR += py-html5lib

22
www/py-h2/Makefile Normal file
View File

@ -0,0 +1,22 @@
# Created by: Shaun Amott <shaun@FreeBSD.org>
# $FreeBSD$
PORTNAME= h2
PORTVERSION= 3.0.1
CATEGORIES= www python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= shaun@FreeBSD.org
COMMENT= HTTP/2 State-Machine based protocol implementation
LICENSE= MIT
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hyperframe>=5.0.0:www/py-hyperframe \
${PYTHON_PKGNAMEPREFIX}hpack>=2.3:www/py-hpack
USES?= python
USE_PYTHON= distutils autoplist
NO_ARCH= yes
.include <bsd.port.mk>

3
www/py-h2/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1491953058
SHA256 (h2-3.0.1.tar.gz) = b2962f883fa392a23cbfcc4ad03c335bcc661be0cf9627657b589f0df2206e64
SIZE (h2-3.0.1.tar.gz) = 2208816

6
www/py-h2/pkg-descr Normal file
View File

@ -0,0 +1,6 @@
This is a pure-Python implementation of a HTTP/2 protocol stack. It's
written from the ground up to be embeddable in whatever program you
choose to use, ensuring that you can speak HTTP/2 regardless of your
programming paradigm.
WWW: http://hyper.rtfd.org/