|
NAMEDist::Metadata - Information about a perl module distributionVERSIONversion 0.927SYNOPSISmy $dist = Dist::Metadata->new(file => $path_to_archive); my $description = sprintf "Dist %s (%s)", $dist->name, $dist->version; my $provides = $dist->package_versions; while( my ($package, $version) = each %$provides ){ print "$description includes $package $version\n"; } DESCRIPTIONThis module provides an easy interface for getting various metadata about a Perl module distribution.It takes care of the common logic of:
This is mostly a wrapper around CPAN::Meta providing an easy interface to find and load the meta file from a tar.gz file. A dist can also be represented by a directory or merely a structure of data. If the dist does not contain a meta file the module will attempt to determine some of that data from the dist. NOTE: This interface is still being defined. Please submit any suggestions or concerns. METHODSnewDist::Metadata->new(file => $path); A dist can be represented by a tar file, a directory, or a data structure. The format will be determined by the presence of the following options (checked in this order):
You can also slyly pass in your own object as a "dist" parameter in which case this module will just use that. This can be useful if you need to use your own subclass (perhaps while developing a new format). Other options that can be specified:
distReturns the dist object (subclass of Dist::Metadata::Dist).default_metadataReturns a hashref of default values used to initialize a CPAN::Meta object when a META file is not found. Called from "determine_metadata".determine_metadataExamine the dist and try to determine metadata. Returns a hashref which can be passed to "new" in CPAN::Meta. This is used when the dist does not contain a META file.determine_packagesmy $provides = $dm->determine_packages($meta); Attempt to determine packages provided by the dist. This is used when the META file does not include a "provides" section and "determine_packages" is not set to false in the constructor. If a CPAN::Meta object is not provided a default one will be used. Files contained in the dist and packages found therein will be checked against the meta object's "no_index" attribute (see "should_index_file" in CPAN::Meta and "should_index_package" in CPAN::Meta). By default this ignores any files found in inc/, t/, or xt/ directories. load_metaLoads the metadata from the "dist".metaReturns the CPAN::Meta instance in use.meta_from_struct$meta = $dm->meta_from_struct(\%struct); Passes the provided "\%struct" to "create" in CPAN::Meta and returns the result. package_versions$pv = $dm->package_versions(); # { 'Package::Name' => '1.0', 'Module::2' => '2.1' } Returns a simplified version of "provides": a hashref with package names as keys and versions as values. This can also be called as a class method which will operate on a passed in hashref. $pv = Dist::Metadata->package_versions(\%provides); module_infoReturns a hashref of meta data for each of the packages provided by this dist.The hashref starts with the same data as "provides" but additional data can be added to the output by specifying options in a hashref:
Other options may be added in the future. INHERITED METHODSThe following methods are available on this object and simply call the corresponding method on the CPAN::Meta object.
TODO
SEE ALSODependencies
Related Modules
SUPPORTPerldocYou can find documentation for this module with the perldoc command.perldoc Dist::Metadata WebsitesThe following websites have more information about this module, and may be of help to you. As always, in addition to those websites please use your favorite search engine to discover more resources.
Bugs / Feature RequestsPlease report any bugs or feature requests by email to "bug-dist-metadata at rt.cpan.org", or through the web interface at <https://rt.cpan.org/Public/Bug/Report.html?Queue=Dist-Metadata>. You will be automatically notified of any progress on the request by the system.Source Code<https://github.com/rwstauner/Dist-Metadata>git clone https://github.com/rwstauner/Dist-Metadata.git AUTHORRandy Stauner <rwstauner@cpan.org>CONTRIBUTORS
COPYRIGHT AND LICENSEThis software is copyright (c) 2011 by Randy Stauner.This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Visit the GSP FreeBSD Man Page Interface. |