File: control

package info (click to toggle)
libgetopt-argparse-perl 1.0.6-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 356 kB
  • sloc: perl: 1,133; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 1,483 bytes parent folder | download | duplicates (2)
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
Source: libgetopt-argparse-perl
Section: perl
Priority: optional
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Nick Morrott <knowledgejunkie@gmail.com>
Build-Depends: debhelper (>= 9)
Build-Depends-Indep: libmoo-perl (>= 1.003),
                     libtest-exception-perl,
                     perl
Standards-Version: 3.9.8
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libgetopt-argparse-perl.git
Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libgetopt-argparse-perl.git
Homepage: https://metacpan.org/release/Getopt-ArgParse
Testsuite: autopkgtest-pkg-perl

Package: libgetopt-argparse-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libmoo-perl (>= 1.003),
         libtest-exception-perl
Description: module to parse @ARGV with a richer and more user-friendly API
 Getopt::ArgParse provides the following features:
 .
   - Generating usage messages
   - Storing parsed arg values in an object, which can be also used to
     load configuration values from files and therefore the ability for
     applications to combine configurations in a single interface
   - A more user-friendly interface to specify arguments, such as
     argument types, argument values split, etc.
   - Subcommand parsing, such svn <command>
   - Supporting both flag based named arguments and positional arguments
 .
 Getopt::ArgParse provides similar functionality to Python's argparse module.