ocamlgraph 2.1.0-3 source package in Ubuntu

Changelog

ocamlgraph (2.1.0-3) unstable; urgency=medium

  * Team upload
  * Build doc only on indep builds
  * Add support for a different OCaml stdlib dir

 -- Stéphane Glondu <email address hidden>  Sat, 03 Aug 2024 07:12:33 +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
Oracular release universe libdevel

Downloads

File Size SHA-256 Checksum
ocamlgraph_2.1.0-3.dsc 2.0 KiB e11951ff17bc32fcfdfad5d844acfcf579b0975b7985f477c67e27ba3301a792
ocamlgraph_2.1.0.orig.tar.bz2 308.0 KiB 54893d10209b27ee5523ddc10c289b3db5071263338ac4eff9d56efd4f7d666d
ocamlgraph_2.1.0-3.debian.tar.xz 11.8 KiB 622e0170ef6895b2ae5a0bcca24498a073172e9617b0e7cdace8f7d31b0ed267

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.