Commit graph

8 commits

Author SHA1 Message Date
wiz
d2ca14a3f1 Bump all packages for perl-5.18, that
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.
2013-05-31 12:39:57 +00:00
asau
e1ab7079b6 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
wiz
8b5d49eb78 Bump all packages that use perl, or depend on a p5-* package, or
are called p5-*.

I hope that's all of them.
2012-10-03 21:53:53 +00:00
adam
c6e5591715 Revision bump after updating perl to 5.14.1 2011-08-12 07:42:49 +00:00
sno
f680c31aa8 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-31 05:28:21 +00:00
seb
c3f1e700ad 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!
2010-08-21 16:32:42 +00:00
sno
3a0110d367 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-10-24 16:25:43 +00:00
sno
67bbbed93b 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.
2009-02-25 21:36:51 +00:00