How to Install and Uninstall perl-Long-Jump.noarch Package on Fedora 34

Last updated: September 21,2024

1. Install "perl-Long-Jump.noarch" package

Please follow the steps below to install perl-Long-Jump.noarch on Fedora 34

$ sudo dnf update $ sudo dnf install perl-Long-Jump.noarch

2. Uninstall "perl-Long-Jump.noarch" package

Please follow the steps below to uninstall perl-Long-Jump.noarch on Fedora 34:

$ sudo dnf remove perl-Long-Jump.noarch $ sudo dnf autoremove

3. Information about the perl-Long-Jump.noarch package on Fedora 34

Last metadata expiration check: 3:35:27 ago on Tue Sep 6 08:10:37 2022.
Available Packages
Name : perl-Long-Jump
Version : 0.000001
Release : 3.fc33
Architecture : noarch
Size : 20 k
Source : perl-Long-Jump-0.000001-3.fc33.src.rpm
Repository : fedora
Summary : Mechanism for returning to a specific point from a deeply nested stack
URL : https://metacpan.org/release/Long-Jump
License : GPL+ or Artistic
Description : This Perl module essentially provides a multi-level return. You can mark
: a spot with setjump() and then unwind the stack back to that point from any
: nested stack frame by name using longjump(). You can also provide a list of
: return values. It is safer than C language jump in that it only lets you
: escape frames by going up the stack, you cannot jump in other ways.