CPAN::Meta::History::Meta_1_1 - Version 1.1 metadata specification for META.yml |
CPAN::Meta::History::Meta_1_1 - Version 1.1 metadata specification for META.yml
This is a historical copy of the version 1.1 specification for META.yml files, copyright by Ken Williams and licensed under the same terms as Perl itself.
Modifications from the original:
This document describes version 1.1 of the META.yml specification.
The META.yml file describes important properties of contributed Perl distributions such as the ones found on CPAN. It is typically created by tools like the Module::Build manpage and the ExtUtils::MakeMaker manpage.
The fields in the META.yml file are meant to be helpful to people maintaining module collections (like CPAN), for people writing installation tools (like the CPAN manpage or the CPANPLUS manpage), or just people who want to know some stuff about a distribution before downloading it and starting to install it.
META.yml files are written in the YAML format. The reasons we chose YAML instead of, say, XML or Data::Dumper are discussed in this thread on the MakeMaker mailing list.
The first line of a META.yml file should be a valid
YAML document header
like "--- #YAML:1.0"
The rest of the META.yml file is one big YAML mapping, whose keys are described here.
Module-Build
The name of the distribution. Often created by taking the ``main module'' in the distribution and changing ``::'' to ``-''. Sometimes it's completely different, however, as in the case of the libwww-perl distribution.
0.16
The version of the distribution to which the META.yml file refers. This is a mandatory field.
The version is essentially an arbitrary string, but must be
only ASCII characters, and strongly should be of the format
integer-dot-digit-digit, i.e. 25.57
, optionally followed by
underscore-digit-digit, i.e. 25.57_04
.
The standard tools that deal with module distribution (PAUSE, CPAN,
etc.) form an identifier for each distribution by joining the 'name'
and 'version' attributes with a dash (-
) character. Tools
who are prepared to deal with distributions that have no version
numbers generally omit the dash as well.
perl
a descriptive term for the licenses ... not authoritative, but must be consistent with licensure statements in the READMEs, documentation, etc.
The license under which this distribution may be used and redistributed.
Must be one of the following licenses:
(change ``unrestricted'' to ``redistributable''?)
module
What kind of stuff is contained in this distribution. Most things on
CPAN are module
s (which can also mean a collection of
modules), but some things are script
s.
This field is basically meaningless, and tools (like Module::Build or MakeMaker) will likely stop generating it in the future.
index_ignore: any application that indexes the contents of distributions (PAUSE, search.cpan.org) ought to ignore the items (packages, files, directories, namespace hierarchies).
Data::Dumper: 0 File::Find: 1.03
A YAML mapping indicating the Perl modules this distribution requires for proper operation. The keys are the module names, and the values are version specifications as described in the documentation for Module::Build's ``requires'' parameter.
Note: the exact nature of the fancy specifications like
">= 1.2, != 1.5, < 2.0"
is subject to
change. Advance notice will be given here. The simple specifications
like "1.2"
will not change in format.
Data::Dumper: 0 File::Find: 1.03
A YAML mapping indicating the Perl modules this distribution recommends for enhanced operation.
Data::Dumper: 0 File::Find: 1.03
A YAML mapping indicating the Perl modules required for building and/or testing of this distribution. These dependencies are not required after the module is installed.
Data::Dumper: 0 File::Find: 1.03
A YAML mapping indicating the Perl modules that cannot be installed while this distribution is installed. This is a pretty uncommon situation.
- possibly separate out test-time prereqs, complications include: can tests be meaningfully preserved for later running? are test-time prereqs in addition to build-time, or exclusive?
- make official location for installed *distributions*, which can contain tests, etc.
0
A boolean flag indicating whether a Build.PL or Makefile.PL (or similar) must be executed, or whether this module can be built, tested and installed solely from consulting its metadata file. The main reason to set this to a true value if that your module performs some dynamic configuration (asking questions, sensing the environment, etc.) as part of its build/install process.
Currently the Module::Build manpage doesn't actually do anything with this flag - it's probably going to be up to higher-level tools like CPAN.pm to do something useful with it. It can potentially bring lots of security, packaging, and convenience improvements.
Module::Build version 0.16
Indicates the tool that was used to create this META.yml file. It's good form to include both the name of the tool and its version, but this field is essentially opaque, at least for the moment.
CPAN::Meta::History::Meta_1_1 - Version 1.1 metadata specification for META.yml |