From owner-svn-ports-all@freebsd.org Wed Jun 14 17:19:34 2017 Return-Path: Delivered-To: svn-ports-all@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 03358BEFE94; Wed, 14 Jun 2017 17:19:34 +0000 (UTC) (envelope-from wg@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 C1F9471FD1; Wed, 14 Jun 2017 17:19:33 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5EHJXOh088504; Wed, 14 Jun 2017 17:19:33 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5EHJWLn088499; Wed, 14 Jun 2017 17:19:32 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201706141719.v5EHJWLn088499@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Wed, 14 Jun 2017 17:19:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443593 - in head/www: . py-aiohttp-wsgi 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.23 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: Wed, 14 Jun 2017 17:19:34 -0000 Author: wg Date: Wed Jun 14 17:19:32 2017 New Revision: 443593 URL: https://svnweb.freebsd.org/changeset/ports/443593 Log: www/py-aiohttp-wsgi: WSGI adapter for aiohttp. Features: * Run WSGI applications (e.g. Django, Flask) on aiohttp. * Handle thousands of client connections, using asyncio. * Add websockets to your existing Python web app! WWW: https://github.com/etianen/aiohttp-wsgi Added: head/www/py-aiohttp-wsgi/ head/www/py-aiohttp-wsgi/Makefile (contents, props changed) head/www/py-aiohttp-wsgi/distinfo (contents, props changed) head/www/py-aiohttp-wsgi/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Wed Jun 14 17:14:19 2017 (r443592) +++ head/www/Makefile Wed Jun 14 17:19:32 2017 (r443593) @@ -1503,6 +1503,7 @@ SUBDIR += py-WebFlash SUBDIR += py-WebTest SUBDIR += py-aiohttp + SUBDIR += py-aiohttp-wsgi SUBDIR += py-albatross SUBDIR += py-amf SUBDIR += py-apachelog Added: head/www/py-aiohttp-wsgi/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-aiohttp-wsgi/Makefile Wed Jun 14 17:19:32 2017 (r443593) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= aiohttp-wsgi +PORTVERSION= 0.7.0 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wg@FreeBSD.org +COMMENT= WSGI adapter for aiohttp + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}aiohttp>0:www/py-aiohttp + +USES= python:3.4+ +USE_PYTHON= autoplist distutils + +.include Added: head/www/py-aiohttp-wsgi/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-aiohttp-wsgi/distinfo Wed Jun 14 17:19:32 2017 (r443593) @@ -0,0 +1,3 @@ +TIMESTAMP = 1497461100 +SHA256 (aiohttp-wsgi-0.7.0.tar.gz) = 9236966cb62187b6de3e88bbd38af9b3d01330830479e27c691ad7689cb0ca30 +SIZE (aiohttp-wsgi-0.7.0.tar.gz) = 8503 Added: head/www/py-aiohttp-wsgi/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-aiohttp-wsgi/pkg-descr Wed Jun 14 17:19:32 2017 (r443593) @@ -0,0 +1,9 @@ +WSGI adapter for aiohttp. + +Features: + + * Run WSGI applications (e.g. Django, Flask) on aiohttp. + * Handle thousands of client connections, using asyncio. + * Add websockets to your existing Python web app! + +WWW: https://github.com/etianen/aiohttp-wsgi