The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

mymeta-requires - Extract module requirements from MYMETA files

VERSION

version 0.005

SYNOPSIS

  Usage: mymeta-requires [OPTIONS...]

  PHASE OPTIONS:
  --runtime     (default: on)
  --build       (default: on)
  --test        (default: on)
  --configure   (default: on)
  --develop     (default: off)

  TYPE OPTIONS
  --recommends  (default: on)
  --suggests    (default: on)

  OTHER OPTIONS:
  --file,     -f  Specify alternate MYMETA file
  --verbose,  -v  Slightly more verbose logging
  --help,     -h  Usage help

  All long-style options may be negated, e.g. "--no-test"

DESCRIPTION

This program extracts CPAN module requirements as recorded in a MYMETA.json or MYMETA.yml file in the current directory and prints them one-perl-line to STDOUT. It is intended to help install prerequisites manually using a CPAN client. For example, with ExtUtils::MakeMaker 6.58 (which writes MYMETA files) and App::cpanminus:

  $ perl Makefile.PL
  $ mymeta-requires | cpanm

Or with the traditional cpan client:

  $ perl Makefile.PL
  $ cpan $(mymeta-requires)

The various configuration options allow customizing which prerequisite prerequisite phases and types are extracted. (See "PREREQUITIES" in CPAN::Meta for an explanation of phases and types.)

By default all phases except develop are included and types requires, recommends and suggests. Any phase or type may be negated by prefixing no- to the option. E.g.

  $ mymeta-requires --no-suggests

If no MYMETA.json or MYMETA.yml file is found, this will fall back to using a META.json or META.yml This is not guaranteed to have all dependencies, but may be useful for bootstrapping configuration requirements. E.g.

  # get any configuration requirements
  $ mymeta-requires | cpanm

  # run configuration
  $ perl Makefile.PL

  # repeat to get any dynamic dependencies
  $ mymeta-requires | cpanm

AUTHOR

David Golden <dagolden@cpan.org>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2011 by David Golden.

This is free software, licensed under:

  The Apache License, Version 2.0, January 2004