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

Last updated: July 05,2024

1. Install "ghc-async.x86_64" package

Learn how to install ghc-async.x86_64 on Oracle Linux 9

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

2. Uninstall "ghc-async.x86_64" package

Please follow the guidance below to uninstall ghc-async.x86_64 on Oracle Linux 9:

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

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

Last metadata expiration check: 2:04:56 ago on Thu Feb 15 07:50:05 2024.
Available Packages
Name : ghc-async
Version : 2.2.4
Release : 1.el9
Architecture : x86_64
Size : 36 k
Source : ghc-async-2.2.4-1.el9.src.rpm
Repository : epel
Summary : Run IO operations asynchronously and wait for their results
URL : https://hackage.haskell.org/package/async
License : BSD
Description : This package provides a higher-level interface over threads, in which an
: 'Async a' is a concurrent thread that will eventually deliver a value of
: type 'a'. The package provides ways to create "Async" computations,
: wait for their results, and cancel them.
:
: Using 'Async' is safer than using threads in two ways:
:
: * When waiting for a thread to return a result, if the thread dies with an
: exception then the caller must either re-throw the exception ('wait') or handle
: it ('waitCatch'); the exception cannot be ignored.
:
: * The API makes it possible to build a tree of threads that are automatically
: killed when their parent dies (see 'withAsync').