i cooked this up a few months ago using Module::Dependency::Indexer ...
#!/usr/local/bin/perl
## Usage:
# find_perl_dependencies.pl <DIR>
#
use strict;
use warnings;
use Module::Dependency::Indexer;
use Module::Dependency::Info;
my $start_dir = $ARGV[0] || '.';
Module::Dependency::Indexer::setIndex('/tmp/perl_dependencies.dat');
Module::Dependency::Indexer::makeIndex($start_dir);
my $dpidx = Module::Dependency::Info::retrieveIndex();
my $all = $dpidx->{allobjects};
my @todo = map { @{ $all->{$_}->{depends_on} } }
grep { exists $all->{$_}->{depends_on} }
keys %$all;
my @modules;
my %seen;
while (my $pm = shift @todo) {
next if $seen{$pm}++;
push @modules, $pm;
next unless exists $all->{$pm} and exists $all->{$pm}->{depends_on
+};
my @reqs = grep { !$seen{$_} } @{ $all->{$pm}->{depends_on} };
push @todo, @reqs;
}
print "$_\n" foreach sort @modules;
comments welcome..
updated to add sample output:
when run in a directory containing only this script:
% perl find_perl_dependencies.pl .
Module::Dependency::Indexer
Module::Dependency::Info
strict
warnings
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|