From owner-svn-ports-all@FreeBSD.ORG Tue Mar 18 16:46:09 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8A848FB; Tue, 18 Mar 2014 16:46:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 745A4C7F; Tue, 18 Mar 2014 16:46:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2IGk9CG041311; Tue, 18 Mar 2014 16:46:09 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2IGk8U0041303; Tue, 18 Mar 2014 16:46:08 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201403181646.s2IGk8U0041303@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 18 Mar 2014 16:46:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r348582 - in head/devel: . p5-match-simple X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Mar 2014 16:46:09 -0000 Author: sunpoet Date: Tue Mar 18 16:46:08 2014 New Revision: 348582 URL: http://svnweb.freebsd.org/changeset/ports/348582 QAT: https://qat.redports.org/buildarchive/r348582/ Log: - Add p5-match-simple 0.008 match::simple provides a simple match operator |M| that acts like a sane subset of the (as of Perl 5.18) deprecated smart match operator. Unlike smart match, the behaviour of the match is determined entirely by the operand on the right hand side. WWW: http://search.cpan.org/dist/match-simple/ Added: head/devel/p5-match-simple/ head/devel/p5-match-simple/Makefile (contents, props changed) head/devel/p5-match-simple/distinfo (contents, props changed) head/devel/p5-match-simple/pkg-descr (contents, props changed) head/devel/p5-match-simple/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Mar 18 16:42:53 2014 (r348581) +++ head/devel/Makefile Tue Mar 18 16:46:08 2014 (r348582) @@ -3081,6 +3081,7 @@ SUBDIR += p5-libalarm SUBDIR += p5-libxml-enno SUBDIR += p5-local-lib + SUBDIR += p5-match-simple SUBDIR += p5-mixin SUBDIR += p5-mocked SUBDIR += p5-multidimensional Added: head/devel/p5-match-simple/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-match-simple/Makefile Tue Mar 18 16:46:08 2014 (r348582) @@ -0,0 +1,26 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= match-simple +PORTVERSION= 0.008 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:TOBYINK +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Simplified clone of smartmatch operator + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Exporter-Tiny>=0.026:${PORTSDIR}/devel/p5-Exporter-Tiny \ + p5-List-MoreUtils>=0:${PORTSDIR}/lang/p5-List-MoreUtils \ + p5-Sub-Infix>=0.001:${PORTSDIR}/devel/p5-Sub-Infix +RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Test-Fatal>=0:${PORTSDIR}/devel/p5-Test-Fatal + +USE_PERL5= configure +USES= perl5 + +.include Added: head/devel/p5-match-simple/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-match-simple/distinfo Tue Mar 18 16:46:08 2014 (r348582) @@ -0,0 +1,2 @@ +SHA256 (match-simple-0.008.tar.gz) = cc1d6aa8fd1625f59651d1d82f543cffa7552404fd3cb5d4a28868eaaa9a313d +SIZE (match-simple-0.008.tar.gz) = 22403 Added: head/devel/p5-match-simple/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-match-simple/pkg-descr Tue Mar 18 16:46:08 2014 (r348582) @@ -0,0 +1,6 @@ +match::simple provides a simple match operator |M| that acts like a sane subset +of the (as of Perl 5.18) deprecated smart match operator. Unlike smart match, +the behaviour of the match is determined entirely by the operand on the right +hand side. + +WWW: http://search.cpan.org/dist/match-simple/ Added: head/devel/p5-match-simple/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-match-simple/pkg-plist Tue Mar 18 16:46:08 2014 (r348582) @@ -0,0 +1,8 @@ +%%SITE_PERL%%/%%PERL_ARCH%%/auto/match/simple/.packlist +%%SITE_PERL%%/match/simple.pm +%%SITE_PERL%%/match/smart.pm +%%PERL5_MAN3%%/match::simple.3.gz +%%PERL5_MAN3%%/match::smart.3.gz +@dirrmtry %%SITE_PERL%%/match +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/match/simple +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/match