File: control

package info (click to toggle)
libautodie-perl 2.10-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 528 kB
  • ctags: 305
  • sloc: perl: 4,012; makefile: 4
file content (35 lines) | stat: -rw-r--r-- 1,731 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Source: libautodie-perl
Section: perl
Priority: optional
Build-Depends: debhelper (>= 7.0.50)
Build-Depends-Indep: libbsd-resource-perl, libipc-system-simple-perl,
 libsub-identify-perl (>= 0.04), libtest-perl-critic-perl,
 libtest-pod-coverage-perl, libtest-pod-perl, perl (>= 5.10),
 libtest-kwalitee-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Jeremiah C. Foster <jeremiah@jeremiahfoster.com>,
 Rene Mayorga <rmayorga@debian.org.sv>, Jonathan Yu <jawnsy@cpan.org>,
 Angel Abad <angelabad@gmail.com>,
 Ryan Niebur <ryan@debian.org>, Damyan Ivanov <dmn@debian.org>,
 gregor herrmann <gregoa@debian.org>
Standards-Version: 3.8.4
Homepage: http://search.cpan.org/dist/autodie/
Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libautodie-perl/
Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libautodie-perl/

Package: libautodie-perl
Architecture: all
Depends: ${misc:Depends}, ${perl:Depends}, libsub-identify-perl (>= 0.04)
Recommends: libipc-system-simple-perl (>= 0.12)
Description: 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.