File: control

package info (click to toggle)
libmoosex-meta-typeconstraint-mooish-perl 0.001-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 240 kB
  • sloc: perl: 95; makefile: 2
file content (43 lines) | stat: -rw-r--r-- 1,959 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
Source: libmoosex-meta-typeconstraint-mooish-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: gregor herrmann <gregoa@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: libaliased-perl,
                     libmoose-perl,
                     libnamespace-autoclean-perl,
                     libtest-checkdeps-perl,
                     libtest-fatal-perl,
                     libtest-moose-more-perl,
                     libtry-tiny-perl,
                     perl,
                     perl | libtest-simple-perl
Standards-Version: 3.9.6
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libmoosex-meta-typeconstraint-mooish-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libmoosex-meta-typeconstraint-mooish-perl.git
Homepage: https://metacpan.org/release/MooseX-Meta-TypeConstraint-Mooish

Package: libmoosex-meta-typeconstraint-mooish-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libmoose-perl,
         libnamespace-autoclean-perl,
         libtry-tiny-perl
Description: module to translate Moo-style constraints to Moose-style
 Moose::Meta::TypeConstraint are expected to return true if the value passes
 the constraint, and false otherwise; Moo "constraints", on the other hand,
 die if validation fails.
 .
 The MooseX::Meta::TypeConstraint::Mooish metaclass allows for Moo-style
 constraints; it will wrap them and translate their Moo into a dialect Moose
 understands.
 .
 Note that this is largely to enable functionality in
 MooseX::AttributeShortcuts; the easiest way use this metaclass is by using
 that package. Also, as it's not inconceivable that this functionality may be
 desired in other constraint metaclasses, the bulk of this metaclass'
 functionality is implemented as a trait
 (MooseX::TraitFor::Meta::TypeConstraint::Mooish).