File: control

package info (click to toggle)
libclass-factory-perl 1.06-3.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 116 kB
  • sloc: perl: 246; makefile: 2
file content (29 lines) | stat: -rw-r--r-- 1,208 bytes parent folder | download | duplicates (2)
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
Source: libclass-factory-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: gregor herrmann <gregoa@debian.org>,
           Krzysztof Krzyzaniak (eloy) <eloy@debian.org>,
           Damyan Ivanov <dmn@debian.org>
Section: 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-factory-perl.git
Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libclass-factory-perl.git
Homepage: https://metacpan.org/release/Class-Factory
Testsuite: autopkgtest-pkg-perl

Package: libclass-factory-perl
Architecture: all
Depends: ${perl:Depends},
         ${misc:Depends}
Description: Base class for dynamic factory classes
 This is a simple module that factory classes can use to generate new
 types of objects on the fly, providing a consistent interface to common
 groups of objects.
 .
 Factory classes are used when you have different implementations for
 the same set of tasks but may not know in advance what implementations
 you will be using.  With a factory class this is easy.  Class::Factory
 even provides a simple constructor for you.