From owner-svn-ports-head@FreeBSD.ORG Wed Dec 11 19:56:23 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3B9973B3; Wed, 11 Dec 2013 19:56:23 +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 2754011F0; Wed, 11 Dec 2013 19:56:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBJuN8V024375; Wed, 11 Dec 2013 19:56:23 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBBJuMgK024366; Wed, 11 Dec 2013 19:56:22 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201312111956.rBBJuMgK024366@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Wed, 11 Dec 2013 19:56:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r336216 - in head/devel: . p5-multidimensional 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.17 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: Wed, 11 Dec 2013 19:56:23 -0000 Author: sunpoet Date: Wed Dec 11 19:56:21 2013 New Revision: 336216 URL: http://svnweb.freebsd.org/changeset/ports/336216 Log: - Add p5-multidimensional 0.011 Perl's multidimensional array emulation stems from the days before the language had references, but these days it mostly serves to bite you when you typo a hash slice by using the $ sigil instead of @. This module lexically makes using multidimensional array emulation a fatal error at compile time. WWW: http://search.cpan.org/dist/multidimensional/ Added: head/devel/p5-multidimensional/ head/devel/p5-multidimensional/Makefile (contents, props changed) head/devel/p5-multidimensional/distinfo (contents, props changed) head/devel/p5-multidimensional/pkg-descr (contents, props changed) head/devel/p5-multidimensional/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Dec 11 19:55:21 2013 (r336215) +++ head/devel/Makefile Wed Dec 11 19:56:21 2013 (r336216) @@ -3050,6 +3050,7 @@ SUBDIR += p5-local-lib SUBDIR += p5-mixin SUBDIR += p5-mocked + SUBDIR += p5-multidimensional SUBDIR += p5-namespace-autoclean SUBDIR += p5-namespace-clean SUBDIR += p5-namespace-sweep Added: head/devel/p5-multidimensional/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-multidimensional/Makefile Wed Dec 11 19:56:21 2013 (r336216) @@ -0,0 +1,32 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= multidimensional +PORTVERSION= 0.011 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:ILMARI +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Disables multidimensional array emulation + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-B-Hooks-OP-Check>=0.19:${PORTSDIR}/devel/p5-B-Hooks-OP-Check \ + p5-ExtUtils-Depends>=0:${PORTSDIR}/devel/p5-ExtUtils-Depends \ + p5-Lexical-SealRequireHints>=0.005:${PORTSDIR}/devel/p5-Lexical-SealRequireHints +RUN_DEPENDS= p5-B-Hooks-OP-Check>=0.19:${PORTSDIR}/devel/p5-B-Hooks-OP-Check \ + p5-Lexical-SealRequireHints>=0.005:${PORTSDIR}/devel/p5-Lexical-SealRequireHints + +USE_PERL5= configure +USES= perl5 + +.include + +.if ${PERL_LEVEL} < 501600 +BUILD_DEPENDS+= p5-CPAN-Meta>=2.112580:${PORTSDIR}/devel/p5-CPAN-Meta +.endif + +.include Added: head/devel/p5-multidimensional/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-multidimensional/distinfo Wed Dec 11 19:56:21 2013 (r336216) @@ -0,0 +1,2 @@ +SHA256 (multidimensional-0.011.tar.gz) = aa46d31355deed8969eb82126afdc9330f6caad17dca18f651f5ae55b9165d6a +SIZE (multidimensional-0.011.tar.gz) = 11520 Added: head/devel/p5-multidimensional/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-multidimensional/pkg-descr Wed Dec 11 19:56:21 2013 (r336216) @@ -0,0 +1,8 @@ +Perl's multidimensional array emulation stems from the days before the language +had references, but these days it mostly serves to bite you when you typo a hash +slice by using the $ sigil instead of @. + +This module lexically makes using multidimensional array emulation a fatal error +at compile time. + +WWW: http://search.cpan.org/dist/multidimensional/ Added: head/devel/p5-multidimensional/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-multidimensional/pkg-plist Wed Dec 11 19:56:21 2013 (r336216) @@ -0,0 +1,6 @@ +%%SITE_PERL%%/%%PERL_ARCH%%/auto/multidimensional/.packlist +%%SITE_PERL%%/%%PERL_ARCH%%/auto/multidimensional/multidimensional.bs +%%SITE_PERL%%/%%PERL_ARCH%%/auto/multidimensional/multidimensional.so +%%SITE_PERL%%/%%PERL_ARCH%%/multidimensional.pm +%%PERL5_MAN3%%/multidimensional.3.gz +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/multidimensional