How to Install and Uninstall perl-UNIVERSAL-can.noarch Package on Fedora 35

Last updated: October 05,2024

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

This guide covers the steps necessary to install perl-UNIVERSAL-can.noarch on Fedora 35

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

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

This guide covers the steps necessary to uninstall perl-UNIVERSAL-can.noarch on Fedora 35:

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

3. Information about the perl-UNIVERSAL-can.noarch package on Fedora 35

Last metadata expiration check: 0:08:53 ago on Wed Sep 7 14:25:02 2022.
Available Packages
Name : perl-UNIVERSAL-can
Version : 1.20140328
Release : 21.fc35
Architecture : noarch
Size : 22 k
Source : perl-UNIVERSAL-can-1.20140328-21.fc35.src.rpm
Repository : fedora
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.