Date: Mon, 14 Jan 2013 13:50:02 +0000 (UTC) From: Frederic Culot <culot@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r310377 - in head/devel: . p5-Future Message-ID: <201301141350.r0EDo2db096913@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: culot Date: Mon Jan 14 13:50:02 2013 New Revision: 310377 URL: http://svnweb.freebsd.org/changeset/ports/310377 Log: 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. Added: head/devel/p5-Future/ head/devel/p5-Future/Makefile (contents, props changed) head/devel/p5-Future/distinfo (contents, props changed) head/devel/p5-Future/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Jan 14 12:36:03 2013 (r310376) +++ head/devel/Makefile Mon Jan 14 13:50:02 2013 (r310377) @@ -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 Added: head/devel/p5-Future/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Future/Makefile Mon Jan 14 13:50:02 2013 (r310377) @@ -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> Added: head/devel/p5-Future/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Future/distinfo Mon Jan 14 13:50:02 2013 (r310377) @@ -0,0 +1,2 @@ +SHA256 (Future-0.07.tar.gz) = 56a3fa2cde24041afc36a5a430b9294c17e06a1ab882316a33a65c63baf2fc45 +SIZE (Future-0.07.tar.gz) = 34271 Added: head/devel/p5-Future/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Future/pkg-descr Mon Jan 14 13:50:02 2013 (r310377) @@ -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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201301141350.r0EDo2db096913>