From owner-svn-ports-head@FreeBSD.ORG Fri Jun 20 04:39:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3BF8CD54; Fri, 20 Jun 2014 04:39:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 0FBA1213D; Fri, 20 Jun 2014 04:39:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5K4dltd064375; Fri, 20 Jun 2014 04:39:47 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5K4dloT064364; Fri, 20 Jun 2014 04:39:47 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201406200439.s5K4dloT064364@svn.freebsd.org> From: Kubilay Kocak Date: Fri, 20 Jun 2014 04:39:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r358501 - in head/devel: . py-asyncio X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jun 2014 04:39:48 -0000 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 +# $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 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