From owner-svn-ports-head@FreeBSD.ORG Mon Mar 11 13:36:02 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 54130127; Mon, 11 Mar 2013 13:36:02 +0000 (UTC) (envelope-from sunpoet@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 2E5E3254; Mon, 11 Mar 2013 13:36:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2BDa2bi050788; Mon, 11 Mar 2013 13:36:02 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2BDa1Za050782; Mon, 11 Mar 2013 13:36:01 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201303111336.r2BDa1Za050782@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 11 Mar 2013 13:36:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r313895 - head/devel/p5-IO-Async 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, 11 Mar 2013 13:36:02 -0000 Author: sunpoet Date: Mon Mar 11 13:36:00 2013 New Revision: 313895 URL: http://svnweb.freebsd.org/changeset/ports/313895 Log: - Update to 0.55 - Reformat pkg-descr Changes: http://search.cpan.org/dist/IO-Async/Changes Modified: head/devel/p5-IO-Async/Makefile head/devel/p5-IO-Async/distinfo head/devel/p5-IO-Async/pkg-descr (contents, props changed) head/devel/p5-IO-Async/pkg-plist Modified: head/devel/p5-IO-Async/Makefile ============================================================================== --- head/devel/p5-IO-Async/Makefile Mon Mar 11 13:34:57 2013 (r313894) +++ head/devel/p5-IO-Async/Makefile Mon Mar 11 13:36:00 2013 (r313895) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= IO-Async -PORTVERSION= 0.54 +PORTVERSION= 0.55 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:PEVANS @@ -14,8 +14,7 @@ COMMENT= Perl modules that implement asy LICENSE= ART10 GPLv1 LICENSE_COMB= dual -BUILD_DEPENDS= p5-CPS>0:${PORTSDIR}/devel/p5-CPS \ - p5-Future>=0.05:${PORTSDIR}/devel/p5-Future +BUILD_DEPENDS= p5-Future>=0.08:${PORTSDIR}/devel/p5-Future RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:${PORTSDIR}/devel/p5-Test-Fatal \ p5-Test-Identity>=0:${PORTSDIR}/devel/p5-Test-Identity \ @@ -49,7 +48,6 @@ MAN3= IO::Async.3 \ IO::Async::Process.3 \ IO::Async::Resolver.3 \ IO::Async::Routine.3 \ - IO::Async::Sequencer.3 \ IO::Async::Signal.3 \ IO::Async::Socket.3 \ IO::Async::Stream.3 \ Modified: head/devel/p5-IO-Async/distinfo ============================================================================== --- head/devel/p5-IO-Async/distinfo Mon Mar 11 13:34:57 2013 (r313894) +++ head/devel/p5-IO-Async/distinfo Mon Mar 11 13:36:00 2013 (r313895) @@ -1,2 +1,2 @@ -SHA256 (IO-Async-0.54.tar.gz) = 2685f4e895502dea932a5964f2971c4c55020c1039010f150f32c97dc5b6b65f -SIZE (IO-Async-0.54.tar.gz) = 210493 +SHA256 (IO-Async-0.55.tar.gz) = df2da33a7c4a8e52fe38850ab65e4ea5df8f912a025efa2e3787d417612d9a47 +SIZE (IO-Async-0.55.tar.gz) = 202540 Modified: head/devel/p5-IO-Async/pkg-descr ============================================================================== --- head/devel/p5-IO-Async/pkg-descr Mon Mar 11 13:34:57 2013 (r313894) +++ head/devel/p5-IO-Async/pkg-descr Mon Mar 11 13:36:00 2013 (r313895) @@ -1,10 +1,9 @@ This collection of modules allows programs to be written that perform -asynchronous filehandle IO operations. A typical program using them -would consist of a single subclass of IO::Async::Set to act as a -container for a number of IO::Async::Notifier objects (or subclasses -thereof). The set itself is responsible for checking read- or -write-readiness, and informing the notifiers of these conditions. The -notifiers then perform whatever work is required on these conditions, -by using subclass methods or callback functions. +asynchronous filehandle IO operations. A typical program using them would +consist of a single subclass of IO::Async::Set to act as a container for a +number of IO::Async::Notifier objects (or subclasses thereof). The set itself is +responsible for checking read- or write-readiness, and informing the notifiers +of these conditions. The notifiers then perform whatever work is required on +these conditions, by using subclass methods or callback functions. -WWW: http://search.cpan.org/dist/IO-Async/ +WWW: http://search.cpan.org/dist/IO-Async/ Modified: head/devel/p5-IO-Async/pkg-plist ============================================================================== --- head/devel/p5-IO-Async/pkg-plist Mon Mar 11 13:34:57 2013 (r313894) +++ head/devel/p5-IO-Async/pkg-plist Mon Mar 11 13:36:00 2013 (r313895) @@ -24,7 +24,6 @@ %%SITE_PERL%%/IO/Async/Protocol/Stream.pm %%SITE_PERL%%/IO/Async/Resolver.pm %%SITE_PERL%%/IO/Async/Routine.pm -%%SITE_PERL%%/IO/Async/Sequencer.pm %%SITE_PERL%%/IO/Async/Signal.pm %%SITE_PERL%%/IO/Async/Stream.pm %%SITE_PERL%%/IO/Async/Socket.pm