How to Install and Uninstall perl-Parse-RecDescent.noarch Package on Fedora 34

Last updated: July 05,2024

1. Install "perl-Parse-RecDescent.noarch" package

In this section, we are going to explain the necessary steps to install perl-Parse-RecDescent.noarch on Fedora 34

$ sudo dnf update $ sudo dnf install perl-Parse-RecDescent.noarch

2. Uninstall "perl-Parse-RecDescent.noarch" package

Please follow the step by step instructions below to uninstall perl-Parse-RecDescent.noarch on Fedora 34:

$ sudo dnf remove perl-Parse-RecDescent.noarch $ sudo dnf autoremove

3. Information about the perl-Parse-RecDescent.noarch package on Fedora 34

Last metadata expiration check: 0:29:41 ago on Tue Sep 6 14:10:38 2022.
Available Packages
Name : perl-Parse-RecDescent
Version : 1.967015
Release : 13.fc34
Architecture : noarch
Size : 197 k
Source : perl-Parse-RecDescent-1.967015-13.fc34.src.rpm
Repository : fedora
Summary : Generate Recursive-Descent Parsers
URL : https://metacpan.org/release/Parse-RecDescent
License : (GPL+ or Artistic) and (GPLv2+ or Artistic)
Description : Parse::RecDescent incrementally generates top-down recursive-descent
: text parsers from simple yacc-like grammar specifications. It
: provides:
:
: * Regular expressions or literal strings as terminals (tokens)
: * Multiple (non-contiguous) productions for any rule
: * Repeated and optional subrules within productions
: * Full access to Perl within actions specified as part of the grammar
: * Simple automated error reporting during parser generation and parsing
: * The ability to commit to, uncommit to, or reject particular
: productions during a parse
: * The ability to pass data up and down the parse tree ("down" via
: subrule argument lists, "up" via subrule return values)
: * Incremental extension of the parsing grammar (even during a parse)
: * Precompilation of parser objects
: * User-definable reduce-reduce conflict resolution via "scoring" of
: matching productions