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

Last updated: November 25,2024

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

In this section, we are going to explain the necessary steps to install perl-namespace-autoclean.noarch on Fedora 35

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

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

Learn how to uninstall perl-namespace-autoclean.noarch on Fedora 35:

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

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

Last metadata expiration check: 0:52:02 ago on Wed Sep 7 14:25:02 2022.
Available Packages
Name : perl-namespace-autoclean
Version : 0.29
Release : 9.fc35
Architecture : noarch
Size : 26 k
Source : perl-namespace-autoclean-0.29-9.fc35.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.