# HG changeset patch # User Hans-G?nter Theisgen # Date 1641103332 -3600 # Node ID 5c3f57bc9b11b4d63778edf0a6129a9f326003b8 # Parent 2ebf9ccf843927f5b53d08ba09ff7f5107af9a3e updated perl-log-agent (1.003 -> 1.005) diff -r 2ebf9ccf8439 -r 5c3f57bc9b11 perl-log-agent/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-log-agent/description.txt Sun Jan 02 07:02:12 2022 +0100 @@ -0,0 +1,16 @@ +The Log::Agent module provides an abstract layer for logging and tracing, +which is independent 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. diff -r 2ebf9ccf8439 -r 5c3f57bc9b11 perl-log-agent/receipt --- a/perl-log-agent/receipt Sun Jan 02 06:57:36 2022 +0100 +++ b/perl-log-agent/receipt Sun Jan 02 07:02:12 2022 +0100 @@ -1,12 +1,13 @@ # SliTaz package receipt. PACKAGE="perl-log-agent" -VERSION="1.003" +VERSION="1.005" CATEGORY="development" SHORT_DESC="Perl extension Log::Agent." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL" -WEB_SITE="https://metacpan.org/release/Log-Agent" +WEB_SITE="https://metacpan.org/pod/Log::Agent" +REPOLOGY="perl:log-agent" SOURCE="Log-Agent" TARBALL="$SOURCE-$VERSION.tar.gz" @@ -26,12 +27,11 @@ { perl Makefile.PL && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/lib $fs/usr + cook_copy_folders lib }