How to Install and Uninstall ghc-retry.x86_64 Package on Oracle Linux 9

Last updated: October 05,2024

1. Install "ghc-retry.x86_64" package

Please follow the step by step instructions below to install ghc-retry.x86_64 on Oracle Linux 9

$ sudo dnf update $ sudo dnf install ghc-retry.x86_64

2. Uninstall "ghc-retry.x86_64" package

In this section, we are going to explain the necessary steps to uninstall ghc-retry.x86_64 on Oracle Linux 9:

$ sudo dnf remove ghc-retry.x86_64 $ sudo dnf autoremove

3. Information about the ghc-retry.x86_64 package on Oracle Linux 9

Last metadata expiration check: 3:13:38 ago on Thu Feb 15 07:50:05 2024.
Available Packages
Name : ghc-retry
Version : 0.8.1.2
Release : 13.el9
Architecture : x86_64
Size : 36 k
Source : ghc-retry-0.8.1.2-13.el9.src.rpm
Repository : epel
Summary : Retry combinators for monadic actions that may fail
URL : https://hackage.haskell.org/package/retry
License : BSD
Description : This package exposes combinators that can wrap arbitrary monadic actions.
: They run the action and potentially retry running it with some configurable
: delay for a configurable number of times. The purpose is to make it easier to
: work with IO and especially network IO actions that often experience temporary
: failure and warrant retrying of the original action. For example, a database
: query may time out for a while, in which case we should hang back for a bit and
: retry the query instead of simply raising an exception.