How to Install and Uninstall perl-Data-OptList.noarch Package on Fedora 39

Last updated: October 14,2024

1. Install "perl-Data-OptList.noarch" package

This is a short guide on how to install perl-Data-OptList.noarch on Fedora 39

$ sudo dnf update $ sudo dnf install perl-Data-OptList.noarch

2. Uninstall "perl-Data-OptList.noarch" package

In this section, we are going to explain the necessary steps to uninstall perl-Data-OptList.noarch on Fedora 39:

$ sudo dnf remove perl-Data-OptList.noarch $ sudo dnf autoremove

3. Information about the perl-Data-OptList.noarch package on Fedora 39

Last metadata expiration check: 3:16:20 ago on Thu Mar 7 11:44:58 2024.
Available Packages
Name : perl-Data-OptList
Version : 0.114
Release : 2.fc39
Architecture : noarch
Size : 27 k
Source : perl-Data-OptList-0.114-2.fc39.src.rpm
Repository : fedora
Summary : Parse and validate simple name/value option pairs
URL : https://metacpan.org/release/Data-OptList
License : GPL-1.0-or-later OR Artistic-1.0-Perl
Description : Hashes are great for storing named data, but if you want more than one entry
: for a name, you have to use a list of pairs. Even then, this is really boring
: to write:
:
: $values = [
: foo => undef,
: bar => undef,
: baz => undef,
: xyz => { ... },
: ];
:
: With Data::OptList, you can do this instead:
:
: $values = Data::OptList::mkopt([
: qw(foo bar baz),
: xyz => { ... },
: ]);
:
: This works by assuming that any defined scalar is a name and any reference
: following a name is its value.