.\" Automatically generated by Pod::Man 4.09 (Pod::Simple 3.35) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .if !\nF .nr F 0 .if \nF>0 \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} .\} .\" ======================================================================== .\" .IX Title "MYMETA-CPANFILE 1p" .TH MYMETA-CPANFILE 1p "2018-05-17" "perl v5.26.2" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" mymeta\-cpanfile \- Dump cpanfile out of (MY)META files .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 2 \& perl Makefile.PL # or Build.PL \& mymeta\-cpanfile \& \& # Skip configures phase and suggests type \& mymeta\-cpanfile \-\-no\-configure \-\-no\-suggests \& \& # Include empty blcok for phases without prereqs \& mymeta\-cpanfile \-\-include\-empty .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" This script reads prereqs metadata from \s-1MYMETA\s0 files in the current directory and prints \f(CW\*(C`cpanfile\*(C'\fR that represents the prereqs. Useful when you want to migrate to using cpanfile from existing \&\f(CW\*(C`Makefile.PL\*(C'\fR or \f(CW\*(C`Build.PL\*(C'\fR with dependency specification. .PP This script is distributed with Module::CPANfile since version 0.9021. .SH "OPTIONS" .IX Header "OPTIONS" .IP "\-\-configure, \-\-build, \-\-test, \-\-runtime, \-\-develop" 4 .IX Item "--configure, --build, --test, --runtime, --develop" Specify the phase to include/exclude. Defaults to include all phases, but you can exclude some phases by specifying the options with \&\f(CW\*(C`\-\-no\-\*(C'\fR prefix, like \f(CW\*(C`\-\-no\-configure\*(C'\fR. .IP "\-\-requires, \-\-recommends, \-\-suggests, \-\-conflicts" 4 .IX Item "--requires, --recommends, --suggests, --conflicts" Specify the type to include/exclude. Defaults to include all types, but you can exclude some types by specifying the options with \f(CW\*(C`\-\-no\-\*(C'\fR prefix, like \f(CW\*(C`\-\-no\-conflicts\*(C'\fR. .IP "\-\-include\-empty" 4 .IX Item "--include-empty" By default, phases without any prereqs are not dumped, By giving this option, cpanfile will have an empty block such as: .Sp .Vb 1 \& on test => sub { \& \& }; .Ve .Sp Defaults to false. .SH "AUTHOR" .IX Header "AUTHOR" Tatsuhiko Miyagawa .SH "SEE ALSO" .IX Header "SEE ALSO" Module::CPANfile cpanfile App::mymeta_requires