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

Last updated: May 17,2024

1. Install "perl-indirect" package

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

$ sudo zypper refresh $ sudo zypper install perl-indirect

2. Uninstall "perl-indirect" package

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

$ sudo zypper remove perl-indirect

3. Information about the perl-indirect package on openSuSE Tumbleweed

Information for package perl-indirect:
--------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-indirect
Version : 0.39-1.21
Arch : x86_64
Vendor : openSUSE
Installed Size : 65.8 KiB
Installed : No
Status : not installed
Source package : perl-indirect-0.39-1.21.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.