File: control

package info (click to toggle)
libreturn-multilevel-perl 0.04-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 96 kB
  • ctags: 5
  • sloc: perl: 181; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 1,149 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
Source: libreturn-multilevel-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Florian Schlichting <fsfs@debian.org>
Section: perl
Priority: optional
Build-Depends: debhelper (>= 8)
Build-Depends-Indep: perl,
                     libdata-munge-perl (>= 0.07),
                     libtest-fatal-perl
Standards-Version: 3.9.6
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libreturn-multilevel-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libreturn-multilevel-perl.git
Homepage: https://metacpan.org/release/Return-MultiLevel
Testsuite: autopkgtest-pkg-perl

Package: libreturn-multilevel-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libdata-munge-perl (>= 0.07)
Description: Perl module to enable returning from a nested call stack
 Return::MultiLevel provides a way to return immediately from a deeply
 nested call stack. This is similar to exceptions, but exceptions don't
 stop automatically at a target frame (and they can be caught by
 intermediate stack frames). In other words, this is more like
 setjmp(3)/longjmp(3) than die.