From owner-svn-ports-head@FreeBSD.ORG Fri Jan 18 13:48:32 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 3117D58D; Fri, 18 Jan 2013 13:48:32 +0000 (UTC) (envelope-from kuriyama@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 14AE2914; Fri, 18 Jan 2013 13:48:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r0IDmVWa011137; Fri, 18 Jan 2013 13:48:31 GMT (envelope-from kuriyama@svn.freebsd.org) Received: (from kuriyama@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r0IDmVaS011129; Fri, 18 Jan 2013 13:48:31 GMT (envelope-from kuriyama@svn.freebsd.org) Message-Id: <201301181348.r0IDmVaS011129@svn.freebsd.org> From: Jun Kuriyama Date: Fri, 18 Jan 2013 13:48:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r310605 - in head/textproc: . p5-Text-Pipe 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: Fri, 18 Jan 2013 13:48:32 -0000 Author: kuriyama Date: Fri Jan 18 13:48:30 2013 New Revision: 310605 URL: http://svnweb.freebsd.org/changeset/ports/310605 Log: This class is a factory for text pipes. A pipe has a filter() method through which input can pass. The input can be a string or a reference to an array of strings. Pipes can be stacked together using Text::Pipe::Stackable. WWW: http://search.cpan.org/dist/Text-Pipe/ Added: head/textproc/p5-Text-Pipe/ head/textproc/p5-Text-Pipe/Makefile (contents, props changed) head/textproc/p5-Text-Pipe/distinfo (contents, props changed) head/textproc/p5-Text-Pipe/pkg-descr (contents, props changed) head/textproc/p5-Text-Pipe/pkg-plist (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Fri Jan 18 13:08:52 2013 (r310604) +++ head/textproc/Makefile Fri Jan 18 13:48:30 2013 (r310605) @@ -826,6 +826,7 @@ SUBDIR += p5-Text-ParagraphDiff SUBDIR += p5-Text-ParseWords SUBDIR += p5-Text-Patch + SUBDIR += p5-Text-Pipe SUBDIR += p5-Text-Prefix-XS SUBDIR += p5-Text-QRCode SUBDIR += p5-Text-Query Added: head/textproc/p5-Text-Pipe/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-Text-Pipe/Makefile Fri Jan 18 13:48:30 2013 (r310605) @@ -0,0 +1,58 @@ +# $FreeBSD$ + +PORTNAME= Text-Pipe +PORTVERSION= 0.10 +CATEGORIES= textproc perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= kuriyama@FreeBSD.org +COMMENT= Perl extension for common text filter API + +RUN_DEPENDS= \ + p5-Class-Accessor-Complex>0:${PORTSDIR}/devel/p5-Class-Accessor-Complex \ + p5-Class-Accessor-Constructor>0:${PORTSDIR}/devel/p5-Class-Accessor-Constructor \ + p5-Sub-Name>0:${PORTSDIR}/devel/p5-Sub-Name \ + p5-UNIVERSAL-require>0:${PORTSDIR}/devel/p5-UNIVERSAL-require +BUILD_DEPENDS= ${RUN_DEPENDS} + +PERL_CONFIGURE= yes +# Hack to avoid invoking CPAN.pm downloading... +CONFIGURE_ENV= PERL5_CPANPLUS_IS_RUNNING=1 + +MAN3= Text::Pipe.3 \ + Text::Pipe::Append.3 \ + Text::Pipe::Base.3 \ + Text::Pipe::Chomp.3 \ + Text::Pipe::Chop.3 \ + Text::Pipe::Code.3 \ + Text::Pipe::List::First.3 \ + Text::Pipe::List::Grep.3 \ + Text::Pipe::List::Map.3 \ + Text::Pipe::List::Max.3 \ + Text::Pipe::List::MaxStr.3 \ + Text::Pipe::List::Min.3 \ + Text::Pipe::List::MinStr.3 \ + Text::Pipe::List::Pop.3 \ + Text::Pipe::List::Reduce.3 \ + Text::Pipe::List::Shift.3 \ + Text::Pipe::List::Shuffle.3 \ + Text::Pipe::List::Size.3 \ + Text::Pipe::List::Sort.3 \ + Text::Pipe::List::Sum.3 \ + Text::Pipe::Lowercase.3 \ + Text::Pipe::LowercaseFirst.3 \ + Text::Pipe::Multiplex.3 \ + Text::Pipe::Prepend.3 \ + Text::Pipe::Print.3 \ + Text::Pipe::Repeat.3 \ + Text::Pipe::Reverse.3 \ + Text::Pipe::Say.3 \ + Text::Pipe::Split.3 \ + Text::Pipe::Stackable.3 \ + Text::Pipe::Tester.3 \ + Text::Pipe::Trim.3 \ + Text::Pipe::Uppercase.3 \ + Text::Pipe::UppercaseFirst.3 + +.include Added: head/textproc/p5-Text-Pipe/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-Text-Pipe/distinfo Fri Jan 18 13:48:30 2013 (r310605) @@ -0,0 +1,2 @@ +SHA256 (Text-Pipe-0.10.tar.gz) = e1bdeb748c3f8fbda81b769c5632224ef325012dd3a919f506a7d7ff3b2c0d26 +SIZE (Text-Pipe-0.10.tar.gz) = 43680 Added: head/textproc/p5-Text-Pipe/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-Text-Pipe/pkg-descr Fri Jan 18 13:48:30 2013 (r310605) @@ -0,0 +1,6 @@ +This class is a factory for text pipes. A pipe has a filter() method +through which input can pass. The input can be a string or a +reference to an array of strings. Pipes can be stacked together using +Text::Pipe::Stackable. + +WWW: http://search.cpan.org/dist/Text-Pipe/ Added: head/textproc/p5-Text-Pipe/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-Text-Pipe/pkg-plist Fri Jan 18 13:48:30 2013 (r310605) @@ -0,0 +1,40 @@ +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Pipe/.packlist +%%SITE_PERL%%/Text/Pipe.pm +%%SITE_PERL%%/Text/Pipe/Append.pm +%%SITE_PERL%%/Text/Pipe/Base.pm +%%SITE_PERL%%/Text/Pipe/Chomp.pm +%%SITE_PERL%%/Text/Pipe/Chop.pm +%%SITE_PERL%%/Text/Pipe/Code.pm +%%SITE_PERL%%/Text/Pipe/List/First.pm +%%SITE_PERL%%/Text/Pipe/List/Grep.pm +%%SITE_PERL%%/Text/Pipe/List/Map.pm +%%SITE_PERL%%/Text/Pipe/List/Max.pm +%%SITE_PERL%%/Text/Pipe/List/MaxStr.pm +%%SITE_PERL%%/Text/Pipe/List/Min.pm +%%SITE_PERL%%/Text/Pipe/List/MinStr.pm +%%SITE_PERL%%/Text/Pipe/List/Pop.pm +%%SITE_PERL%%/Text/Pipe/List/Reduce.pm +%%SITE_PERL%%/Text/Pipe/List/Shift.pm +%%SITE_PERL%%/Text/Pipe/List/Shuffle.pm +%%SITE_PERL%%/Text/Pipe/List/Size.pm +%%SITE_PERL%%/Text/Pipe/List/Sort.pm +%%SITE_PERL%%/Text/Pipe/List/Sum.pm +%%SITE_PERL%%/Text/Pipe/Lowercase.pm +%%SITE_PERL%%/Text/Pipe/LowercaseFirst.pm +%%SITE_PERL%%/Text/Pipe/Multiplex.pm +%%SITE_PERL%%/Text/Pipe/Prepend.pm +%%SITE_PERL%%/Text/Pipe/Print.pm +%%SITE_PERL%%/Text/Pipe/Repeat.pm +%%SITE_PERL%%/Text/Pipe/Reverse.pm +%%SITE_PERL%%/Text/Pipe/Say.pm +%%SITE_PERL%%/Text/Pipe/Split.pm +%%SITE_PERL%%/Text/Pipe/Stackable.pm +%%SITE_PERL%%/Text/Pipe/Tester.pm +%%SITE_PERL%%/Text/Pipe/Trim.pm +%%SITE_PERL%%/Text/Pipe/Uppercase.pm +%%SITE_PERL%%/Text/Pipe/UppercaseFirst.pm +@dirrm %%SITE_PERL%%/Text/Pipe/List +@dirrm %%SITE_PERL%%/Text/Pipe +@dirrmtry %%SITE_PERL%%/Text +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Pipe +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text