Add LICENSE
Upstream changes:
Version 1.000 (2013-08-13)
Switched to standard X.YYYZZZ versioning.
Replaced ChangeLog with changes.pod.
Updated 'clean' arguments in Makefile.PL.
Updated Agent.pm and replaced old README.
Version 0.308 (2013-08-10)
Changed license to the Artistic License 2.0.
Replaced META.yml with META.json.
Fixed tests for Carp behavior and file permissions.
Do it for all packages that
* mention perl, or
* have a directory name starting with p5-*, or
* depend on a package starting with p5-
like last time, for 5.18, where this didn't lead to complaints.
Let me know if you have any this time.
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package
Like last time, where this caused no complaints.
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1.
The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=..."), minus the packages updated after
the perl package update.
sno@ was right after all, obache@ kindly asked and he@ led the
way. Thanks!
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0.
The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=...").
Patch provided by Martin Wilke via PR 34347.
Changes:
Sun Oct 2 12:57:35 EDT 2005 Mark Rogaski <mrogaski@cpan.org>
. Description: 0.3.7
Replaced a non-localized modification $^W with "no warnings" so
warnings are no disabled globally. Thanks to Andreas Vierengel for
pointing this out.
Fixed formatting behavior for strings that contain "%%" without any
other formating characters. Thanks to David Coppit for this one.
Fixed a minor undef warning in a major kludge in the Agent::Driver
code.
developer is officially maintaining the package.
The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list). Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.
Changes from 0.3.3:
Mon Feb 2 22:34:28 EST 2004 Mark Rogaski
. Description: 0.3.6
Stripped line endings in common tests to allow tests to succeed
under non-UN*X environments. Also replaced an unnecessary handle
alias with the actual file name in t/file.t. Thanks to Jay Lawrence
and Terrence Brannon for pointing out the test problems.
Sat Sep 27 13:56:58 EDT 2003 Mark Rogaski
. Description: 0.3.5
Added a wrapper for &AutoLoader::AUTOLOAD to save the value
of $!, which is often clobbered before the substitution of
"%m" by logxxx().
Added a META.yml file and disabled autogeneration in Makefile.PL.
Sat Mar 8 11:43:41 EST 2003 Mark Rogaski
. Description: 0.3.4
Made the logxxx() calls transparent to all (current)
sprintf() formatting patterns. Not all formatting
errors will be caught before passed to sprintf(), but
the obviously malformed ones will be detected.
Added support for embedded newlines in messages passed to
logcarp() and logxcarp().
Package change: add HOMEPAGE.
module directory has changed (eg. "darwin-2level" vs.
"darwin-thread-multi-2level").
binary packages of perl modules need to be distinguishable between
being built against threaded perl and unthreaded perl, so bump the
PKGREVISION of all perl module packages and introduce
BUILDLINK_RECOMMENDED for perl as perl>=5.8.5nb5 so the correct
dependencies are registered and the binary packages are distinct.
addresses PR pkg/28619 from H. Todd Fujinaka.
Log::Agent is a general logging framework aimed at reusable modules.
Instead of having modules insist on using their onw logging reporting
(by hardwiring calls to warn() or syslog()) which can conflict with
the final application's choice, one may use logwarn() for instance to
emit a warning.