From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 12:35:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 98F2EE60; Thu, 9 Oct 2014 12:35:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 6AEC1798; Thu, 9 Oct 2014 12:35:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99CZSA1058232; Thu, 9 Oct 2014 12:35:28 GMT (envelope-from vg@FreeBSD.org) Received: (from vg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99CZRMX058228; Thu, 9 Oct 2014 12:35:27 GMT (envelope-from vg@FreeBSD.org) Message-Id: <201410091235.s99CZRMX058228@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: vg set sender to vg@FreeBSD.org using -f From: Veniamin Gvozdikov Date: Thu, 9 Oct 2014 12:35:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370518 - in head/www: . py-http-parser 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.18-1 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: Thu, 09 Oct 2014 12:35:28 -0000 Author: vg Date: Thu Oct 9 12:35:26 2014 New Revision: 370518 URL: https://svnweb.freebsd.org/changeset/ports/370518 QAT: https://qat.redports.org/buildarchive/r370518/ Log: HTTP request/response parser for Python compatible with Python 2.x (>=2.6), Python 3 and Pypy. If possible a C parser based on http-parser from Ryan Dahl will be used. WWW: https://github.com/benoitc/http-parser/ Added: head/www/py-http-parser/ head/www/py-http-parser/Makefile (contents, props changed) head/www/py-http-parser/distinfo (contents, props changed) head/www/py-http-parser/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Thu Oct 9 11:53:22 2014 (r370517) +++ head/www/Makefile Thu Oct 9 12:35:26 2014 (r370518) @@ -1542,6 +1542,7 @@ SUBDIR += py-grequests SUBDIR += py-gunicorn SUBDIR += py-html5lib + SUBDIR += py-http-parser SUBDIR += py-httplib2 SUBDIR += py-imdbpy SUBDIR += py-jonpy Added: head/www/py-http-parser/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-http-parser/Makefile Thu Oct 9 12:35:26 2014 (r370518) @@ -0,0 +1,21 @@ +# Created by: Veniamin Gvozdikov +# $FreeBSD$ + +PORTNAME= http-parser +PORTVERSION= 0.8.3 +CATEGORIES= www +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= vg@FreeBSD.org +COMMENT= HTTP request/response parser for python in C + +LICENSE= MIT + +USES= python +USE_PYTHON= autoplist distutils + +post-build: + @${STRIP_CMD} ${WRKDIR}/${PORTNAME}-${PORTVERSION}/http_parser/parser.so + +.include Added: head/www/py-http-parser/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-http-parser/distinfo Thu Oct 9 12:35:26 2014 (r370518) @@ -0,0 +1,2 @@ +SHA256 (http-parser-0.8.3.tar.gz) = e2aff90a60def3e476bd71694d8757c0f95ebf2fedf0a8ae34ee306e0b20db83 +SIZE (http-parser-0.8.3.tar.gz) = 83040 Added: head/www/py-http-parser/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-http-parser/pkg-descr Thu Oct 9 12:35:26 2014 (r370518) @@ -0,0 +1,5 @@ +HTTP request/response parser for Python compatible with Python 2.x (>=2.6), +Python 3 and Pypy. If possible a C parser based on http-parser +from Ryan Dahl will be used. + +WWW: https://github.com/benoitc/http-parser/