File: control

package info (click to toggle)
libclass-pluggable-perl 0.022-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 72 kB
  • sloc: perl: 73; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 1,198 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
32
33
Source: libclass-pluggable-perl
Standards-Version: 4.7.2
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders:
 Sarah Connor <sarah.connor.uk@googlemail.com>,
 Andreas Tille <tille@debian.org>,
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends:
 debhelper-compat (= 13),
Build-Depends-Indep:
 perl,
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libclass-pluggable-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libclass-pluggable-perl.git
Homepage: https://metacpan.org/release/Class-Pluggable

Package: libclass-pluggable-perl
Architecture: all
Multi-Arch: foreign
Depends:
 ${perl:Depends},
 ${misc:Depends},
Description: simple pluggable class
 This class makes your class (sub class of Class::Pluggable) pluggable.
 In this documentation, the word "pluggable" has two meanings.
 .
 One is just simply adding new method to your pluggable class from
 other plugin modules. So, after you plugged some modules to your class,
 you can use there method exactly same as your own object method.
 .
 You can see this kind of plugin mechanism in CGI::Application and
 CGI::Application::Plugin::Session.