How to Install and Uninstall perl-Module-ScanDeps Package on openSUSE Leap

Last updated: September 21,2024

1. Install "perl-Module-ScanDeps" package

In this section, we are going to explain the necessary steps to install perl-Module-ScanDeps on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install perl-Module-ScanDeps

2. Uninstall "perl-Module-ScanDeps" package

Learn how to uninstall perl-Module-ScanDeps on openSUSE Leap:

$ sudo zypper remove perl-Module-ScanDeps

3. Information about the perl-Module-ScanDeps package on openSUSE Leap

Information for package perl-Module-ScanDeps:
---------------------------------------------
Repository : Main Repository
Name : perl-Module-ScanDeps
Version : 1.24-bp155.2.12
Arch : x86_64
Vendor : openSUSE
Installed Size : 119.3 KiB
Installed : No
Status : not installed
Source package : perl-Module-ScanDeps-1.24-bp155.2.12.src
Upstream URL : http://search.cpan.org/dist/Module-ScanDeps/
Summary : Recursively scan Perl code for dependencies
Description :
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/local/lib/perl5/5.8.0/Test/More.pm',
key => 'Test/More.pm',
type => 'module', # or 'autoload', 'data', 'shared'
used_by => [ 'Test/Simple.pm', ... ],
uses => [ 'Test/Other.pm', ... ],
}
One function, 'scan_deps', is exported by default. Other functions such as
('scan_line', 'scan_chunk', 'add_deps', 'path_to_inc_name') are exported
upon request.
Users of *App::Packer* may also use this module as the dependency-checking
frontend, by tweaking their _p2e.pl_ like below:
use Module::ScanDeps;
...
my $packer = App::Packer->new( frontend => 'Module::ScanDeps' );
...
Please see App::Packer::Frontend for detailed explanation on the structure
returned by 'get_files'.