libreturn-value-perl 1.666001-1 source package in Ubuntu

Changelog

libreturn-value-perl (1.666001-1) unstable; urgency=low

  [ gregor herrmann ]
  * debian/control:
    - switch Vcs-Browser field to ViewSVN
    - change my email address
    - make short description a noun phrase
    - mention module name in long description

  [ Nathan Handler ]
  * New upstream release
  * debian/watch:
    - Remove comment
    - Update to ignore development releases.
  * debian/copyright:
    - Update to new format
  * debian/rules:
    - Update to new format
  * debian/control:
    - Bump debhelper Build-Depends to >= 7
    - Add myself to list of Uploaders
    - Bump Standards-Version to 3.8.1
  * debian/compat:
    - Bump to 7

 -- Ubuntu Archive Auto-Sync <email address hidden>   Fri,  12 Jun 2009 13:18:38 +0100

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Karmic
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Precise release universe perl

Builds

Karmic: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libreturn-value-perl_1.666001.orig.tar.gz 14.2 KiB 55dede504f20b3cdcc179065312165e02d433f7bc202bb454d33fafe00f7ab06
libreturn-value-perl_1.666001-1.diff.gz 2.4 KiB a1afa86426bab806da8377799709a21f180026a442cde17455ff42c78d9dfddb
libreturn-value-perl_1.666001-1.dsc 1.5 KiB 1e256e543c8cfda441e9c19561f4f1dd9cd2a459976c8cc4d91f92e932c80a9a

Available diffs

View changes file

Binary packages built by this source

libreturn-value-perl: Perl module for polymorphic return values

 Polymorphic return values are really useful. Often, we just want to know if
 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.
 .
 Return::Value provides these features with a simple API that should get you
 what you're looking for in each context a return value is used in.
 .
 WARNING: THIS MODULE IS DEPRECATED. IT HAS STARTED TO ISSUE WARNINGS WHEN
          USED, AND WILL GO AWAY EVENTUALLY. DO NOT USE!