How to Install and Uninstall perl-Class-Loader.noarch Package on Fedora 35

Last updated: October 05,2024

1. Install "perl-Class-Loader.noarch" package

In this section, we are going to explain the necessary steps to install perl-Class-Loader.noarch on Fedora 35

$ sudo dnf update $ sudo dnf install perl-Class-Loader.noarch

2. Uninstall "perl-Class-Loader.noarch" package

Please follow the guidelines below to uninstall perl-Class-Loader.noarch on Fedora 35:

$ sudo dnf remove perl-Class-Loader.noarch $ sudo dnf autoremove

3. Information about the perl-Class-Loader.noarch package on Fedora 35

Last metadata expiration check: 1:22:53 ago on Wed Sep 7 02:25:42 2022.
Available Packages
Name : perl-Class-Loader
Version : 2.03
Release : 42.fc35
Architecture : noarch
Size : 17 k
Source : perl-Class-Loader-2.03-42.fc35.src.rpm
Repository : fedora
Summary : Load modules and create objects on demand
URL : https://metacpan.org/release/Class-Loader
License : GPL+ or Artistic
Description : Certain applications like to defer the decision to use a particular module till
: runtime. This is possible in perl, and is a useful trick in situations where
: the type of data is not known at compile time and the application doesn't wish
: to pre-compile modules to handle all types of data it can work with. Loading
: modules at runtime can also provide flexible interfaces for perl modules.
: Modules can let the programmer decide what modules will be used by it instead
: of hard-coding their names.
:
: Class::Loader is an inheritable class that provides a method, _load(), to load
: a module from disk and construct an object by calling its constructor. It also
: provides a way to map modules' names and associated metadata with symbolic
: names that can be used in place of module names at _load().