X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/31d232e6d4470ceea3e600eeebc6c1e668f383df..781c16772f3c80cc827f11815bfb07b8318621f0:/scripts/find-use.pl diff --git a/scripts/find-use.pl b/scripts/find-use.pl index 902422110..bd58c078f 100755 --- a/scripts/find-use.pl +++ b/scripts/find-use.pl @@ -35,7 +35,14 @@ my (%uselines, %modules, %supplied, %requires); }, 'Devel::REPL' => { 'namespace::clean' => 1, - } + }, + 'Email::MIME' => { + 'Email::MIME::Creator' => 1, + }, + 'Test::Harness' => { + 'TAP::Parser' => 1, + 'TAP::Parser::Aggregator' => 1, + }, ); GetOptions( @@ -106,6 +113,11 @@ for my $useline (keys %uselines) { } } +# have all documented modules mentioned here +$modules{$_->{name}} ||= { status => 'required' } for @SL::InstallationCheck::required_modules; +$modules{$_->{name}} ||= { status => 'optional' } for @SL::InstallationCheck::optional_modules; +$modules{$_->{name}} ||= { status => 'developer' } for @SL::InstallationCheck::developer_modules; + # build transitive closure for documented dependancies my $changed = 1; while ($changed) {