From owner-svn-ports-all@FreeBSD.ORG Thu Jan 1 16:07:41 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C6A3744A; Thu, 1 Jan 2015 16:07:41 +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 B2AC328; Thu, 1 Jan 2015 16:07:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t01G7f8x001751; Thu, 1 Jan 2015 16:07:41 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t01G7eTF001746; Thu, 1 Jan 2015 16:07:40 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201501011607.t01G7eTF001746@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 1 Jan 2015 16:07:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r375934 - in head/devel: . p5-Log-Dispatch-ArrayWithLimits 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.18-1 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: Thu, 01 Jan 2015 16:07:41 -0000 Author: sunpoet Date: Thu Jan 1 16:07:39 2015 New Revision: 375934 URL: https://svnweb.freebsd.org/changeset/ports/375934 QAT: https://qat.redports.org/buildarchive/r375934/ Log: - Add p5-Log-Dispatch-ArrayWithLimits 0.03 Log::Dispatch::ArrayWithLimits functions similarly to Log::Dispatch::Array, with a few differences: - only the messages (strings) are stored - allow specifying array variable name (e.g. "My::array" instead of \@My:array) This makes it possible to use in Log::Log4perl configuration, which is a text file. - can apply some limits Currently only max_elems (the maximum number of elements in the array) is available. Future limits will be added (see "TODO"). Logging to an in-process array can be useful when debugging/testing, or when you want to let users of your program connect to your program to request viewing the ogs being produced. WWW: http://search.cpan.org/dist/Log-Dispatch-ArrayWithLimits/ Added: head/devel/p5-Log-Dispatch-ArrayWithLimits/ head/devel/p5-Log-Dispatch-ArrayWithLimits/Makefile (contents, props changed) head/devel/p5-Log-Dispatch-ArrayWithLimits/distinfo (contents, props changed) head/devel/p5-Log-Dispatch-ArrayWithLimits/pkg-descr (contents, props changed) head/devel/p5-Log-Dispatch-ArrayWithLimits/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Jan 1 16:07:05 2015 (r375933) +++ head/devel/Makefile Thu Jan 1 16:07:39 2015 (r375934) @@ -2312,6 +2312,7 @@ SUBDIR += p5-Log-Defer SUBDIR += p5-Log-Dispatch SUBDIR += p5-Log-Dispatch-Array + SUBDIR += p5-Log-Dispatch-ArrayWithLimits SUBDIR += p5-Log-Dispatch-Colorful SUBDIR += p5-Log-Dispatch-Config SUBDIR += p5-Log-Dispatch-Configurator-Any Added: head/devel/p5-Log-Dispatch-ArrayWithLimits/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Log-Dispatch-ArrayWithLimits/Makefile Thu Jan 1 16:07:39 2015 (r375934) @@ -0,0 +1,22 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= Log-Dispatch-ArrayWithLimits +PORTVERSION= 0.03 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Log to array, with some limits applied + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Log-Dispatch>=0:${PORTSDIR}/devel/p5-Log-Dispatch +RUN_DEPENDS:= ${BUILD_DEPENDS} + +USE_PERL5= configure +USES= perl5 + +.include Added: head/devel/p5-Log-Dispatch-ArrayWithLimits/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Log-Dispatch-ArrayWithLimits/distinfo Thu Jan 1 16:07:39 2015 (r375934) @@ -0,0 +1,2 @@ +SHA256 (Log-Dispatch-ArrayWithLimits-0.03.tar.gz) = e82579fe800747f264b87351b1349810d9501393d518b6a8fed5d6b741398fd9 +SIZE (Log-Dispatch-ArrayWithLimits-0.03.tar.gz) = 13107 Added: head/devel/p5-Log-Dispatch-ArrayWithLimits/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Log-Dispatch-ArrayWithLimits/pkg-descr Thu Jan 1 16:07:39 2015 (r375934) @@ -0,0 +1,15 @@ +Log::Dispatch::ArrayWithLimits functions similarly to Log::Dispatch::Array, with +a few differences: +- only the messages (strings) are stored +- allow specifying array variable name (e.g. "My::array" instead of \@My:array) + This makes it possible to use in Log::Log4perl configuration, which is a text + file. +- can apply some limits + Currently only max_elems (the maximum number of elements in the array) is + available. Future limits will be added (see "TODO"). + +Logging to an in-process array can be useful when debugging/testing, or when you +want to let users of your program connect to your program to request viewing the +ogs being produced. + +WWW: http://search.cpan.org/dist/Log-Dispatch-ArrayWithLimits/ Added: head/devel/p5-Log-Dispatch-ArrayWithLimits/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Log-Dispatch-ArrayWithLimits/pkg-plist Thu Jan 1 16:07:39 2015 (r375934) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/Log/Dispatch/ArrayWithLimits.pm +%%PERL5_MAN3%%/Log::Dispatch::ArrayWithLimits.3.gz