Date: Wed, 12 Apr 2017 02:30:59 +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: r438327 - in head/www: . py-hyperframe Message-ID: <201704120230.v3C2UxUQ079284@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: shaun Date: Wed Apr 12 02:30:59 2017 New Revision: 438327 URL: https://svnweb.freebsd.org/changeset/ports/438327 Log: New port: Python module that decodes binary streams into HTTP/2 frames. Added: head/www/py-hyperframe/ head/www/py-hyperframe/Makefile (contents, props changed) head/www/py-hyperframe/distinfo (contents, props changed) head/www/py-hyperframe/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Wed Apr 12 02:29:31 2017 (r438326) +++ head/www/Makefile Wed Apr 12 02:30:59 2017 (r438327) @@ -1686,6 +1686,7 @@ SUBDIR += py-httpie SUBDIR += py-httplib2 SUBDIR += py-hyper + SUBDIR += py-hyperframe SUBDIR += py-imdbpy SUBDIR += py-jonpy SUBDIR += py-jswebkit Added: head/www/py-hyperframe/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-hyperframe/Makefile Wed Apr 12 02:30:59 2017 (r438327) @@ -0,0 +1,19 @@ +# Created by: Shaun Amott <shaun@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= hyperframe +PORTVERSION= 5.0.0 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= shaun@FreeBSD.org +COMMENT= Python module that decodes binary streams into HTTP/2 frames + +LICENSE= MIT + +USES?= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/www/py-hyperframe/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-hyperframe/distinfo Wed Apr 12 02:30:59 2017 (r438327) @@ -0,0 +1,3 @@ +TIMESTAMP = 1491952475 +SHA256 (hyperframe-5.0.0.tar.gz) = b886c7f25dab2e39a95cc01741c56755d11092abbcf33a6e60c465206f6ae7ec +SIZE (hyperframe-5.0.0.tar.gz) = 17691 Added: head/www/py-hyperframe/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-hyperframe/pkg-descr Wed Apr 12 02:30:59 2017 (r438327) @@ -0,0 +1,8 @@ +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. + +WWW: http://hyper.rtfd.org/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704120230.v3C2UxUQ079284>