From owner-svn-ports-head@FreeBSD.ORG Mon Jan 14 13:50:03 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id CB37EB0D; Mon, 14 Jan 2013 13:50:03 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id AF4D8971; Mon, 14 Jan 2013 13:50:03 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r0EDo3lr096917; Mon, 14 Jan 2013 13:50:03 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r0EDo2db096913; Mon, 14 Jan 2013 13:50:02 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201301141350.r0EDo2db096913@svn.freebsd.org> From: Frederic Culot Date: Mon, 14 Jan 2013 13:50:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r310377 - in head/devel: . p5-Future X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jan 2013 13:50:03 -0000 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 +# $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 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/