From owner-svn-ports-head@FreeBSD.ORG Sat Nov 30 08:19:47 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]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CF1614E5; Sat, 30 Nov 2013 08:19:47 +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 BB0A3128E; Sat, 30 Nov 2013 08:19:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAU8Jl7a047073; Sat, 30 Nov 2013 08:19:47 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAU8JkpT047068; Sat, 30 Nov 2013 08:19:46 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201311300819.rAU8JkpT047068@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sat, 30 Nov 2013 08:19:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335267 - in head/devel: . p5-Types-Path-Tiny 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.16 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: Sat, 30 Nov 2013 08:19:48 -0000 Author: sunpoet Date: Sat Nov 30 08:19:46 2013 New Revision: 335267 URL: http://svnweb.freebsd.org/changeset/ports/335267 Log: - Add p5-Types-Path-Tiny 0.005 Types::Path::Tiny provides Path::Tiny types for Moose, Moo, etc. It handles two important types of coercion: - coercing objects with overloaded stringification - coercing to absolute paths It also can check to ensure that files or directories exist. WWW: http://search.cpan.org/dist/Types-Path-Tiny/ Added: head/devel/p5-Types-Path-Tiny/ head/devel/p5-Types-Path-Tiny/Makefile (contents, props changed) head/devel/p5-Types-Path-Tiny/distinfo (contents, props changed) head/devel/p5-Types-Path-Tiny/pkg-descr (contents, props changed) head/devel/p5-Types-Path-Tiny/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Nov 30 07:51:09 2013 (r335266) +++ head/devel/Makefile Sat Nov 30 08:19:46 2013 (r335267) @@ -2971,6 +2971,7 @@ SUBDIR += p5-Tree-Simple-VisitorFactory SUBDIR += p5-Type-Tie SUBDIR += p5-Type-Tiny + SUBDIR += p5-Types-Path-Tiny SUBDIR += p5-Types-Serialiser SUBDIR += p5-UDCode SUBDIR += p5-UI-Dialog Added: head/devel/p5-Types-Path-Tiny/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Types-Path-Tiny/Makefile Sat Nov 30 08:19:46 2013 (r335267) @@ -0,0 +1,30 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= Types-Path-Tiny +PORTVERSION= 0.005 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:DAGOLDEN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Path::Tiny types and coercions for Moose and Moo + +LICENSE= AL2 + +BUILD_DEPENDS= p5-Path-Tiny>=0:${PORTSDIR}/devel/p5-Path-Tiny \ + p5-Type-Tiny>=0.008:${PORTSDIR}/devel/p5-Type-Tiny +RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-File-pushd>=0:${PORTSDIR}/devel/p5-File-pushd + +USE_PERL5= configure +USES= perl5 + +.include + +.if ${PERL_LEVEL} < 501400 +TEST_DEPENDS+= p5-Test-Simple>=0.96:${PORTSDIR}/devel/p5-Test-Simple +.endif + +.include Added: head/devel/p5-Types-Path-Tiny/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Types-Path-Tiny/distinfo Sat Nov 30 08:19:46 2013 (r335267) @@ -0,0 +1,2 @@ +SHA256 (Types-Path-Tiny-0.005.tar.gz) = f702772c56695696d520313b7f9bb4c1f4f6c7e5d47f08917c9944ad8f09ce26 +SIZE (Types-Path-Tiny-0.005.tar.gz) = 12834 Added: head/devel/p5-Types-Path-Tiny/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Types-Path-Tiny/pkg-descr Sat Nov 30 08:19:46 2013 (r335267) @@ -0,0 +1,9 @@ +Types::Path::Tiny provides Path::Tiny types for Moose, Moo, etc. + +It handles two important types of coercion: +- coercing objects with overloaded stringification +- coercing to absolute paths + +It also can check to ensure that files or directories exist. + +WWW: http://search.cpan.org/dist/Types-Path-Tiny/ Added: head/devel/p5-Types-Path-Tiny/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Types-Path-Tiny/pkg-plist Sat Nov 30 08:19:46 2013 (r335267) @@ -0,0 +1 @@ +@comment $FreeBSD$