How to Install and Uninstall perl-Variable-Magic Package on openSuSE Tumbleweed

Last updated: October 06,2024

1. Install "perl-Variable-Magic" package

This guide let you learn how to install perl-Variable-Magic on openSuSE Tumbleweed

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

2. Uninstall "perl-Variable-Magic" package

Please follow the step by step instructions below to uninstall perl-Variable-Magic on openSuSE Tumbleweed:

$ sudo zypper remove perl-Variable-Magic

3. Information about the perl-Variable-Magic package on openSuSE Tumbleweed

Information for package perl-Variable-Magic:
--------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Variable-Magic
Version : 0.63-1.6
Arch : x86_64
Vendor : openSUSE
Installed Size : 125.7 KiB
Installed : No
Status : not installed
Source package : perl-Variable-Magic-0.63-1.6.src
Upstream URL : https://metacpan.org/release/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.