How to Install and Uninstall perl-UNIVERSAL-can.noarch Package on AlmaLinux 8

Last updated: May 19,2024

1. Install "perl-UNIVERSAL-can.noarch" package

In this section, we are going to explain the necessary steps to install perl-UNIVERSAL-can.noarch on AlmaLinux 8

$ sudo dnf update $ sudo dnf install perl-UNIVERSAL-can.noarch

2. Uninstall "perl-UNIVERSAL-can.noarch" package

In this section, we are going to explain the necessary steps to uninstall perl-UNIVERSAL-can.noarch on AlmaLinux 8:

$ sudo dnf remove perl-UNIVERSAL-can.noarch $ sudo dnf autoremove

3. Information about the perl-UNIVERSAL-can.noarch package on AlmaLinux 8

Last metadata expiration check: 0:36:24 ago on Mon Sep 5 03:22:42 2022.
Available Packages
Name : perl-UNIVERSAL-can
Version : 1.20140328
Release : 15.el8
Architecture : noarch
Size : 25 k
Source : perl-UNIVERSAL-can-1.20140328-15.el8.src.rpm
Repository : epel
Summary : Hack around people calling UNIVERSAL::can() as a function
URL : https://metacpan.org/release/UNIVERSAL-can
License : GPL+ or Artistic
Description : The UNIVERSAL class provides a few default methods so that all objects
: can use them. Object orientation allows programmers to override these
: methods in subclasses to provide more specific and appropriate behavior.
:
: Some authors call methods in the UNIVERSAL class on potential invocants
: as functions, bypassing any possible overriding. This is wrong and you
: should not do it. Unfortunately, not everyone heeds this warning and
: their bad code can break your good code.