mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
5ea2406f32
AnyEvent::Task is a pre-fork-on-demand server (AnyEvent::Task::Server) combined with a persistent worker-pooled client (AnyEvent::Task::Client). In a nutshell, a synchronous worker process is forked off by a server whenever a client asks for one. The client keeps as many of these workers around as it wants and delegates tasks to them asynchronously. WWW: http://search.cpan.org/dist/AnyEvent-Task/ PR: 192265 Submitted by: bill.brinzer@gmail.com
29 lines
679 B
Makefile
29 lines
679 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= AnyEvent-Task
|
|
PORTVERSION= 0.801
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= bill.brinzer@gmail.com
|
|
COMMENT= Client/server-based asynchronous worker pool
|
|
|
|
LICENSE= ART10 GPLv1
|
|
LICENSE_COMB= dual
|
|
|
|
RUN_DEPENDS= p5-AnyEvent>=0:${PORTSDIR}/devel/p5-AnyEvent \
|
|
p5-Callback-Frame>=0:${PORTSDIR}/devel/p5-Callback-Frame \
|
|
p5-Guard>=0:${PORTSDIR}/devel/p5-Guard \
|
|
p5-JSON-XS>=0:${PORTSDIR}/converters/p5-JSON-XS \
|
|
p5-Log-Defer>=0.300:${PORTSDIR}/devel/p5-Log-Defer \
|
|
p5-common-sense>=0:${PORTSDIR}/devel/p5-common-sense
|
|
BUILD_DEPENDS:= ${RUN_DEPENDS}
|
|
|
|
NO_ARCH= yes
|
|
|
|
USES= perl5
|
|
USE_PERL5= configure
|
|
|
|
.include <bsd.port.mk>
|