File: control

package info (click to toggle)
libclass-method-modifiers-perl 2.12-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 404 kB
  • ctags: 9
  • sloc: perl: 359; makefile: 2
file content (30 lines) | stat: -rw-r--r-- 1,372 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
Source: libclass-method-modifiers-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Nathan Handler <nhandler@debian.org>,
           Ansgar Burchardt <ansgar@debian.org>,
           Jonathan Yu <jawnsy@cpan.org>,
           gregor herrmann <gregoa@debian.org>,
           Alessandro Ghedini <ghedo@debian.org>
Section: perl
Priority: optional
Build-Depends: debhelper (>= 9)
Build-Depends-Indep: libmoose-perl,
                     libtest-fatal-perl,
                     libtest-requires-perl,
                     perl
Standards-Version: 3.9.8
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libclass-method-modifiers-perl.git
Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libclass-method-modifiers-perl.git
Homepage: https://metacpan.org/release/Class-Method-Modifiers
Testsuite: autopkgtest-pkg-perl

Package: libclass-method-modifiers-perl
Architecture: all
Depends: ${perl:Depends},
         ${misc:Depends}
Description: Perl module providing method modifiers
 Class::Method::Modifiers provides three modifiers: before, around, and after.
 The before and after modifiers are run just before and after the method they
 modify, but cannot really affect that original method. The remaining modifier,
 around, is run in place of the original method, with a hook to easily call the
 original method.