File: control

package info (click to toggle)
libmoosex-role-parameterized-perl 1.09-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 436 kB
  • ctags: 14
  • sloc: perl: 456; makefile: 2
file content (46 lines) | stat: -rw-r--r-- 2,176 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
38
39
40
41
42
43
44
45
46
Source: libmoosex-role-parameterized-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Salvatore Bonaccorso <carnil@debian.org>,
           Brian Cassidy <brian.cassidy@gmail.com>,
           Jonathan Yu <jawnsy@cpan.org>,
           Alejandro Garrido Mota <garridomota@gmail.com>,
           Ansgar Burchardt <ansgar@debian.org>,
           gregor herrmann <gregoa@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 9.20140227~),
               libmodule-build-tiny-perl,
               perl
Build-Depends-Indep: libcpan-meta-check-perl (>= 0.011),
                     libmodule-runtime-perl,
                     libmoose-perl,
                     libmoosex-role-withoverloading-perl (>= 0.14),
                     libnamespace-autoclean-perl,
                     libnamespace-clean-perl,
                     libtest-fatal-perl,
                     libtest-requires-perl
Standards-Version: 3.9.8
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libmoosex-role-parameterized-perl.git
Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libmoosex-role-parameterized-perl.git
Homepage: https://metacpan.org/release/MooseX-Role-Parameterized

Package: libmoosex-role-parameterized-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libmodule-runtime-perl,
         libmoose-perl,
         libnamespace-autoclean-perl,
         libnamespace-clean-perl
Breaks: libmoosex-storage-perl (<< 0.47)
Description: Moose extension providing parameterized roles
 MooseX::Role::Parameterized is a Moose extension that consists of two things:
 parameter declarations and a role block.
 .
 Parameters are declared using the "parameter" keyword which resembles Moose's
 "has", even supporting any option that "has" accepts. You can use any option
 that "has" accepts. The default value for the "is" option is read-only, as
 that's a very common case. These parameters will get their values when the
 consuming class (or role) uses Moose's "with". A parameter object will be
 constructed with these values, and passed to the role block.