mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-22 08:58:47 +00:00
A set of perl modules that allows you to enhance logging capabilities
PR: ports/27589 Submitted by: Jesse McConnell <jesse_mcconnell@hotmail.com>
This commit is contained in:
parent
70a062d631
commit
b08e1a20ae
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=43104
@ -320,6 +320,7 @@
|
||||
SUBDIR += p5-Locale-PGetText
|
||||
SUBDIR += p5-Locale-gettext
|
||||
SUBDIR += p5-LockFile-Simple
|
||||
SUBDIR += p5-Log-Agent
|
||||
SUBDIR += p5-Log-Dispatch
|
||||
SUBDIR += p5-Mac-FileSpec-Unixish
|
||||
SUBDIR += p5-Make
|
||||
|
42
devel/p5-Log-Agent/Makefile
Normal file
42
devel/p5-Log-Agent/Makefile
Normal file
@ -0,0 +1,42 @@
|
||||
# New ports collection makefile for: p5-Net-Server
|
||||
# Date created: 24 Apr 2001
|
||||
# Whom: Jesse McConnell <jesse_mcconnell@hotmail.com>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= Log-Agent
|
||||
PORTVERSION= 0.2.8
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= Log
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= jesse_mcconnell@hotmail.com
|
||||
|
||||
PERL_CONFIGURE= yes
|
||||
|
||||
MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
|
||||
MAN3= Log::Agent.3 \
|
||||
Log::Agent::Tag_List.3 \
|
||||
Log::Agent::Tag::Callback.3 \
|
||||
Log::Agent::Channel.3 \
|
||||
Log::Agent::Driver::File.3 \
|
||||
Log::Agent::Tag.3 \
|
||||
Log::Agent::Driver::Syslog.3 \
|
||||
Log::Agent::Tag::Caller.3 \
|
||||
Log::Agent::Driver::Default.3 \
|
||||
Log::Agent::Tag::String.3 \
|
||||
Log::Agent::Stamping.3 \
|
||||
Log::Agent::Message.3 \
|
||||
Log::Agent::Channel::File.3 \
|
||||
Log::Agent::Channel::Syslog.3 \
|
||||
Log::Agent::Driver::Silent.3 \
|
||||
Log::Agent::Priorities.3 \
|
||||
Log::Agent::Driver.3 \
|
||||
Log::Agent::Tag::Priority.3 \
|
||||
Log::Agent::Channel::Handle.3 \
|
||||
Log::Agent::Driver::Datum.3 \
|
||||
Log::Agent::File::Native.3
|
||||
|
||||
.include <bsd.port.mk>
|
1
devel/p5-Log-Agent/distinfo
Normal file
1
devel/p5-Log-Agent/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (Log-Agent-0.2.8.tar.gz) = fc59762caba048c5cbff9b5ba2f4b7dc
|
1
devel/p5-Log-Agent/pkg-comment
Normal file
1
devel/p5-Log-Agent/pkg-comment
Normal file
@ -0,0 +1 @@
|
||||
A set of perl modules that allows you to enhance logging capabilities
|
20
devel/p5-Log-Agent/pkg-descr
Normal file
20
devel/p5-Log-Agent/pkg-descr
Normal file
@ -0,0 +1,20 @@
|
||||
The Log::Agent module provides an abstract layer for logging and tracing, which
|
||||
is independant from the actual method used to physically perform those
|
||||
activities. It acts as an agent (hence the name) that collects the requests and
|
||||
delegates processing to a sublayer: the logging driver.
|
||||
|
||||
The Log::Agent module is meant to be used in all reusable components, since
|
||||
they cannot know in advance how the application which ends up using them will
|
||||
perform its logging activities: either by emitting messages on stdout and
|
||||
errors on stderr, or by directing messages to logfiles, or by using syslog(3).
|
||||
|
||||
The logging interface is common for all the logging drivers, and is therefore
|
||||
the result of a compromise between many logging schemes: any information given
|
||||
at this level must be either handled by all drivers, or may be ignored
|
||||
depending on the application's final choice.
|
||||
|
||||
WARNING: THIS INTERFACE IS STILL SOMEWHAT ALPHA AND COULD STILL CHANGE
|
||||
DEPENDING ON THE FEEDBACK THE AUTHOR RECIEVES, WITHOUT ANY BACKWARD
|
||||
COMPATIBILITY ASSURANCE.
|
||||
|
||||
Author: Raphael Manfredi <Raphael_Manfredi@pobox.com>
|
60
devel/p5-Log-Agent/pkg-plist
Normal file
60
devel/p5-Log-Agent/pkg-plist
Normal file
@ -0,0 +1,60 @@
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Channel.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Channel/File.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Channel/Handle.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Channel/Syslog.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Driver.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Driver/Datum.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Driver/Default.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Driver/File.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Driver/Silent.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Driver/Syslog.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/File_Pool.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/File/Native.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Formatting.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Message.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Prefixer.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Priorities.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Stamping.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Tag_List.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Tag.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Tag/Callback.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Tag/Caller.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Tag/Priority.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Tag/String.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/DATUM_is_here.al
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/Priorities/autosplit.ix
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/Priorities/level_from_prio.al
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/Priorities/prio_from_level.al
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/Priorities/priority_level.al
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/autosplit.ix
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/bug.al
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/inited.al
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/log_default.al
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/logcarp.al
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/logconfig.al
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/logconfess.al
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/logcroak.al
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/logdbg.al
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/logdie.al
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/logerr.al
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/logsay.al
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/logtags.al
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/logtrc.al
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/logwarn.al
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/logxcarp.al
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/logxcroak.al
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/logwrite.al
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/prio_tag.al
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Log/Agent/.packlist
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Log/Agent
|
||||
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Log 2>/dev/null || true
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent/Priorities
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/auto/Log/Agent
|
||||
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/auto/Log 2>/dev/null || true
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Channel
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Driver
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/File
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/Log/Agent/Tag
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/Log/Agent
|
||||
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Log 2>/dev/null || true
|
Loading…
Reference in New Issue
Block a user