From owner-svn-ports-head@FreeBSD.ORG Thu Nov 6 12:53:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A2287C12; Thu, 6 Nov 2014 12:53:38 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8E0B3AB4; Thu, 6 Nov 2014 12:53:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sA6Crc7J038328; Thu, 6 Nov 2014 12:53:38 GMT (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sA6Crbn3038320; Thu, 6 Nov 2014 12:53:37 GMT (envelope-from kuriyama@FreeBSD.org) Message-Id: <201411061253.sA6Crbn3038320@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: kuriyama set sender to kuriyama@FreeBSD.org using -f From: Jun Kuriyama Date: Thu, 6 Nov 2014 12:53:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372223 - in head/devel: . p5-Log-Dump 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.18-1 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: Thu, 06 Nov 2014 12:53:38 -0000 Author: kuriyama Date: Thu Nov 6 12:53:36 2014 New Revision: 372223 URL: https://svnweb.freebsd.org/changeset/ports/372223 QAT: https://qat.redports.org/buildarchive/r372223/ Log: Log::Dump is a simple logger mix-in mainly for debugging. This installs six methods into a caller (the class that used Log::Dump) via Sub::Install. The point is you don't need to load extra dumper modules or you don't need to concatenate messages. Just log things and they will be dumped (and concatenated if necessary) to stderr, and to a file if you prefer. Also, you can use these logging methods as class methods or object methods (though usually you don't want to mix them, especially when you're doing something special). WWW: http://search.cpan.org/dist/Log-Dump/ Added: head/devel/p5-Log-Dump/ head/devel/p5-Log-Dump/Makefile (contents, props changed) head/devel/p5-Log-Dump/distinfo (contents, props changed) head/devel/p5-Log-Dump/pkg-descr (contents, props changed) head/devel/p5-Log-Dump/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Nov 6 11:49:44 2014 (r372222) +++ head/devel/Makefile Thu Nov 6 12:53:36 2014 (r372223) @@ -2310,6 +2310,7 @@ SUBDIR += p5-Log-Dispatch-Screen-Color SUBDIR += p5-Log-Dispatch-Scribe SUBDIR += p5-Log-Dispatchouli + SUBDIR += p5-Log-Dump SUBDIR += p5-Log-Handler SUBDIR += p5-Log-Log4perl SUBDIR += p5-Log-Log4perl-Appender-RabbitMQ Added: head/devel/p5-Log-Dump/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Log-Dump/Makefile Thu Nov 6 12:53:36 2014 (r372223) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= Log-Dump +PORTVERSION= 0.14 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= kuriyama@FreeBSD.org +COMMENT= Perl extension of simple logger mainly for debugging + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +RUN_DEPENDS= \ + p5-Data-Dump>0:${PORTSDIR}/devel/p5-Data-Dump \ + p5-Sub-Install>0:${PORTSDIR}/devel/p5-Sub-Install +BUILD_DEPENDS= ${RUN_DEPENDS} \ + p5-ExtUtils-MakeMaker-CPANfile>0:${PORTSDIR}/devel/p5-ExtUtils-MakeMaker-CPANfile + +USES= perl5 +USE_PERL5= configure + +.include Added: head/devel/p5-Log-Dump/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Log-Dump/distinfo Thu Nov 6 12:53:36 2014 (r372223) @@ -0,0 +1,2 @@ +SHA256 (Log-Dump-0.14.tar.gz) = 6962b0a07c086acc4417750cd8f87f5ea44c534851f5589443da42e3af6f90cd +SIZE (Log-Dump-0.14.tar.gz) = 8937 Added: head/devel/p5-Log-Dump/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Log-Dump/pkg-descr Thu Nov 6 12:53:36 2014 (r372223) @@ -0,0 +1,10 @@ +Log::Dump is a simple logger mix-in mainly for debugging. This +installs six methods into a caller (the class that used Log::Dump) via +Sub::Install. The point is you don't need to load extra dumper modules +or you don't need to concatenate messages. Just log things and they +will be dumped (and concatenated if necessary) to stderr, and to a +file if you prefer. Also, you can use these logging methods as class +methods or object methods (though usually you don't want to mix them, +especially when you're doing something special). + +WWW: http://search.cpan.org/dist/Log-Dump/ Added: head/devel/p5-Log-Dump/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Log-Dump/pkg-plist Thu Nov 6 12:53:36 2014 (r372223) @@ -0,0 +1,7 @@ +%%PERL5_MAN3%%/Log::Dump.3.gz +%%PERL5_MAN3%%/Log::Dump::Class.3.gz +%%PERL5_MAN3%%/Log::Dump::Functions.3.gz +%%SITE_PERL%%/Log/Dump.pm +%%SITE_PERL%%/Log/Dump/Class.pm +%%SITE_PERL%%/Log/Dump/Functions.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Log/Dump/.packlist