Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 12 Apr 2017 02:28:39 +0000 (UTC)
From:      Shaun Amott <shaun@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r438325 - in head/www: . py-h2
Message-ID:  <201704120228.v3C2SdtD076514@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: shaun
Date: Wed Apr 12 02:28:39 2017
New Revision: 438325
URL: https://svnweb.freebsd.org/changeset/ports/438325

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

Added:
  head/www/py-h2/
  head/www/py-h2/Makefile   (contents, props changed)
  head/www/py-h2/distinfo   (contents, props changed)
  head/www/py-h2/pkg-descr   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Wed Apr 12 02:27:26 2017	(r438324)
+++ head/www/Makefile	Wed Apr 12 02:28:39 2017	(r438325)
@@ -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

Added: head/www/py-h2/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-h2/Makefile	Wed Apr 12 02:28:39 2017	(r438325)
@@ -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>

Added: head/www/py-h2/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-h2/distinfo	Wed Apr 12 02:28:39 2017	(r438325)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1491953058
+SHA256 (h2-3.0.1.tar.gz) = b2962f883fa392a23cbfcc4ad03c335bcc661be0cf9627657b589f0df2206e64
+SIZE (h2-3.0.1.tar.gz) = 2208816

Added: head/www/py-h2/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-h2/pkg-descr	Wed Apr 12 02:28:39 2017	(r438325)
@@ -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/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704120228.v3C2SdtD076514>