Syntactic Confectionery Delight | |
PerlMonks |
What to name a module?by rrwo (Friar) |
on Jul 15, 2004 at 17:53 UTC ( [id://374747]=perlquestion: print w/replies, xml ) | Need Help?? |
rrwo has asked for the wisdom of the Perl Monks concerning the following question: I am working on a module that when given a CPAN distribution, will return which modules the distribtion requires (by parsing the Makefile.PL using Module::MakefilePL::Parse if the META.yml file is not available). A companion module will actually try to fetch the distribution information from CPAN (since it can query a .meta file if it exists before downloading an entire distribution). Because it is more closely tied to CPAN and works with distributions rather than modules, I am thinking of calling it CPAN::Distribution::Depends. Comments or suggestions about the namespace would be appreciated. FYI--I am writing yet another module to do this because existing modules either do not work on my platform or they require preqrequisite modules to be installed. Basically they either compile the module or run Makefile.PL/Build.PL and see what modules are asked for. I'd rather use a safer (and I think faster) method to partially-parse the Makefile.PL if no META.yml is available. Some tests using all the latest distribution on CPAN show that it works for all but a handful of distributions. This is actually part of a larger project to show test results (organized by platform) of module dependencies. If there is a failure in the dependency tree, authors can check for this.
Back to
Seekers of Perl Wisdom
|
|