1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-22 08:58:47 +00:00

A Future object represents an operation that is currently in progress,

or has recently completed. Library functions that perform asynchronous
operations would use Future objects to allow calling programs to control
or wait for those operations to complete.

WWW: http://search.cpan.org/dist/Future/

This new module is needed to update devel/p5-CPS.
This commit is contained in:
Frederic Culot 2013-01-14 13:50:02 +00:00
parent 3b254441a8
commit bec6473093
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=310377
4 changed files with 36 additions and 0 deletions

View File

@ -1992,6 +1992,7 @@
SUBDIR += p5-Form-Sensible
SUBDIR += p5-FreeBSD-i386-Ptrace
SUBDIR += p5-FreezeThaw
SUBDIR += p5-Future
SUBDIR += p5-Gearman
SUBDIR += p5-Gearman-Client-Async
SUBDIR += p5-Gearman-Server

27
devel/p5-Future/Makefile Normal file
View File

@ -0,0 +1,27 @@
# Created by: Frederic Culot <culot@FreeBSD.org>
# $FreeBSD$
PORTNAME= Future
PORTVERSION= 0.07
CATEGORIES= devel perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:PEVANS
PKGNAMEPREFIX= p5-
MAINTAINER= culot@FreeBSD.org
COMMENT= Build objects representing outstanding operations
LICENSE= ART10 GPLv1
LICENSE_COMB= dual
TEST_DEPENDS= p5-Test-Fatal>0:${PORTSDIR}/devel/p5-Test-Fatal \
p5-Test-Identity>0:${PORTSDIR}/devel/p5-Test-Identity \
p5-Test-Refcount>0:${PORTSDIR}/devel/p5-Test-Refcount
PERL_MODBUILD= yes
MAN3= Future.3
PLIST_FILES= %%SITE_PERL%%/Future.pm
.include <bsd.port.mk>

2
devel/p5-Future/distinfo Normal file
View File

@ -0,0 +1,2 @@
SHA256 (Future-0.07.tar.gz) = 56a3fa2cde24041afc36a5a430b9294c17e06a1ab882316a33a65c63baf2fc45
SIZE (Future-0.07.tar.gz) = 34271

View File

@ -0,0 +1,6 @@
A Future object represents an operation that is currently in progress,
or has recently completed. Library functions that perform asynchronous
operations would use Future objects to allow calling programs to control
or wait for those operations to complete.
WWW: http://search.cpan.org/dist/Future/