summaryrefslogtreecommitdiff
path: root/devel/p5-Return-Value
AgeCommit message (Collapse)AuthorFilesLines
2009-07-07Updating package for p5 module Return::Value from 1.302 to 1.666.001sno2-8/+8
Setting license to ${PERL5_LICENSE} Upstream changes: 1.666001 2009-06-08 1.666000 2009-06-08 formally declare Return::Value deprecated 1.303 2007-04-01 fix test to work on 5.5
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-20Roman Kulik cannot maintain those packages anymore (he told me inheinz1-2/+2
private mail some months ago).
2008-06-12Add DESTDIR support.joerg1-1/+3
2007-10-25Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mkjlam1-1/+0
can handle packages having no PLIST files.
2007-07-29Polymorphic return values are really useful. Often, we just want to know ifadrianp4-0/+37
something worked or not. Other times, we'd like to know what the error text was. Still others, we may want to know what the error code was, and what the error properties were. We don't want to handle objects or data structures for every single return value, but we do want to check error conditions in our code because that's what good programmers do. When functions are successful they may return true, or perhaps some useful data. In the quest to provide consistent return values, this gets confusing between complex, informational errors and successful return values. This module provides these features with a simple API that should get you what you're looking for in each contex a return value is used in. Imported from pkgsrc-wip and packaged by kuli0020@umn.edu