2010-08-31 07:28:21 by Jens Rehsack | Files touched by this commit (2) |
Log message:
Updating devel/p5-Devel-Leak-Object from 1.00nb1 to 1.01
pkgsrc changes:
- switch to Module::Install::Bundled
Upstream changes:
1.01 Wed 16 Jun 2010
- Upgraded to Module::Install::DSL 0.99
- warn rather than die for objects that don't conform to our assumptions
- list tracked source line only once
- list the next caller in the stack if bless is called by the
class's new()
- add a checkpoint() status which lists new classes created (and
not destroyed) since the last call to checkpoint()
|
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-24 18:25:43 by Jens Rehsack | Files touched by this commit (2) |
Log message:
Updating devel/p5-Devel-Leak-Object from 0.92 to 1.00
pkgsrc changes:
- Adding license definition
- Handling bundled Module::Install
Upstream changes:
1.00 Thu 22 Oct 2009
- Upgrading to Module::Install::DSL 0.91
- Switching to a prod version (finally)
- Optionally track where leaked objects come from
- Fix dumping to STDERR at END (previously dumped to STDOUT)
- Tests for that
|
2009-02-25 22:36:51 by Jens Rehsack | Files touched by this commit (3) |
Log message:
This module provides tracking of objects, for the purpose of detecting
memory leaks due to circular references or innappropriate caching schemes.
Object tracking can be enabled on a per object basis. Any objects thus
tracked are remembered until DESTROYed; details of any objects left are
printed out to stderr at END-time.
use Devel::Leak::Object qw(GLOBAL_bless);
This form overloads bless to track construction and destruction of all
objects. As an alternative, by importing bless, you can just track the
objects of the caller code that is doing the use.
If you use GLOBAL_bless to overload the bless function, please note that it
will ONLY apply to bless for modules loaded AFTER Devel::Leak::Object has
enabled the hook.
|