How to Install and Uninstall perl-Exporter-Tiny.noarch Package on Rocky Linux 9

Last updated: May 05,2024

1. Install "perl-Exporter-Tiny.noarch" package

This tutorial shows how to install perl-Exporter-Tiny.noarch on Rocky Linux 9

$ sudo dnf update $ sudo dnf install perl-Exporter-Tiny.noarch

2. Uninstall "perl-Exporter-Tiny.noarch" package

In this section, we are going to explain the necessary steps to uninstall perl-Exporter-Tiny.noarch on Rocky Linux 9:

$ sudo dnf remove perl-Exporter-Tiny.noarch $ sudo dnf autoremove

3. Information about the perl-Exporter-Tiny.noarch package on Rocky Linux 9

Last metadata expiration check: 1:19:16 ago on Fri Feb 16 06:49:52 2024.
Available Packages
Name : perl-Exporter-Tiny
Version : 1.002002
Release : 6.el9
Architecture : noarch
Size : 51 k
Source : perl-Exporter-Tiny-1.002002-6.el9.src.rpm
Repository : appstream
Summary : An exporter with the features of Sub::Exporter but only core dependencies
URL : https://metacpan.org/release/Exporter-Tiny
License : GPL+ or Artistic
Description : Exporter::Tiny supports many of Sub::Exporter's external-facing features
: including renaming imported functions with the -as, -prefix and -suffix
: options; explicit destinations with the into option; and alternative
: installers with the installer option. But it's written in only about 40%
: as many lines of code and with zero non-core dependencies.
:
: Its internal-facing interface is closer to Exporter.pm, with configuration
: done through the @EXPORT, @EXPORT_OK and %EXPORT_TAGS package variables.
:
: Exporter::Tiny performs most of its internal duties (including resolution of
: tag names to sub names, resolution of sub names to coderefs, and installation
: of coderefs into the target package) as method calls, which means they can be
: overridden to provide interesting behavior.