| 12
 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: libmethod-alias-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Niko Tyni <ntyni@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 9)
Build-Depends-Indep: perl,
                     libtest-pod-perl
Standards-Version: 3.9.8
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libmethod-alias-perl.git
Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libmethod-alias-perl.git
Homepage: https://metacpan.org/release/Method-Alias
Package: libmethod-alias-perl
Architecture: all
Depends: ${perl:Depends},
         ${misc:Depends}
Description: module to create method aliases
 The traditional way to create a method alias (provide an alternate
 name for a method) is simply a GLOB alias.  While this works fine for
 functions, it does not work for methods overloaded by a subclass.
 .
 Instead, Method::Alias creates a number of methods in the caller's
 package to call the real method. It is designed to be used as a pragma,
 to which you provide a set of pairs of method names.
 |