Date: Mon, 21 Jul 2014 19:35:29 +0000 (UTC) From: Steven Kreuzer <skreuzer@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r362471 - in head/devel: . py-trollius Message-ID: <201407211935.s6LJZTJ0099685@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: skreuzer Date: Mon Jul 21 19:35:29 2014 New Revision: 362471 URL: http://svnweb.freebsd.org/changeset/ports/362471 QAT: https://qat.redports.org/buildarchive/r362471/ Log: Trollius provides infrastructure for writing single-threaded concurrent code using coroutines, multiplexing I/O access over sockets and other resources, running network clients and servers, and other related primitives. WWW: https://bitbucket.org/enovance/trollius/ Added: head/devel/py-trollius/ head/devel/py-trollius/Makefile (contents, props changed) head/devel/py-trollius/distinfo (contents, props changed) head/devel/py-trollius/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Jul 21 19:29:14 2014 (r362470) +++ head/devel/Makefile Mon Jul 21 19:35:29 2014 (r362471) @@ -3904,6 +3904,7 @@ SUBDIR += py-trace2html SUBDIR += py-traits SUBDIR += py-transaction + SUBDIR += py-trollius SUBDIR += py-turbocheetah SUBDIR += py-turbojson SUBDIR += py-turbojson11 Added: head/devel/py-trollius/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-trollius/Makefile Mon Jul 21 19:35:29 2014 (r362471) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= trollius +PORTVERSION= 0.4 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= skreuzer@FreeBSD.org +COMMENT= Port of the Tulip project (asyncio module, PEP 3156) on Python 2 + +LICENSE= MIT + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}futures>0:${PORTSDIR}/devel/py-futures +RUN_DEPENDS:= ${BUILD_DEPENDS} + +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include <bsd.port.mk> Added: head/devel/py-trollius/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-trollius/distinfo Mon Jul 21 19:35:29 2014 (r362471) @@ -0,0 +1,2 @@ +SHA256 (trollius-0.4.tar.gz) = 448b544df3f50d0ca07068214553479b383b6c8e90745ab6324f08be094eaee2 +SIZE (trollius-0.4.tar.gz) = 233899 Added: head/devel/py-trollius/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-trollius/pkg-descr Mon Jul 21 19:35:29 2014 (r362471) @@ -0,0 +1,5 @@ +Trollius provides infrastructure for writing single-threaded concurrent code +using coroutines, multiplexing I/O access over sockets and other resources, +running network clients and servers, and other related primitives. + +WWW: https://bitbucket.org/enovance/trollius/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407211935.s6LJZTJ0099685>