From owner-svn-ports-all@FreeBSD.ORG Sun Aug 17 16:49:46 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A7DD5EE1; Sun, 17 Aug 2014 16:49:46 +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 93B572BC3; Sun, 17 Aug 2014 16:49:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7HGnkxj003479; Sun, 17 Aug 2014 16:49:46 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7HGnjgB003471; Sun, 17 Aug 2014 16:49:45 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201408171649.s7HGnjgB003471@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 17 Aug 2014 16:49:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r365203 - in head/devel: . p5-Log-Defer 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: Sun, 17 Aug 2014 16:49:46 -0000 Author: pi Date: Sun Aug 17 16:49:45 2014 New Revision: 365203 URL: http://svnweb.freebsd.org/changeset/ports/365203 QAT: https://qat.redports.org/buildarchive/r365203/ Log: New port: devel/p5-Log-Defer This module lets you defer log processing in two ways: - Defer recording of log messages until some "transaction" has completed - Defer rendering of log messages This module doesn't actually write out logs! To use this module for normal logging purposes you also need a logging library. WWW: http://search.cpan.org/dist/Log-Defer/ PR: 192263 Submitted by: bill.brinzer@gmail.com Added: head/devel/p5-Log-Defer/ head/devel/p5-Log-Defer/Makefile (contents, props changed) head/devel/p5-Log-Defer/distinfo (contents, props changed) head/devel/p5-Log-Defer/pkg-descr (contents, props changed) head/devel/p5-Log-Defer/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Aug 17 16:45:25 2014 (r365202) +++ head/devel/Makefile Sun Aug 17 16:49:45 2014 (r365203) @@ -2287,6 +2287,7 @@ SUBDIR += p5-Log-Any-Adapter-Syslog SUBDIR += p5-Log-Any-App SUBDIR += p5-Log-Contextual + SUBDIR += p5-Log-Defer SUBDIR += p5-Log-Dispatch SUBDIR += p5-Log-Dispatch-Array SUBDIR += p5-Log-Dispatch-Colorful Added: head/devel/p5-Log-Defer/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Log-Defer/Makefile Sun Aug 17 16:49:45 2014 (r365203) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= Log-Defer +PORTVERSION= 0.311 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= bill.brinzer@gmail.com +COMMENT= Deferred logs and timers + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +RUN_DEPENDS= p5-Guard>=0:${PORTSDIR}/devel/p5-Guard +BUILD_DEPENDS:= ${RUN_DEPENDS} + +NO_ARCH= yes + +USES= perl5 +USE_PERL5= configure + +.include Added: head/devel/p5-Log-Defer/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Log-Defer/distinfo Sun Aug 17 16:49:45 2014 (r365203) @@ -0,0 +1,2 @@ +SHA256 (Log-Defer-0.311.tar.gz) = 9f2f6a7b413b9ce514cfb3b5929b94f9569bc80f4eccadeef8cb9dbbec3f9319 +SIZE (Log-Defer-0.311.tar.gz) = 10044 Added: head/devel/p5-Log-Defer/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Log-Defer/pkg-descr Sun Aug 17 16:49:45 2014 (r365203) @@ -0,0 +1,22 @@ +I believe a lot of log processing is done too early. + +This module lets you defer log processing in two ways: + +* Defer recording of log messages until some "transaction" has completed + + Typically this transaction is something like an HTTP request or a cron job. + Generally log messages are easier to read if they are recorded atomically and + are not intermingled with log messages created by other transactions. + +* Defer rendering of log messages + + Sometimes you don't know how logs should be rendered until long after the + message has been written. If you aren't sure what information you'll want to + display, or you expect to display the same logs in multiple formats, it makes + sense to store your logs in a highly structured format so they can be + reliably parsed and processed later. + +This module doesn't actually write out logs! To use this module for normal +logging purposes you also need a logging library. + +WWW: http://search.cpan.org/dist/Log-Defer/ Added: head/devel/p5-Log-Defer/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Log-Defer/pkg-plist Sun Aug 17 16:49:45 2014 (r365203) @@ -0,0 +1,8 @@ +%%PERL5_MAN3%%/Log::Defer.3.gz +%%PERL5_MAN3%%/Log::README.3.gz +%%SITE_PERL%%/Log/Defer.pm +%%SITE_PERL%%/Log/README.pod +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Log/Defer/.packlist +@dirrmtry %%SITE_PERL%%/Log +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Log/Defer +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Log