File: control

package info (click to toggle)
librole-tiny-perl 1.003004-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 236 kB
  • ctags: 43
  • sloc: perl: 400; makefile: 2
file content (37 lines) | stat: -rw-r--r-- 1,691 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
34
35
36
37
Source: librole-tiny-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Alessandro Ghedini <ghedo@debian.org>
Section: perl
Priority: optional
Build-Depends: debhelper (>= 8)
Build-Depends-Indep: libclass-method-modifiers-perl,
                     libnamespace-autoclean-perl,
                     libstrictures-perl,
                     libtest-fatal-perl,
                     perl,
                     perl (>= 5.13.4) | libtest-simple-perl (>= 0.96)
Standards-Version: 3.9.6
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/librole-tiny-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/librole-tiny-perl.git
Homepage: https://metacpan.org/release/Role-Tiny
Testsuite: autopkgtest-pkg-perl

Package: librole-tiny-perl
Architecture: all
Depends: libclass-method-modifiers-perl,
         ${misc:Depends},
         ${perl:Depends}
Description: Perl module for minimalist role composition
 Role::Tiny is a Perl module to do minimalist role composition. Role composition
 can be thought of as much more clever and meaningful multiple inheritance.
 .
 The basics of this implementation of roles is:
  * If a method is already defined on a class, that method will not be composed
    in from the role.
  * If a method that the role "requires" to be implemented is not implemented,
    role application will fail loudly.
 .
 Unlike Class::C3, where the last class inherited from "wins," role composition
 is the other way around, where first wins. In a more complete system (see
 Moose) roles are checked to see if they clash. The goal of this is to be much
 simpler, hence disallowing composition of multiple roles at once.