From owner-svn-ports-all@FreeBSD.ORG Fri Jun 20 10:54:10 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 84593F7B; Fri, 20 Jun 2014 10:54:10 +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 642DB216A; Fri, 20 Jun 2014 10:54:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5KAsABw040375; Fri, 20 Jun 2014 10:54:10 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5KAs9xV040369; Fri, 20 Jun 2014 10:54:09 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201406201054.s5KAs9xV040369@svn.freebsd.org> From: Kubilay Kocak Date: Fri, 20 Jun 2014 10:54:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r358551 - in head/www: . py-aiohttp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jun 2014 10:54:10 -0000 Author: koobs Date: Fri Jun 20 10:54:09 2014 New Revision: 358551 URL: http://svnweb.freebsd.org/changeset/ports/358551 QAT: https://qat.redports.org/buildarchive/r358551/ Log: www/py-aiohttp: HTTP client/server for asyncio [NEW PORT] HTTP client/server for Python asyncio (PEP-3156) Features: * Compression (deflate) * HTTP Basic Authenntication * Chunked Transfer Encoding * Connection Pooling * Session Cookies * Custom Request/Response classes WWW: https://github.com/KeepSafe/aiohttp/ Added: head/www/py-aiohttp/ head/www/py-aiohttp/Makefile (contents, props changed) head/www/py-aiohttp/distinfo (contents, props changed) head/www/py-aiohttp/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri Jun 20 10:45:45 2014 (r358550) +++ head/www/Makefile Fri Jun 20 10:54:09 2014 (r358551) @@ -1475,6 +1475,7 @@ SUBDIR += py-WebError SUBDIR += py-WebFlash SUBDIR += py-WebTest + SUBDIR += py-aiohttp SUBDIR += py-albatross SUBDIR += py-amf SUBDIR += py-apachelog Added: head/www/py-aiohttp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-aiohttp/Makefile Fri Jun 20 10:54:09 2014 (r358551) @@ -0,0 +1,32 @@ +# Created by: Kubilay Kocak +# $FreeBSD$ + +PORTNAME= aiohttp +PORTVERSION= 0.8.1 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs@FreeBSD.org +COMMENT= HTTP client/server for asyncio + +OPTIONS_DEFINE= TESTS +TESTS_DESC= Install tools for test suite +TESTS_BUILD_DEPENDS= ${RUN_DEPENDS} \ + ${PYTHON_PKGNAMEPREFIX}nose>0:${PORTSDIR}/devel/py-nose \ + ${PYTHON_PKGNAMEPREFIX}gunicorn>0:${PORTSDIR}/www/py-gunicorn + +USE_PYTHON= 3.3+ +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include + +.if ${PYTHON_REL} < 340 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}asyncio>0:${PORTSDIR}/devel/py-asyncio +.endif + +regression-test: build + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test + +.include Added: head/www/py-aiohttp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-aiohttp/distinfo Fri Jun 20 10:54:09 2014 (r358551) @@ -0,0 +1,2 @@ +SHA256 (aiohttp-0.8.1.tar.gz) = 605ac693c681d9582afaca5db6ecda6a8782a38beeafe1adc2dddbbd0fcd10f2 +SIZE (aiohttp-0.8.1.tar.gz) = 76487 Added: head/www/py-aiohttp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-aiohttp/pkg-descr Fri Jun 20 10:54:09 2014 (r358551) @@ -0,0 +1,12 @@ +HTTP client/server for Python asyncio (PEP-3156) + +Features: + + * Compression (deflate) + * HTTP Basic Authenntication + * Chunked Transfer Encoding + * Connection Pooling + * Session Cookies + * Custom Request/Response classes + +WWW: https://github.com/KeepSafe/aiohttp/