diff options
author | Frederic Culot <culot@FreeBSD.org> | 2013-01-14 13:50:02 +0000 |
---|---|---|
committer | Frederic Culot <culot@FreeBSD.org> | 2013-01-14 13:50:02 +0000 |
commit | bec6473093603e90e659d405e5c0dcb3bddf9f36 (patch) | |
tree | 32fbae61a93a0a1c34af9a4095cf49b1d7065284 /devel/p5-Future | |
parent | 3b254441a83cd8d551906d0fca60631537b056b7 (diff) |
Notes
Diffstat (limited to 'devel/p5-Future')
-rw-r--r-- | devel/p5-Future/Makefile | 27 | ||||
-rw-r--r-- | devel/p5-Future/distinfo | 2 | ||||
-rw-r--r-- | devel/p5-Future/pkg-descr | 6 |
3 files changed, 35 insertions, 0 deletions
diff --git a/devel/p5-Future/Makefile b/devel/p5-Future/Makefile new file mode 100644 index 000000000000..97a7cbdd7c54 --- /dev/null +++ b/devel/p5-Future/Makefile @@ -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> diff --git a/devel/p5-Future/distinfo b/devel/p5-Future/distinfo new file mode 100644 index 000000000000..05a57e8dabb5 --- /dev/null +++ b/devel/p5-Future/distinfo @@ -0,0 +1,2 @@ +SHA256 (Future-0.07.tar.gz) = 56a3fa2cde24041afc36a5a430b9294c17e06a1ab882316a33a65c63baf2fc45 +SIZE (Future-0.07.tar.gz) = 34271 diff --git a/devel/p5-Future/pkg-descr b/devel/p5-Future/pkg-descr new file mode 100644 index 000000000000..d7302bd6a1cb --- /dev/null +++ b/devel/p5-Future/pkg-descr @@ -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/ |