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

Last updated: April 29,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 35

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

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

Please follow the guidance below to uninstall perl-Parse-RecDescent.noarch on Fedora 35:

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

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

Last metadata expiration check: 2:30:36 ago on Wed Sep 7 02:25:42 2022.
Available Packages
Name : perl-Parse-RecDescent
Version : 1.967015
Release : 15.fc35
Architecture : noarch
Size : 196 k
Source : perl-Parse-RecDescent-1.967015-15.fc35.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