2011-08-12 09:03:42 by Adam Ciarcinski | Files touched by this commit (1) |
Log message:
Revision bump after updating perl to 5.14.1
|
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!
|
2010-04-24 21:24:50 by Stoned Elipot | Files touched by this commit (2) |
Log message:
Update p5-Devel-Caller from version 2.04 to version 2.05.
Pkgsrc changes:
- Change CPAN HOMEPAGE flavor
Upstream changes:
2.05 Thursday 8th April, 2010
Don't call B::PADOP->gv. Work by by Florian Ragwitz
http://github.com/rafl/perl-devel-caller/commit/248a23390eef48a73bb717be085da58ce50ff784
|
2010-02-23 11:19:36 by Jens Rehsack | Files touched by this commit (2) | |
Log message:
Updating devel/p5-Devel-Caller from 2.03nb1 to 2.04
pkgsrc changes:
- Apply update from PR pkg/42831
- Add license definition
Upstream changes:
2.04 Tuesday 16th February, 2010
Use CxTYPE macro rather than directly inspecting cx->cx_type
http://rt.cpan.org/Public/Bug/Display.html?id=33005
|
2009-06-13 08:46:48 by Roland Illig | Files touched by this commit (67) |
Log message:
Ran pkglint --autofix on the devel/ category. Most of the changes are
simple white-space issues like indentation and trailing spaces. The
others are cross-references for Makefile.common.
|
2008-10-19 21:19:25 by Havard Eidnes | Files touched by this commit (1179) |
Log message:
Bump the PKGREVISION for all packages which depend directly on perl,
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=...").
|
2008-07-14 11:24:50 by David Brownlee | Files touched by this commit (3) | |
Log message:
Added devel/p5-Devel-Caller version 2.03
This provides a 'meatier' version of caller:
caller_cv($level)
caller_cv gives you the coderef of the subroutine being invoked
at the call frame indicated by the value of $level
caller_args($level)
Returns the arguments passed into the caller at level $level
caller_vars( $level, $names ) =item called_with($level, $names)
called_with returns a list of references to the original
arguments to the subroutine at $level. if $names is true, the
names of the variables will be returned instead
constants are returned as undef in both cases
called_as_method($level)
called_as_method returns true if the subroutine at $level was
called as a method.
|