From owner-svn-ports-all@freebsd.org Mon Jul 27 19:25:23 2015 Return-Path: Delivered-To: svn-ports-all@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 B86049AC822; Mon, 27 Jul 2015 19:25:23 +0000 (UTC) (envelope-from sunpoet@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 9D48AFA9; Mon, 27 Jul 2015 19:25:23 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t6RJPNZM031352; Mon, 27 Jul 2015 19:25:23 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t6RJPL84031345; Mon, 27 Jul 2015 19:25:21 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201507271925.t6RJPL84031345@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 27 Jul 2015 19:25:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393020 - in head/devel: . p5-curry 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.20 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: Mon, 27 Jul 2015 19:25:23 -0000 Author: sunpoet Date: Mon Jul 27 19:25:20 2015 New Revision: 393020 URL: https://svnweb.freebsd.org/changeset/ports/393020 Log: - Add p5-curry 1.000000 How many times have you written sub { $obj->something($some, $args, @_) } or worse still needed to weaken it and had to check and re-check your code to be sure you weren't closing over things the wrong way? Right. That's why I wrote this. WWW: http://search.cpan.org/dist/curry/ Added: head/devel/p5-curry/ head/devel/p5-curry/Makefile (contents, props changed) head/devel/p5-curry/distinfo (contents, props changed) head/devel/p5-curry/pkg-descr (contents, props changed) head/devel/p5-curry/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Jul 27 19:24:55 2015 (r393019) +++ head/devel/Makefile Mon Jul 27 19:25:20 2015 (r393020) @@ -3338,6 +3338,7 @@ SUBDIR += p5-constant-defer SUBDIR += p5-constant-lexical SUBDIR += p5-cpan-listchanges + SUBDIR += p5-curry SUBDIR += p5-enum SUBDIR += p5-ex-lib SUBDIR += p5-experimental Added: head/devel/p5-curry/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-curry/Makefile Mon Jul 27 19:25:20 2015 (r393020) @@ -0,0 +1,21 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= curry +PORTVERSION= 1.000000 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:MSTROUT +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Create automatic curried method call closures for any class or object + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +NO_ARCH= yes +USE_PERL5= configure +USES= perl5 + +.include Added: head/devel/p5-curry/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-curry/distinfo Mon Jul 27 19:25:20 2015 (r393020) @@ -0,0 +1,2 @@ +SHA256 (curry-1.000000.tar.gz) = 2d81dae9a11515a791076b005ec4a0398b892e0323939c6d82a06b92988912ac +SIZE (curry-1.000000.tar.gz) = 2470 Added: head/devel/p5-curry/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-curry/pkg-descr Mon Jul 27 19:25:20 2015 (r393020) @@ -0,0 +1,10 @@ +How many times have you written + + sub { $obj->something($some, $args, @_) } + +or worse still needed to weaken it and had to check and re-check your code to be +sure you weren't closing over things the wrong way? + +Right. That's why I wrote this. + +WWW: http://search.cpan.org/dist/curry/ Added: head/devel/p5-curry/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-curry/pkg-plist Mon Jul 27 19:25:20 2015 (r393020) @@ -0,0 +1,3 @@ +%%SITE_PERL%%/curry.pm +%%SITE_PERL%%/curry/weak.pm +%%PERL5_MAN3%%/curry.3.gz