wok rev 24234
updated perl-log-agent (1.003 -> 1.005)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Jan 02 07:02:12 2022 +0100 (2022-01-02) |
parents | 2ebf9ccf8439 |
children | 53660c632117 |
files | perl-log-agent/description.txt perl-log-agent/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/perl-log-agent/description.txt Sun Jan 02 07:02:12 2022 +0100 1.3 @@ -0,0 +1,16 @@ 1.4 +The Log::Agent module provides an abstract layer for logging and tracing, 1.5 +which is independent from the actual method used to physically perform 1.6 +those activities. 1.7 +It acts as an agent (hence the name) that collects the requests and 1.8 +delegates processing to a sublayer: the logging driver. 1.9 + 1.10 +The Log::Agent module is meant to be used in all reusable components, 1.11 +since they cannot know in advance how the application which ends up 1.12 +using them will perform its logging activities: either by emitting 1.13 +messages on stdout and errors on stderr, or by directing messages to 1.14 +logfiles, or by using syslog(3). 1.15 + 1.16 +The logging interface is common for all the logging drivers, and is 1.17 +therefore the result of a compromise between many logging schemes: 1.18 +any information given at this level must be either handled by all 1.19 +drivers, or may be ignored depending on the application's final choice.
2.1 --- a/perl-log-agent/receipt Sun Jan 02 06:57:36 2022 +0100 2.2 +++ b/perl-log-agent/receipt Sun Jan 02 07:02:12 2022 +0100 2.3 @@ -1,12 +1,13 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="perl-log-agent" 2.7 -VERSION="1.003" 2.8 +VERSION="1.005" 2.9 CATEGORY="development" 2.10 SHORT_DESC="Perl extension Log::Agent." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 LICENSE="GPL" 2.13 -WEB_SITE="https://metacpan.org/release/Log-Agent" 2.14 +WEB_SITE="https://metacpan.org/pod/Log::Agent" 2.15 +REPOLOGY="perl:log-agent" 2.16 2.17 SOURCE="Log-Agent" 2.18 TARBALL="$SOURCE-$VERSION.tar.gz" 2.19 @@ -26,12 +27,11 @@ 2.20 { 2.21 perl Makefile.PL && 2.22 make && 2.23 - make DESTDIR=$DESTDIR install 2.24 + make install DESTDIR=$DESTDIR 2.25 } 2.26 2.27 # Rules to gen a SliTaz package suitable for Tazpkg. 2.28 genpkg_rules() 2.29 { 2.30 - mkdir -p $fs/usr 2.31 - cp -a $install/usr/lib $fs/usr 2.32 + cook_copy_folders lib 2.33 }