2012-10-31 12:19:55 by Aleksej Saushev | Files touched by this commit (1460) |
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
|
2012-10-03 23:59:10 by Thomas Klausner | Files touched by this commit (2798) |
Log message:
Bump all packages that use perl, or depend on a p5-* package, or
are called p5-*.
I hope that's all of them.
|
2012-07-05 16:06:59 by Jens Rehsack | Files touched by this commit (2) |
Log message:
Updating package for Perl 5 module Log::Dispatch in devel/p5-Log-Dispatch
from 2.29 to 2.32.
pkgsrc changes:
- add missing dependency
Upstream changes:
2.32 2012-05-24
- Fix a test failure - test failed if you had 0.16 <= Sys::Syslog < 0.25
installed.
- Added a kludgey test failure fix for failure on Cygwin. Patch by Christian
Carey. RT #77364.
2.31 2012-05-21
- Added missing prereq - Class::Load.
2.30 2012-05-20
- Remove Sys::Syslog as a prereq, since you can use this distro perfectly well
without it. Fixes RT #52065.
- You can now pass a subroutine reference to the sugar methods like
$dispatch->debug() and friends. Requested by Jeffrey Thalhammer. RT #77308.
- Calling sugar methods like $dispatch->warn or $dispatch->crit did not
normalize the log level, so the level would be passed to the outputs as
"warn", not "warning". Reported by Karen Etheridge. RT #77203.
|
2011-12-15 03:14:44 by Hiramatsu Yoshifumi | Files touched by this commit (2) |
Log message:
Update p5-Log-Dispatch to 2.29.
Change from previous:
---------------------
2.29
- Add is_$level methods for compatibility with Log::Contextual. Patch by frew.
|
2011-08-14 14:26:51 by OBATA Akio | Files touched by this commit (406) |
Log message:
Revision bump after updating perl5 to 5.14.1.
|
2010-12-17 19:30:11 by Ulrich Habel | Files touched by this commit (2) | |
Log message:
- updated to 2.28
- package no longer uses Module::Build
Changelog:
2.28 2010-12-13
- The Log::Dispatch module still had version 2.26 in the last
release. Reported by ÃËyvind Skaar. RT #63876.
2.27 2010-10-16
- Fix docs on handling of arrays passed to ->debug, ->error, etc. Requested by
Andrew Hanenkamp. RT #61400.
- Allow an arrayref for the Syslog socket option. Requested by Paul
Bennett. RT #57631.
- License is now Artistic 2.0
|
2010-08-21 18:37:14 by Stoned Elipot | Files touched by this commit (1724) | |
Log message:
Bump the PKGREVISION for all packages which depend directly on perl,
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!
|
2009-10-12 12:18:10 by Ulrich Habel | Files touched by this commit (1) |
Log message:
- Fixed a typo
|
2009-10-12 12:06:47 by Ulrich Habel | Files touched by this commit (2) | |
Log message:
- updated to 2.26
- Changelog from upstream
2.26 Sep 22, 2009
- Doc updates. The 2.23 constructor API was still shown in all the output
subclasses. Fixed by Jon Swartz.
|
2009-09-19 18:44:15 by Jens Rehsack | Files touched by this commit (2) | |
Log message:
Updating devel/p5-Log-Dispatch from 2.22 to 2.25
pkgsrc changes:
- Adding license definition
Upstream changes:
2.25 Sep 15, 2009
- Added a workaround for a weird tainting issue with Params::Validate. This
caused a taint exception when a Log::Dispatch::Syslog was created under
taint mode. Note that there is still a problem in Params::Validate itself,
this is just a hack.
2.24 Sep 13, 2009
- Simplified new constructor API (the 2.23 API is still silently supported but
not documented):
Log::Dispatch->new( outputs => [ [ 'File', ... ],
[ 'Screen', ... ],
]
);
Implemented by Jon Swartz.
- All of the mail sending modules now warn unconditionally if sending mail
fails. This removes the incorrect use of warnings::enabled() in some
modules. RT #43516.
2.23 Sep 12, 2009
- A new constructor API that simplifies creating your Log::Dispatch object:
Log::Dispatch->new( outputs => [ File => { ... },
Screen => { ... },
],
);
Implemented by Jon Swartz.
- Made name parameter optional. We now auto-generate a unique name if one is
not given. Implemented by Jon Swartz.
- Added a newline parameter that causes a newline to be added to each message,
and updated the documentation regarding newlines. Implemented by Jon Swartz.
- Removed repetitive boilerplate documentation from each output
class. Implemented by Jon Swartz.
- The level_names and level_numbers used internally are now computed once and
shared between output objects. Implemented by Jon Swartz.
- Updated repo url - now at http://hg.urth.org/hg/Log-Dispatch
- Explicitly depend on Sys::Syslog 0.16.
- Added warn as a synonym for warning. RT #44821. Requested by Dylan Martin.
- Added an add_callback method to Log::Dispatch and
Log::Dispatch::Output. This lets you add a new formatting callback after an
object is created. Based on a patch from Ricardo Signes. RT #48283.
- The Log::Dispatch docs mistakenly told you to provide a log() method when
creating a new output class. RT #40561.
- Made all modules have the same version as Log::Dispatch itself.
|