svn commit: r358501 - in head/devel: . py-asyncio

Kubilay Kocak koobs at FreeBSD.org
Fri Jun 20 04:39:48 UTC 2014


Author: koobs
Date: Fri Jun 20 04:39:46 2014
New Revision: 358501
URL: http://svnweb.freebsd.org/changeset/ports/358501
QAT: https://qat.redports.org/buildarchive/r358501/

Log:
  devel/py-asyncio: Reference implementation of PEP 3156 (Async IO) [NEW PORT]
  
  The reference implementation of Python PEP 3156: Asynchronous IO Support.
  
  Codename "Tulip".
  
  WWW: https://code.google.com/p/tulip

Added:
  head/devel/py-asyncio/
  head/devel/py-asyncio/Makefile   (contents, props changed)
  head/devel/py-asyncio/distinfo   (contents, props changed)
  head/devel/py-asyncio/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Jun 20 04:12:27 2014	(r358500)
+++ head/devel/Makefile	Fri Jun 20 04:39:46 2014	(r358501)
@@ -3554,6 +3554,7 @@
     SUBDIR += py-aspyct
     SUBDIR += py-astroid
     SUBDIR += py-async
+    SUBDIR += py-asyncio
     SUBDIR += py-avro
     SUBDIR += py-babel
     SUBDIR += py-babelfish

Added: head/devel/py-asyncio/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-asyncio/Makefile	Fri Jun 20 04:39:46 2014	(r358501)
@@ -0,0 +1,22 @@
+# Created by: Kubilay Kocak <koobs at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	asyncio
+PORTVERSION=	3.4.1
+CATEGORIES=	www python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	koobs at FreeBSD.org
+COMMENT=	Reference implementation of PEP 3156 (Asynchronous IO)
+
+LICENSE=	APACHE20
+
+USE_PYTHON=		3.3+
+USE_PYDISTUTILS=	yes
+PYDISTUTILS_AUTOPLIST=	yes
+
+regression-test: build
+	@cd ${WRKSRC} && ${MAKE} test
+
+.include <bsd.port.mk>

Added: head/devel/py-asyncio/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-asyncio/distinfo	Fri Jun 20 04:39:46 2014	(r358501)
@@ -0,0 +1,2 @@
+SHA256 (asyncio-3.4.1.tar.gz) = 63c071f64f6f5a007603159c7a0da73a13bdf830674abe6fd89b3470e288d6f7
+SIZE (asyncio-3.4.1.tar.gz) = 155936

Added: head/devel/py-asyncio/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-asyncio/pkg-descr	Fri Jun 20 04:39:46 2014	(r358501)
@@ -0,0 +1,3 @@
+"Tulip", the reference implementation of PEP 3156: Asynchronous IO Support.
+
+WWW: https://code.google.com/p/tulip


More information about the svn-ports-head mailing list