File: control

package info (click to toggle)
libreturn-multilevel-perl 0.05-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 112 kB
  • ctags: 5
  • sloc: perl: 185; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 1,249 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
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 (>= 9)
Build-Depends-Indep: perl,
                     libdata-munge-perl (>= 0.07),
                     libscope-upper-perl (>= 0.29),
                     libtest-fatal-perl
Standards-Version: 4.1.1
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libreturn-multilevel-perl.git
Vcs-Git: https://anonscm.debian.org/git/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)
Recommends: libscope-upper-perl (>= 0.29)
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.