How to Install and Uninstall ocaml-camlp-streams.i686 Package on Fedora 38

Last updated: October 26,2024

1. Install "ocaml-camlp-streams.i686" package

Here is a brief guide to show you how to install ocaml-camlp-streams.i686 on Fedora 38

$ sudo dnf update $ sudo dnf install ocaml-camlp-streams.i686

2. Uninstall "ocaml-camlp-streams.i686" package

In this section, we are going to explain the necessary steps to uninstall ocaml-camlp-streams.i686 on Fedora 38:

$ sudo dnf remove ocaml-camlp-streams.i686 $ sudo dnf autoremove

3. Information about the ocaml-camlp-streams.i686 package on Fedora 38

Last metadata expiration check: 0:17:32 ago on Sat Mar 16 16:59:57 2024.
Available Packages
Name : ocaml-camlp-streams
Version : 5.0.1
Release : 4.fc38
Architecture : i686
Size : 27 k
Source : ocaml-camlp-streams-5.0.1-4.fc38.src.rpm
Repository : fedora
Summary : Stream and Genlex libraries for OCaml
URL : https://github.com/ocaml/camlp-streams
License : LGPL-2.1-only WITH OCaml-LGPL-linking-exception
Description : The camlp-streams package provides two library modules:
: - Stream: imperative streams, with in-place update and memoization of
: the latest element produced.
: - Genlex: a small parameterized lexical analyzer producing streams of
: tokens from streams of characters.
:
: The two modules are designed for use with Camlp4 and Camlp5:
: - The stream patterns and stream expressions of Camlp4/Camlp5 consume
: and produce data of type `'a Stream.t`.
: - The Genlex tokenizer can be used as a simple lexical analyzer for
: Camlp4/Camlp5-generated parsers.
:
: The Stream module can also be used by hand-written recursive-descent
: parsers, but is not very convenient for this purpose.
:
: The Stream and Genlex modules have been part of the OCaml standard
: library for a long time, and have been distributed as part of the core
: OCaml system. They will be removed from the OCaml standard library at
: some future point, but will be maintained and distributed separately in
: this camlp-streams package.