How to Install and Uninstall perl-Variable-Magic Package on openSUSE Leap

Last updated: May 20,2024

1. Install "perl-Variable-Magic" package

Please follow the guidance below to install perl-Variable-Magic on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install perl-Variable-Magic

2. Uninstall "perl-Variable-Magic" package

Please follow the steps below to uninstall perl-Variable-Magic on openSUSE Leap:

$ sudo zypper remove perl-Variable-Magic

3. Information about the perl-Variable-Magic package on openSUSE Leap

Information for package perl-Variable-Magic:
--------------------------------------------
Repository : Main Repository
Name : perl-Variable-Magic
Version : 0.62-1.19
Arch : x86_64
Vendor : SUSE LLC
Installed Size : 122.1 KiB
Installed : No
Status : not installed
Source package : perl-Variable-Magic-0.62-1.19.src
Upstream URL : http://search.cpan.org/dist/Variable-Magic/
Summary : Associate user-defined magic to variables from Perl
Description :
Magic is Perl's way of enhancing variables. This mechanism lets the user
add extra data to any variable and hook syntactical operations (such as
access, assignment or destruction) that can be applied to it. With this
module, you can add your own magic to any variable without having to write
a single line of XS.
You'll realize that these magic variables look a lot like tied variables.
It is not surprising, as tied variables are implemented as a special kind
of magic, just like any 'irregular' Perl variable : scalars like '$!', '$('
or '$^W', the '%ENV' and '%SIG' hashes, the '@ISA' array, 'vec()' and
'substr()' lvalues, threads::shared variables... They all share the same
underlying C API, and this module gives you direct access to it.