How to Install and Uninstall ocaml-easy-format Package on openSuSE Tumbleweed

Last updated: September 28,2024

1. Install "ocaml-easy-format" package

Please follow the guidance below to install ocaml-easy-format on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install ocaml-easy-format

2. Uninstall "ocaml-easy-format" package

This guide covers the steps necessary to uninstall ocaml-easy-format on openSuSE Tumbleweed:

$ sudo zypper remove ocaml-easy-format

3. Information about the ocaml-easy-format package on openSuSE Tumbleweed

Information for package ocaml-easy-format:
------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : ocaml-easy-format
Version : 1.3.4-1.7
Arch : x86_64
Vendor : openSUSE
Installed Size : 81.9 KiB
Installed : No
Status : not installed
Source package : ocaml-easy-format-1.3.4-1.7.src
Upstream URL : https://opam.ocaml.org/packages/easy-format
Summary : Data pretty printing made easy
Description :
This module offers a high-level and functional interface to the Format module
of the OCaml standard library. It is a pretty-printing facility, i.e. it takes
as input some code represented as a tree and formats this code into the most
visually satisfying result, breaking and indenting lines of code where
appropriate.
Input data must be first modelled and converted into a tree using 3 kinds of
nodes:
atoms lists labelled nodes
Atoms represent any text that is guaranteed to be printed as-is. Lists can
model any sequence of items such as arrays of data or lists of definitions that
are labelled with something like "int main", "let x =" or "x:".