From owner-svn-ports-head@FreeBSD.ORG Fri Mar 6 22:36:44 2015 Return-Path: Delivered-To: svn-ports-head@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 B31B5DF6; Fri, 6 Mar 2015 22:36:44 +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 9D24BDBB; Fri, 6 Mar 2015 22:36:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t26Maib3023980; Fri, 6 Mar 2015 22:36:44 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t26Mah2R023975; Fri, 6 Mar 2015 22:36:43 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201503062236.t26Mah2R023975@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 6 Mar 2015 22:36:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r380632 - in head/devel: . p5-Log-Log4perl-Tiny 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: Fri, 06 Mar 2015 22:36:44 -0000 Author: sunpoet Date: Fri Mar 6 22:36:42 2015 New Revision: 380632 URL: https://svnweb.freebsd.org/changeset/ports/380632 QAT: https://qat.redports.org/buildarchive/r380632/ Log: - Add p5-Log-Log4perl-Tiny 1.2.7 Log::Log4perl::Tiny yet another logging module. Nothing particularly fancy nor original, too, but a single-module implementation of the features the author use most from Log::Log4perl for quick things, namely: - Easy mode and stealth loggers (aka log functions INFO, WARN, etc.) - Debug message filtering by log level - Line formatting customisation - Quick sending of messages to a log file WWW: http://search.cpan.org/dist/Log-Log4perl-Tiny/ Added: head/devel/p5-Log-Log4perl-Tiny/ head/devel/p5-Log-Log4perl-Tiny/Makefile (contents, props changed) head/devel/p5-Log-Log4perl-Tiny/distinfo (contents, props changed) head/devel/p5-Log-Log4perl-Tiny/pkg-descr (contents, props changed) head/devel/p5-Log-Log4perl-Tiny/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Mar 6 22:30:42 2015 (r380631) +++ head/devel/Makefile Fri Mar 6 22:36:42 2015 (r380632) @@ -2359,6 +2359,7 @@ SUBDIR += p5-Log-Handler SUBDIR += p5-Log-Log4perl SUBDIR += p5-Log-Log4perl-Appender-RabbitMQ + SUBDIR += p5-Log-Log4perl-Tiny SUBDIR += p5-Log-Message SUBDIR += p5-Log-Message-Simple SUBDIR += p5-Log-Minimal Added: head/devel/p5-Log-Log4perl-Tiny/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Log-Log4perl-Tiny/Makefile Fri Mar 6 22:36:42 2015 (r380632) @@ -0,0 +1,18 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= Log-Log4perl-Tiny +PORTVERSION= 1.2.7 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Mimic Log::Log4perl in one single module + +LICENSE= ART20 + +USE_PERL5= configure +USES= perl5 + +.include Added: head/devel/p5-Log-Log4perl-Tiny/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Log-Log4perl-Tiny/distinfo Fri Mar 6 22:36:42 2015 (r380632) @@ -0,0 +1,2 @@ +SHA256 (Log-Log4perl-Tiny-1.2.7.tar.gz) = da6d28f7765df62e58c8e51dd77ede36bd6acaafd9178933a33d3ca7f9ea2168 +SIZE (Log-Log4perl-Tiny-1.2.7.tar.gz) = 28360 Added: head/devel/p5-Log-Log4perl-Tiny/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Log-Log4perl-Tiny/pkg-descr Fri Mar 6 22:36:42 2015 (r380632) @@ -0,0 +1,9 @@ +Log::Log4perl::Tiny yet another logging module. Nothing particularly fancy nor +original, too, but a single-module implementation of the features the author use +most from Log::Log4perl for quick things, namely: +- Easy mode and stealth loggers (aka log functions INFO, WARN, etc.) +- Debug message filtering by log level +- Line formatting customisation +- Quick sending of messages to a log file + +WWW: http://search.cpan.org/dist/Log-Log4perl-Tiny/ Added: head/devel/p5-Log-Log4perl-Tiny/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Log-Log4perl-Tiny/pkg-plist Fri Mar 6 22:36:42 2015 (r380632) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/Log/Log4perl/Tiny.pm +%%PERL5_MAN3%%/Log::Log4perl::Tiny.3.gz