Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

module::install::trustmetayml(3pm) [debian man page]

Module::Install::TrustMetaYml(3pm)			User Contributed Perl Documentation			Module::Install::TrustMetaYml(3pm)

NAME
Module::Install::TrustMetaYml - trusts META.yml list of dependencies SYNOPSIS
In Makefile.PL: trust_meta_yml; DESCRIPTION
CPAN doesn't trust "META.yml"'s list of dependencies for a module. Instead it expects "Makefile.PL" run on the computer the package is being installed upon to generate its own list of dependencies (called "MYMETA.yml" or "MYMETA.json"). This module is a Module::Install plugin that generates "MYMETA.yml" by simply passing through the dependencies from "META.yml". It does nothing when run from the module author's development copy. The module defines two functions which are aliases for each other: "trust_meta_yml" "trust_meta_yaml" BUGS
Please report any bugs to http://rt.cpan.org/Dist/Display.html?Queue=Module-Install-TrustMetaYml <http://rt.cpan.org/Dist/Display.html?Queue=Module-Install-TrustMetaYml>. SEE ALSO
Module::Install, Module::Package::RDF. AUTHOR
Toby Inkster <tobyink@cpan.org>. CREDITS
Thanks to Chris Williams (BINGOS), Ingy dA~Xt Net (INGY) and Florian Ragwitz (FLORA) for explaining the role of "MYMETA.json", and helping me figure out why mine weren't working. COPYRIGHT AND LICENCE
This software is copyright (c) 2011 by Toby Inkster. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. perl v5.14.2 2011-10-05 Module::Install::TrustMetaYml(3pm)

Check Out this Related Man Page

Module::Install::Base(3pm)				User Contributed Perl Documentation				Module::Install::Base(3pm)

NAME
Module::Install::Base - Base class for Module::Install extensions SYNOPSIS
In a Module::Install extension: use Module::Install::Base (); @ISA = qw(Module::Install::Base); DESCRIPTION
This module provide essential methods for all Module::Install extensions, in particular the common constructor "new" and method dispatcher "AUTOLOAD". METHODS
new(%args) Constructor -- need to preserve at least _top AUTOLOAD The main dispatcher - copy extensions if missing _top() Returns the top-level Module::Install object. admin() Returns the "_top" object's associated Module::Install::Admin object on the first run (i.e. when there was no inc/ when the program started); on subsequent (user-side) runs, returns a fake admin object with an empty "AUTOLOAD" method that does nothing at all. is_admin() Tells whether this is the first run of the installer (on author's side). That is when there was no inc/ at program start. True if that's the case. False, otherwise. SEE ALSO
Module::Install AUTHORS
Audrey Tang <autrijus@autrijus.org> COPYRIGHT
Copyright 2003, 2004 by Audrey Tang <autrijus@autrijus.org>. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See <http://www.perl.com/perl/misc/Artistic.html> perl v5.14.2 2012-03-01 Module::Install::Base(3pm)
Man Page