How to Install and Uninstall perl-Package-Stash Package on openSuSE Tumbleweed

Last updated: May 06,2024

1. Install "perl-Package-Stash" package

Learn how to install perl-Package-Stash on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Package-Stash

2. Uninstall "perl-Package-Stash" package

Please follow the step by step instructions below to uninstall perl-Package-Stash on openSuSE Tumbleweed:

$ sudo zypper remove perl-Package-Stash

3. Information about the perl-Package-Stash package on openSuSE Tumbleweed

Information for package perl-Package-Stash:
-------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Package-Stash
Version : 0.40-1.10
Arch : noarch
Vendor : openSUSE
Installed Size : 55.8 KiB
Installed : No
Status : not installed
Source package : perl-Package-Stash-0.40-1.10.src
Upstream URL : https://metacpan.org/release/Package-Stash
Summary : Routines for manipulating stashes
Description :
Manipulating stashes (Perl's symbol tables) is occasionally necessary, but
incredibly messy, and easy to get wrong. This module hides all of that
behind a simple API.
NOTE: Most methods in this class require a variable specification that
includes a sigil. If this sigil is absent, it is assumed to represent the
IO slot.
Due to limitations in the typeglob API available to perl code, and to
typeglob manipulation in perl being quite slow, this module provides two
implementations - one in pure perl, and one using XS. The XS implementation
is to be preferred for most usages; the pure perl one is provided for cases
where XS modules are not a possibility. The current implementation in use
can be set by setting '$ENV{PACKAGE_STASH_IMPLEMENTATION}' or
'$Package::Stash::IMPLEMENTATION' before loading Package::Stash (with the
environment variable taking precedence), otherwise, it will use the XS
implementation if possible, falling back to the pure perl one.