File: control

package info (click to toggle)
libparams-validate-perl 1.31-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,360 kB
  • sloc: perl: 2,374; makefile: 3
file content (43 lines) | stat: -rw-r--r-- 1,982 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: libparams-validate-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: gregor herrmann <gregoa@debian.org>,
           Damyan Ivanov <dmn@debian.org>,
           Florian Schlichting <fsfs@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13),
               libmodule-build-perl:native,
               libmodule-implementation-perl <!nocheck>,
               libreadonly-perl <!nocheck>,
               libscalar-list-utils-perl <!nocheck>,
               libtest-fatal-perl <!nocheck>,
               libtest-requires-perl <!nocheck>,
               libtest-simple-perl <!nocheck>,
               libtest-taint-perl <!nocheck>,
               perl-xs-dev,
               perl:native
Standards-Version: 4.6.1
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libparams-validate-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libparams-validate-perl.git
Homepage: https://metacpan.org/release/Params-Validate
Rules-Requires-Root: no

Package: libparams-validate-perl
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends},
         ${perl:Depends},
         ${shlibs:Depends},
         libmodule-implementation-perl,
         libscalar-list-utils-perl
Description: Perl module to validate parameters to Perl method/function calls
 Params::Validate is a Perl module providing a flexible way to validate method
 and function call parameters. The validation can be as simple as checking for
 the presence of required parameters, or more complex, like validating object
 classes (via isa) or capabilities (via can) and checking parameter types. It
 also provides extensibility through customized validation callbacks.
 .
 The module has been designed to work equally well with positional or named
 parameters (via a hash or hash reference) and includes experimental support
 for attributes (see Attribute::Params::Validate for details).