How to Install and Uninstall perl-Class-Autouse Package on openSuSE Tumbleweed

Last updated: July 04,2024

1. Install "perl-Class-Autouse" package

Here is a brief guide to show you how to install perl-Class-Autouse on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Class-Autouse

2. Uninstall "perl-Class-Autouse" package

This is a short guide on how to uninstall perl-Class-Autouse on openSuSE Tumbleweed:

$ sudo zypper remove perl-Class-Autouse

3. Information about the perl-Class-Autouse package on openSuSE Tumbleweed

Information for package perl-Class-Autouse:
-------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Class-Autouse
Version : 2.01-11.25
Arch : noarch
Vendor : openSUSE
Installed Size : 87.6 KiB
Installed : No
Status : not installed
Source package : perl-Class-Autouse-2.01-11.25.src
Upstream URL : http://search.cpan.org/dist/Class-Autouse/
Summary : Run-time load a class the first time you call a method in it
Description :
*Class::Autouse* is a runtime class loader that allows you to specify
classes that will only load when a method of that class is called.
For large classes or class trees that might not be used during the running
of a program, such as Date::Manip, this can save you large amounts of
memory, and decrease the script load time a great deal.
*Class::Autouse* also provides a number of "unsafe" features for runtime
generation of classes and implementation of syntactic sugar. These features
make use of (evil) UNIVERSAL::AUTOLOAD hooking, and are implemented in this
class because these hooks can only be done by a one module, and
Class::Autouse serves as a useful place to centralise this kind of evil :)