libguard-perl 1.022-1build2 source package in Ubuntu

Changelog

libguard-perl (1.022-1build2) trusty; urgency=low

  * Rebuild for Perl 5.18.
 -- Colin Watson <email address hidden>   Mon, 21 Oct 2013 10:10:49 +0100

Upload details

Uploaded by:
Colin Watson
Uploaded to:
Trusty
Original maintainer:
Debian Perl Group
Architectures:
any
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty release universe perl

Downloads

File Size SHA-256 Checksum
libguard-perl_1.022.orig.tar.gz 6.6 KiB 35f1ba97f19a5029ecd1eba94399259592e359e0f5686aef6e758496484a5869
libguard-perl_1.022-1build2.debian.tar.gz 3.3 KiB 64abec955e1003cb653eab83d61c7f67939cd5e65174e43e9fea741470dde6f5
libguard-perl_1.022-1build2.dsc 2.0 KiB 7f5c46192310f163ef8bd84e7ad3daad3e9f73d14b223d1ded97ca1e6d8c1bdd

Available diffs

View changes file

Binary packages built by this source

libguard-perl: Perl module providing safe cleanup using guard objects

 Guard is a Perl module implementing so-called "guards," which are things that
 "guard" a resource, ensuring that it is safely cleaned up when expected, even
 if exceptional conditions interrupt the normal control flow. This allows one
 to write code which executes an arbitrary code block or subroutine when either
 the related Guard Object is destroyed or when the current scope ends. In other
 languages, this sort of functionality is provided by the 'finally' keyword.