Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 14 Jun 2017 17:19:32 +0000 (UTC)
From:      William Grzybowski <wg@FreeBSD.org>
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
Message-ID:  <201706141719.v5EHJWLn088499@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706141719.v5EHJWLn088499>