How to Install and Uninstall perl-namespace-autoclean.noarch Package on Fedora 36

Last updated: July 01,2024

1. Install "perl-namespace-autoclean.noarch" package

Please follow the guidance below to install perl-namespace-autoclean.noarch on Fedora 36

$ sudo dnf update $ sudo dnf install perl-namespace-autoclean.noarch

2. Uninstall "perl-namespace-autoclean.noarch" package

This is a short guide on how to uninstall perl-namespace-autoclean.noarch on Fedora 36:

$ sudo dnf remove perl-namespace-autoclean.noarch $ sudo dnf autoremove

3. Information about the perl-namespace-autoclean.noarch package on Fedora 36

Last metadata expiration check: 5:55:37 ago on Thu Sep 8 08:04:50 2022.
Available Packages
Name : perl-namespace-autoclean
Version : 0.29
Release : 10.fc36
Architecture : noarch
Size : 26 k
Source : perl-namespace-autoclean-0.29-10.fc36.src.rpm
Repository : fedora
Summary : Keep imports out of your namespace
URL : https://metacpan.org/release/namespace-autoclean
License : GPL+ or Artistic
Description : When you import a function into a Perl package, it will naturally also be
: available as a method. The 'namespace::autoclean' pragma will remove all
: imported symbols at the end of the current package's compile cycle. Functions
: called in the package itself will still be bound by their name, but they won't
: show up as methods on your class or instances. This module is very similar to
: namespace::clean, except it will clean all imported functions, no matter if you
: imported them before or after you 'use'd the pragma. It will also not touch
: anything that looks like a method.