summaryrefslogtreecommitdiff
path: root/devel/p5-Throwable
AgeCommit message (Collapse)AuthorFilesLines
2011-08-14Revision bump after updating perl5 to 5.14.1.obache1-2/+2
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-08-01Update devel/p5-Throwable from 0.100090 to 0.102080sno2-6/+6
Upstream changes: 0.102080 2010-07-27 12:09:21 America/New_York refactor stack trace autocreation to StackTrace::Auto role make Throwable::Error immutable 0.101110 2010-04-21 20:59:59 America/New_York avoid doing: length undef (thanks, Yuval Kogman)
2010-03-11Importing package for perl5 module Throwable as dependency for scheduledsno3-0/+38
update of mail/p5-Email-Sender Throwable is a role for classes that are meant to be thrown as exceptions to standard program flow. It is very simple and does only two things: saves any previous value for $@ and calls die $self. Throwable::Error is a base class for exceptions that will be thrown to signal errors and abort normal program flow. Throwable::Error is an alternative to Exception::Class, the features of which are largely provided by the Moose object system atop which Throwable::Error is built. Throwable::Error performs the Throwable role.