File: control

package info (click to toggle)
libclass-default-perl 1.51-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 180 kB
  • ctags: 88
  • sloc: perl: 1,006; makefile: 2
file content (31 lines) | stat: -rw-r--r-- 1,426 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
31
Source: libclass-default-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Allard Hoeve <allard@byte.nl>,
           Krzysztof Krzyzaniak (eloy) <eloy@debian.org>,
           gregor herrmann <gregoa@debian.org>,
           Fabrizio Regalli <fabreg@fabreg.it>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 9)
Build-Depends-Indep: perl
Standards-Version: 3.9.8
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libclass-default-perl.git
Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libclass-default-perl.git
Homepage: https://metacpan.org/release/Class-Default

Package: libclass-default-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends}
Description: Perl module to make static calls apply to a default instantiation
 Class::Default provides a mechanism to allow your class to take static method
 calls and apply it to a default instantiation of an object. It provides a
 flexibility to an API that allows it to be used more comfortably in
 different situations.
 .
 This technique appears to be especially useful when writing modules that you
 want to be used in either a single use or a persistent environment. In a CGI
 like environment, you want the simplicity of a static interface. You can
 call Class->method directly, without having to pass an instantiation 
 around constantly.