Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Jun 2014 04:39:47 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r358501 - in head/devel: . py-asyncio
Message-ID:  <201406200439.s5K4dloT064364@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	asyncio
+PORTVERSION=	3.4.1
+CATEGORIES=	www python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	koobs@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



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