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

Last updated: May 05,2024

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

Please follow the guidelines below to install perl-UNIVERSAL-can.noarch on Rocky Linux 8

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

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

This is a short guide on how to uninstall perl-UNIVERSAL-can.noarch on Rocky Linux 8:

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

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

Last metadata expiration check: 1:46:31 ago on Mon Sep 12 10:27:18 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.