File: control

package info (click to toggle)
libmoosex-strictconstructor-perl 0.19-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch, wheezy
  • size: 156 kB
  • ctags: 3
  • sloc: perl: 170; makefile: 4
file content (29 lines) | stat: -rw-r--r-- 1,271 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
Source: libmoosex-strictconstructor-perl
Section: perl
Priority: optional
Build-Depends: debhelper (>= 8)
Build-Depends-Indep: perl,
 libmoose-perl (>= 0.94),
 libnamespace-autoclean-perl,
 libtest-fatal-perl,
 perl (>= 5.10.1) | libtest-simple-perl (>= 0.88)
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Antony Gelberg <antony@wayforth.co.uk>,
 gregor herrmann <gregoa@debian.org>,
 Ansgar Burchardt <ansgar@debian.org>
Standards-Version: 3.9.2
Homepage: http://search.cpan.org/dist/MooseX-StrictConstructor/
Vcs-Git: git://git.debian.org/pkg-perl/packages/libmoosex-strictconstructor-perl.git
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libmoosex-strictconstructor-perl.git

Package: libmoosex-strictconstructor-perl
Architecture: all
Depends: ${perl:Depends}, ${misc:Depends},
 libmoose-perl (>= 0.94),
 libnamespace-autoclean-perl
Pre-Depends: dpkg (>= 1.15.6)
Description: Make your object constructors blow up on unknown attributes
 "use MooseX::StrictConstructor" instead of just "use Moose" makes your
 constructors strict. If your constructor is called with an attribute
 init argument that your class does not declare, then it calls
 "Carp::confess()". This is a great way to catch small typos.