p5-Module-ScanDeps
recursively scan Perl code for dependencies
WWW CVSWeb GITHub-
Package versionp5-Module-ScanDeps-1.31
-
MaintainerThe OpenBSD ports mailing-list
This module scans potential modules used by perl programs, and returns
a hash reference; its keys are the module names as appears in %INC
(e.g. Test/More.pm); the values are hash references with this structure:
{
file => '/usr/libdata/perl5/Test/More.pm',
key => 'Test/More.pm',
type => 'module', # or 'autoload', 'data', 'shared'
used_by => [ 'Test/Simple.pm', ... ],
}