ocamlgraph 2.1.0-1 source package in Ubuntu

Changelog

ocamlgraph (2.1.0-1) unstable; urgency=medium

  * Team upload
  * New upstream release
  * Update debian/watch

 -- Stéphane Glondu <email address hidden>  Fri, 08 Sep 2023 06:56:03 +0200

Upload details

Uploaded by:
Debian OCaml Maintainers
Uploaded to:
Sid
Original maintainer:
Debian OCaml Maintainers
Architectures:
any all
Section:
libdevel
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe libdevel

Downloads

File Size SHA-256 Checksum
ocamlgraph_2.1.0-1.dsc 2.0 KiB e29291e011ea5c39e53a147a230ac3079d1ddc7f54e18ab0c62e48678c6fcb0e
ocamlgraph_2.1.0.orig.tar.bz2 308.0 KiB 54893d10209b27ee5523ddc10c289b3db5071263338ac4eff9d56efd4f7d666d
ocamlgraph_2.1.0-1.debian.tar.xz 11.8 KiB e0f83d0f38c553b6dab39c0f9d096cdb93ef91c44a69d26e6ac710d276a48a15

Available diffs

No changes file available.

Binary packages built by this source

libocamlgraph-ocaml-dev: graph library for OCaml

 Ocamlgraph is a graph library for OCaml. Its contribution is
 three-fold:
 .
  * It provides an easy-to-use graph data structure together with
    several operations and algorithms over graphs. It is a
    reasonably efficient imperative data structure for directed
    graphs with vertices and edges labeled with integers.
 .
  * Then ocamlgraph provides several other graph implementations
    for those not satisfied with the one above. Some are
    persistent (imutable) and other imperative (mutable). Some
    are directed and other are not. Some have labels for
    vertices, or labels for edges, or both. Some have abstract
    types for vertices. etc.
    These implementations are written as functors: you give the
    types of vertices labels, edge labels, etc. and you get the
    data structure as a result.
 .
  * Finally, ocamlgraph provides several classic operations and
    algorithms over graphs.
    They are also written as functors i.e. independently of the
    data structure for graphs. One consequence is that you can
    define your own data structure for graphs and yet re-use all
    the algorithms from this library -- you only need to provide
    a few operations such as iterating over all vertices, over
    the successors of a vertex, etc.

libocamlgraph-ocaml-dev-dbgsym: debug symbols for libocamlgraph-ocaml-dev
libocamlgraph-ocaml-doc: documentation for the OCamlgraph library

 This package provides the API reference documentation generated by
 ocamldoc.