freebsd-ports/devel/py-async/Makefile
Wen Heping a0d5ac8133 Async is one more attempt to make the definition and execution of asynchronous
interdependent operations easy. For that to work, you may define tasks which
communicate with each other by channels. Channels transfer items, which is very
similar to bytes flowing through pipes uses in inter-process communication.
Items will only be generated on demand, that is when you read from the
respective output channel.

WWW: http://packages.python.org/async/intro.html
2011-03-15 07:55:54 +00:00

20 lines
427 B
Makefile

# New ports collection makefile for: async
# Date created: March 15, 2011
# Whom: Wen Heping <wenheping@gmail.com>
#
# $FreeBSD$
#
PORTNAME= async
PORTVERSION= 0.6.1
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= wen@FreeBSD.org
COMMENT= Framework to process interdependent tasks in a pool of workers
USE_PYTHON= yes
USE_PYDISTUTILS= yes
.include <bsd.port.mk>