How to Install and Uninstall perl-Class-Method-Modifiers.noarch Package on Fedora 38

Last updated: October 09,2024

1. Install "perl-Class-Method-Modifiers.noarch" package

Please follow the steps below to install perl-Class-Method-Modifiers.noarch on Fedora 38

$ sudo dnf update $ sudo dnf install perl-Class-Method-Modifiers.noarch

2. Uninstall "perl-Class-Method-Modifiers.noarch" package

Please follow the steps below to uninstall perl-Class-Method-Modifiers.noarch on Fedora 38:

$ sudo dnf remove perl-Class-Method-Modifiers.noarch $ sudo dnf autoremove

3. Information about the perl-Class-Method-Modifiers.noarch package on Fedora 38

Last metadata expiration check: 2:38:46 ago on Sun Mar 17 04:59:58 2024.
Available Packages
Name : perl-Class-Method-Modifiers
Version : 2.15
Release : 1.fc38
Architecture : noarch
Size : 51 k
Source : perl-Class-Method-Modifiers-2.15-1.fc38.src.rpm
Repository : fedora
Summary : Provides Moose-like method modifiers
URL : https://metacpan.org/release/Class-Method-Modifiers
License : GPL-1.0-or-later OR Artistic-1.0-Perl
Description : Method modifiers are a powerful feature from the CLOS (Common Lisp Object
: System) world.
:
: In its most basic form, a method modifier is just a method that calls
: '$self->SUPER::foo(@_)'. I for one have trouble remembering that exact
: invocation, so my classes seldom re-dispatch to their base classes. Very
: bad!
:
: 'Class::Method::Modifiers' provides three modifiers: 'before', 'around',
: and 'after'. 'before' and 'after' are run just before and after the method
: they modify, but can not really affect that original method. 'around' is
: run in place of the original method, with a hook to easily call that
: original method. See the 'MODIFIERS' section for more details on how the
: particular modifiers work.