summaryrefslogtreecommitdiff
path: root/devel/p5-autobox
AgeCommit message (Collapse)AuthorFilesLines
2010-09-23Updating devel/p5-autobox from 2.70nb1 to 2.71sno2-8/+7
pkgsrc changes: - bump dependency version of Scope::Guard to 0.20 Upstream changes: 2.71 Thu Sep 23 02:28:10 2010 - fix for recent perls: remove cargo-cultism
2010-08-21Bump the PKGREVISION for all packages which depend directly on perl,seb1-1/+2
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-23Set LICENSE to Perl 5'sseb1-1/+2
2010-04-23Update p5-autobox from version 2.55 to version 2.70.seb2-7/+7
Upstream changes: 2.70 Wed Mar 17 19:27:44 2010 - replace autobox_can and autobox_isa with autobox_class this also fixes import, unimport and VERSION - added t/version.t - renamed t/universal.t => t/autobox_class.t 2.60 Wed Mar 17 16:34:56 2010 - fix RT #46814 (thanks Tye McQueen) - added t/rt_46814.t - fix RT #49273 (thanks Daniel Austin) - fix RT #55565 (thanks Schwern) - fix RT #55652 (thanks Schwern) - $native->isa and $native->can must now be called as $native->autobox_isa and $native->autobox_can - added t/rt_55652.t
2009-03-22Initial import of p5-autobox version 2.55 in the NetBSD Packagesseb3-0/+39
Collection. The Perl 5 module autobox provides an autobox pragma. It allows methods to be called on integers, floats, strings, arrays, hashes, and code references in exactly the same manner as blessed references. The autoboxing is transparent: boxed values are not blessed into their (user-defined) implementation class (unless the method elects to bestow such a blessing) - they simply use its methods as though they are. The classes (packages) into which the native types are boxed are fully configurable. By default, a method invoked on a non-object is assumed to be defined in a class whose name corresponds to the ref() type of that value - or SCALAR if the value is a non-reference. This mapping can be overriden by passing key/value pairs to the use autobox statement, in which the keys represent native types, and the values their associated classes.