From owner-svn-ports-head@freebsd.org Wed Apr 12 02:29:33 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1D356D3A316; Wed, 12 Apr 2017 02:29:33 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C981633D; Wed, 12 Apr 2017 02:29:32 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v3C2TVfH076718; Wed, 12 Apr 2017 02:29:31 GMT (envelope-from shaun@FreeBSD.org) Received: (from shaun@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v3C2TVGd076714; Wed, 12 Apr 2017 02:29:31 GMT (envelope-from shaun@FreeBSD.org) Message-Id: <201704120229.v3C2TVGd076714@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: shaun set sender to shaun@FreeBSD.org using -f From: Shaun Amott Date: Wed, 12 Apr 2017 02:29:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r438326 - in head/www: . py-hpack X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Apr 2017 02:29:33 -0000 Author: shaun Date: Wed Apr 12 02:29:31 2017 New Revision: 438326 URL: https://svnweb.freebsd.org/changeset/ports/438326 Log: New port: HTTP/2 header encoding (HPACK) logic implementation. Added: head/www/py-hpack/ head/www/py-hpack/Makefile (contents, props changed) head/www/py-hpack/distinfo (contents, props changed) head/www/py-hpack/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Wed Apr 12 02:28:39 2017 (r438325) +++ head/www/Makefile Wed Apr 12 02:29:31 2017 (r438326) @@ -1679,6 +1679,7 @@ SUBDIR += py-gunicorn SUBDIR += py-h2 SUBDIR += py-horizon + SUBDIR += py-hpack SUBDIR += py-html SUBDIR += py-html5lib SUBDIR += py-http-parser Added: head/www/py-hpack/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-hpack/Makefile Wed Apr 12 02:29:31 2017 (r438326) @@ -0,0 +1,22 @@ +# Created by: Shaun Amott +# $FreeBSD$ + +PORTNAME= hpack +PORTVERSION= 3.0.0 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= shaun@FreeBSD.org +COMMENT= HTTP/2 header encoding (HPACK) logic implementation + +LICENSE= MIT + +USES?= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +post-extract: + ${REINPLACE_CMD} -e 's/RFC 7541 ../RFC 7541 section/' ${WRKSRC}/HISTORY.rst + +.include Added: head/www/py-hpack/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-hpack/distinfo Wed Apr 12 02:29:31 2017 (r438326) @@ -0,0 +1,3 @@ +TIMESTAMP = 1491954952 +SHA256 (hpack-3.0.0.tar.gz) = 8eec9c1f4bfae3408a3f30500261f7e6a65912dc138526ea054f9ad98892e9d2 +SIZE (hpack-3.0.0.tar.gz) = 43321 Added: head/www/py-hpack/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-hpack/pkg-descr Wed Apr 12 02:29:31 2017 (r438326) @@ -0,0 +1,6 @@ +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. + +WWW: http://hyper.rtfd.org/