File: control

package info (click to toggle)
libtrycatch-perl 1.003002-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 500 kB
  • sloc: perl: 2,753; ansic: 19; makefile: 3
file content (52 lines) | stat: -rw-r--r-- 1,849 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Source: libtrycatch-perl
Section: perl
Priority: optional
Build-Depends: perl,
 debhelper-compat (= 13),
 libdevel-declare-perl,
 libmoose-perl,
 libmoosex-types-perl,
 libparse-method-signatures-perl,
 libscope-upper-perl,
 libsub-exporter-perl,
 libvariable-magic-perl,
 libb-hooks-endofscope-perl (>= 0.12),
 libb-hooks-op-check-perl (>= 0.18),
 libb-hooks-op-ppaddr-perl (>= 0.03),
 libextutils-depends-perl (>= 0.302),
 libnamespace-clean-perl (>= 0.20),
 libtest-exception-perl,
 libxml-sax-expat-perl,
 libxml-sax-base-perl,
 libmodule-install-perl,
 perl-xs-dev
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Jonas Smedegaard <dr@jones.dk>
Standards-Version: 4.7.2
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libtrycatch-perl.git
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libtrycatch-perl
Homepage: https://metacpan.org/release/TryCatch
Testsuite: autopkgtest-pkg-perl
Rules-Requires-Root: no

Package: libtrycatch-perl
Architecture: any
Depends: ${misc:Depends}, ${shlibs:Depends}, ${perl:Depends},
 libdevel-declare-perl,
 libmoose-perl,
 libmoosex-types-perl,
 libparse-method-signatures-perl,
 libscope-upper-perl,
 libsub-exporter-perl,
 libvariable-magic-perl,
 libb-hooks-endofscope-perl (>= 0.12),
 libb-hooks-op-check-perl (>= 0.18),
 libb-hooks-op-ppaddr-perl (>= 0.03),
 libextutils-depends-perl (>= 0.302),
 libnamespace-clean-perl (>= 0.20)
Description: first class try catch semantics for Perl
 TryCatch aims to provide a nicer syntax and method to catch errors in
 Perl, similar to what is found in other languages (such as Java, Python
 or C++). The standard method of using "eval {}; if ($@) {}" is often
 prone to subtle bugs, primarily that its far too easy to stomp on the
 error in error handlers. And also eval/if isn't the nicest idiom.