From owner-svn-ports-head@freebsd.org Sun Sep 27 04:13:19 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 02E379B800D; Sun, 27 Sep 2015 04:13:19 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E7ACA330; Sun, 27 Sep 2015 04:13:18 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8R4DI9a066465; Sun, 27 Sep 2015 04:13:18 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8R4DHZA066460; Sun, 27 Sep 2015 04:13:17 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201509270413.t8R4DHZA066460@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 27 Sep 2015 04:13:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398021 - in head/devel: . p5-Type-Tiny-Signatures 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.20 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: Sun, 27 Sep 2015 04:13:19 -0000 Author: wen Date: Sun Sep 27 04:13:16 2015 New Revision: 398021 URL: https://svnweb.freebsd.org/changeset/ports/398021 Log: This module uses Function::Parameters to extends Perl with keywords that let you define methods and functions with parameter lists which can be validated using Type::Tiny type constraints. The type constraints can be provided by the Type::Tiny standard library, Types::Standard, or any supported user-defined type library which can be a Moose, MooseX::Type, MouseX::Type, or Type::Library library. WWW: http://search.cpan.org/dist/Type-Tiny-Signatures/ Added: head/devel/p5-Type-Tiny-Signatures/ head/devel/p5-Type-Tiny-Signatures/Makefile (contents, props changed) head/devel/p5-Type-Tiny-Signatures/distinfo (contents, props changed) head/devel/p5-Type-Tiny-Signatures/pkg-descr (contents, props changed) head/devel/p5-Type-Tiny-Signatures/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Sep 27 02:56:42 2015 (r398020) +++ head/devel/Makefile Sun Sep 27 04:13:16 2015 (r398021) @@ -3332,6 +3332,7 @@ SUBDIR += p5-Tree-Trie SUBDIR += p5-Type-Tie SUBDIR += p5-Type-Tiny + SUBDIR += p5-Type-Tiny-Signatures SUBDIR += p5-Type-Tiny-XS SUBDIR += p5-Types-Core SUBDIR += p5-Types-Path-Tiny Added: head/devel/p5-Type-Tiny-Signatures/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Type-Tiny-Signatures/Makefile Sun Sep 27 04:13:16 2015 (r398021) @@ -0,0 +1,24 @@ +# Created by: Wen Heping +# $FreeBSD$ + +PORTNAME= Type-Tiny-Signatures +PORTVERSION= 0.05 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:AWNCORP +PKGNAMEPREFIX= p5- + +MAINTAINER= wen@FreeBSD.org +COMMENT= Method/Function Signatures w/Type::Tiny Constraints + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Type-Tiny>=1.000005:${PORTSDIR}/devel/p5-Type-Tiny \ + p5-Function-Parameters>=1.0605:${PORTSDIR}/devel/p5-Function-Parameters +RUN_DEPENDS:= ${BUILD_DEPENDS} + +USE_PERL5= configure +USES= perl5 + +.include Added: head/devel/p5-Type-Tiny-Signatures/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Type-Tiny-Signatures/distinfo Sun Sep 27 04:13:16 2015 (r398021) @@ -0,0 +1,2 @@ +SHA256 (Type-Tiny-Signatures-0.05.tar.gz) = ea3f71cd97e70f268a2a2e75a9ce645f7610c60f0f34f19e0212bed4fa4f23d3 +SIZE (Type-Tiny-Signatures-0.05.tar.gz) = 10481 Added: head/devel/p5-Type-Tiny-Signatures/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Type-Tiny-Signatures/pkg-descr Sun Sep 27 04:13:16 2015 (r398021) @@ -0,0 +1,8 @@ +This module uses Function::Parameters to extends Perl with keywords that +let you define methods and functions with parameter lists which can be +validated using Type::Tiny type constraints. The type constraints can be +provided by the Type::Tiny standard library, Types::Standard, or any +supported user-defined type library which can be a Moose, MooseX::Type, +MouseX::Type, or Type::Library library. + +WWW: http://search.cpan.org/dist/Type-Tiny-Signatures/ Added: head/devel/p5-Type-Tiny-Signatures/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Type-Tiny-Signatures/pkg-plist Sun Sep 27 04:13:16 2015 (r398021) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/Type/Tiny/Signatures.pm +%%PERL5_MAN3%%/Type::Tiny::Signatures.3.gz