How to Install and Uninstall perl-indirect Package on openSUSE Leap

Last updated: May 02,2024

1. Install "perl-indirect" package

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

$ sudo zypper refresh $ sudo zypper install perl-indirect

2. Uninstall "perl-indirect" package

This is a short guide on how to uninstall perl-indirect on openSUSE Leap:

$ sudo zypper remove perl-indirect

3. Information about the perl-indirect package on openSUSE Leap

Information for package perl-indirect:
--------------------------------------
Repository : Main Repository
Name : perl-indirect
Version : 0.39-bp155.2.10
Arch : x86_64
Vendor : openSUSE
Installed Size : 66.0 KiB
Installed : No
Status : not installed
Source package : perl-indirect-0.39-bp155.2.10.src
Upstream URL : https://metacpan.org/release/indirect
Summary : Lexically warn about using the indirect method call syntax
Description :
When enabled, this pragma warns about indirect method calls that are
present in your code.
The indirect syntax is now considered harmful, since its parsing has many
quirks and its use is error prone : when the subroutine 'foo' has not been
declared in the current package, 'foo $x' actually compiles to '$x->foo',
and 'foo { key => 1 }' to ''key'->foo(1)'. Please refer to the REFERENCES
section for a more complete list of reasons for avoiding this construct.
This pragma currently does not warn for core functions ('print', 'say',
'exec' or 'system'). This may change in the future, or may be added as
optional features that would be enabled by passing options to 'unimport'.
This module is *not* a source filter.