How to Install and Uninstall perl-Devel-PartialDump Package on openSuSE Tumbleweed

Last updated: September 28,2024

1. Install "perl-Devel-PartialDump" package

Please follow the guidance below to install perl-Devel-PartialDump on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Devel-PartialDump

2. Uninstall "perl-Devel-PartialDump" package

In this section, we are going to explain the necessary steps to uninstall perl-Devel-PartialDump on openSuSE Tumbleweed:

$ sudo zypper remove perl-Devel-PartialDump

3. Information about the perl-Devel-PartialDump package on openSuSE Tumbleweed

Information for package perl-Devel-PartialDump:
-----------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Devel-PartialDump
Version : 0.20-1.25
Arch : noarch
Vendor : openSUSE
Installed Size : 42.0 KiB
Installed : No
Status : not installed
Source package : perl-Devel-PartialDump-0.20-1.25.src
Upstream URL : http://search.cpan.org/dist/Devel-PartialDump/
Summary : Partial dumping of data structures, optimized for argument printing
Description :
This module is a data dumper optimized for logging of arbitrary parameters.
It attempts to truncate overly verbose data, in a way that is hopefully
more useful for diagnostics warnings than
warn Dumper(@stuff);
Unlike other data dumping modules there are no attempts at correctness or
cross referencing, this is only meant to provide a slightly deeper look
into the data in question.
There is a default recursion limit, and a default truncation of long lists,
and the dump is formatted on one line (new lines in strings are escaped),
to aid in readability.
You can enable it temporarily by importing functions like 'warn', 'croak'
etc to get more informative errors during development, or even use it as:
BEGIN { local $@; eval "use Devel::PartialDump qw(...)" }
to get DWIM formatting only if it's installed, without introducing a
dependency.