File: control

package info (click to toggle)
libcontext-preserve-perl 0.01-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, stretch, wheezy
  • size: 124 kB
  • ctags: 80
  • sloc: perl: 905; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 1,239 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
Source: libcontext-preserve-perl
Section: perl
Priority: optional
Build-Depends: debhelper (>= 7)
Build-Depends-Indep: perl (>= 5.6.0-12), libtest-use-ok-perl,
  libtest-exception-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Jonathan Yu <frequency@cpan.org>, Ryan Niebur <ryanryan52@gmail.com>
Standards-Version: 3.8.1
Homepage: http://search.cpan.org/dist/Context-Preserve/
Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libcontext-preserve-perl/
Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libcontext-preserve-perl/

Package: libcontext-preserve-perl
Architecture: all
Depends: ${perl:Depends}, ${misc:Depends}
Description: Perl module to preserve calling context
 Context::Preserve allows developers to preserve the calling context of their
 subroutines, which is useful for functions that call other functions and
 return their results, with some possible modifications. This means that, if
 your module is called in scalar, list or void context, the given subroutine
 is called in the same context and the appropriate 'thing' is returned.
 .
 This means that it is easy to write functions that call other functions,
 modify their result and return it, in a seamless manner.