Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 6 Nov 2014 12:53:37 +0000 (UTC)
From:      Jun Kuriyama <kuriyama@FreeBSD.org>
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
Message-ID:  <201411061253.sA6Crbn3038320@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411061253.sA6Crbn3038320>