svn commit: r358551 - in head/www: . py-aiohttp
Kubilay Kocak
koobs at FreeBSD.org
Fri Jun 20 10:54:10 UTC 2014
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 <koobs at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= aiohttp
+PORTVERSION= 0.8.1
+CATEGORIES= www python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= koobs at 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 <bsd.port.pre.mk>
+
+.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 <bsd.port.post.mk>
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/
More information about the svn-ports-all
mailing list