summaryrefslogtreecommitdiff
path: root/devel/p5-Devel-Caller
AgeCommit message (Collapse)AuthorFilesLines
2010-04-24Update p5-Devel-Caller from version 2.04 to version 2.05.seb2-7/+7
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-23Updating devel/p5-Devel-Caller from 2.03nb1 to 2.04sno2-7/+8
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-13Ran pkglint --autofix on the devel/ category. Most of the changes arerillig1-2/+2
simple white-space issues like indentation and trailing spaces. The others are cross-references for Makefile.common.
2008-10-19Bump the PKGREVISION for all packages which depend directly on perl,he1-1/+2
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-14Added devel/p5-Devel-Caller version 2.03abs3-0/+48
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.