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

Last updated: October 07,2024

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

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

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

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

Please follow the guidance below to uninstall perl-namespace-autoclean.noarch on Fedora 39:

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

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

Last metadata expiration check: 2:49:48 ago on Thu Mar 7 11:44:58 2024.
Available Packages
Name : perl-namespace-autoclean
Version : 0.29
Release : 16.fc39
Architecture : noarch
Size : 25 k
Source : perl-namespace-autoclean-0.29-16.fc39.src.rpm
Repository : fedora
Summary : Keep imports out of your namespace
URL : https://metacpan.org/release/namespace-autoclean
License : GPL-1.0-or-later OR Artistic-1.0-Perl
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.