libautodie-perl 2.29-2 source package in Ubuntu

Changelog

libautodie-perl (2.29-2) unstable; urgency=medium

  * Team upload.
  * Fix a scoping issue with "no autodie" and the "system" sub.
    (Closes: #798096)

 -- Niko Tyni <email address hidden>  Fri, 25 Dec 2015 12:42:08 +0200

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Bionic release universe perl
Xenial release universe perl

Builds

Xenial: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libautodie-perl_2.29-2.dsc 2.3 KiB af22ff92820b4f25e2a5921a9015efc43d6195656adda59a9db1ddeeb5686259
libautodie-perl_2.29.orig.tar.gz 91.2 KiB f5b77917e7004179c93ff8511c8a4c1ea19df3da6379f78b55b57791c45229bf
libautodie-perl_2.29-2.debian.tar.xz 5.2 KiB 4bfb87189dae6f8368d3d266eb97fec987a23ed75b6dd4e5bb99b1c274a970ea

Available diffs

No changes file available.

Binary packages built by this source

libautodie-perl: Perl pragma to make certain failures fatal

 autodie is a Perl pragma that changes the behaviour of many built-in functions
 so that exceptions are thrown on failure rather than simply returning a false
 value. It understands lexical scope, meaning functions and subroutines altered
 with this module will only have this behaviour until the end of the enclosing
 eval, file or block, so it is useful when some code is out of your control.
 .
 By throwing exceptions on failure rather than simply returning false, programs
 are more robust and problems are easier to troubleshoot.
 .
 This module can also use IPC::System::Simple (see libipc-system-simple-perl)
 to do all the heavy lifting.