File: control

package info (click to toggle)
libclass-whitehole-perl 0.04-7
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 64 kB
  • sloc: perl: 17; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 1,106 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: libclass-whitehole-perl
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: gregor herrmann <gregoa@debian.org>
Build-Depends: debhelper (>= 10)
Build-Depends-Indep: perl
Standards-Version: 4.1.3
Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libclass-whitehole-perl.git
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libclass-whitehole-perl.git
Homepage: http://search.cpan.org/~mschwern/Class-WhiteHole/

Package: libclass-whitehole-perl
Architecture: all
Depends: ${perl:Depends}, ${misc:Depends}
Description: base class to treat unhandled method calls as errors
 It is possible to accidentally inherit an AUTOLOAD method. Often this
 will happen if a class somewhere in the chain uses AutoLoader or
 defines one of their own. This can lead to confusing error messages
 when method lookups fail.
 .
 Sometimes you want to avoid this accidental inheritance. In that
 case, inherit from Class::WhiteHole. All unhandled methods will
 produce normal Perl error messages.