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 47 48 49 50 51 52 53 54 55 56
|
Source: libmoosex-getopt-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Damyan Ivanov <dmn@debian.org>,
Jonathan Yu <jawnsy@cpan.org>,
Krzysztof Krzyżaniak (eloy) <eloy@debian.org>,
Niko Tyni <ntyni@debian.org>,
gregor herrmann <gregoa@debian.org>,
Ryan Niebur <ryan@debian.org>,
Ansgar Burchardt <ansgar@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 9.20140227~),
libmodule-build-tiny-perl
Build-Depends-Indep: perl,
libgetopt-long-descriptive-perl,
libmoose-perl,
libmoosex-configfromfile-perl,
libmoosex-role-parameterized-perl (>= 1.01),
libmoosex-simpleconfig-perl,
libmoosex-strictconstructor-perl,
libnamespace-autoclean-perl,
libpath-tiny-perl,
libtest-deep-perl,
libtest-fatal-perl,
libtest-requires-perl,
libtest-trap-perl,
libtest-warnings-perl,
libtry-tiny-perl,
libyaml-perl
Standards-Version: 3.9.8
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libmoosex-getopt-perl.git
Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libmoosex-getopt-perl.git
Homepage: https://metacpan.org/release/MooseX-Getopt
Package: libmoosex-getopt-perl
Architecture: all
Depends: ${perl:Depends},
${misc:Depends},
libgetopt-long-descriptive-perl,
libmoose-perl,
libmoosex-role-parameterized-perl (>= 1.01),
libnamespace-autoclean-perl,
libtry-tiny-perl
Description: Moose extension for processing command line options
MooseX::Getopt is a Moose role which provides an alternate constructor for
creating objects using parameters passed in from the command line. This module
automatically discovers command line parameters by introspecting your class
attributes, using the name of your attribute as the command line option. If
there is a type constraint defined, it will configure Getopt::Long to handle
the option accordingly.
.
By default, attributes beginning with an underscore are considered private and
are not given commandline argument support, unless the attribute's metaclass
is set to MooseX::Getopt::Meta::Attribute. You can also use this behaviour to
get non-default commandline option names and aliases.
|