OpamPackage
The package type, and package name type (name+version, values often called "nv" in the code)
module Version : sig ... end
Versions
module Name : sig ... end
Names
Package (name x version) pairs
include OpamStd.ABSTRACT with type t := t
val of_string : string -> t
val to_string : t -> string
val to_json : t -> OpamJson.t
val of_json : OpamJson.t -> t option
module Set : OpamStd.SET with type elt = t
module Map : OpamStd.MAP with type key = t
val of_string_opt : string -> t option
Return None if nv
is not a valid package name
val name_to_string : t -> string
To fit in the GenericPackage type, for generic display functions
val version_to_string : t -> string
val of_filename : OpamFilename.t -> t option
Guess the package name from a filename. This function extracts name
and version
from /path/to/$name.$version/opam, or /path/to/$name.$version.opam
val of_dirname : OpamFilename.Dir.t -> t option
Guess the package name from a directory name. This function extracts $name and $version from /path/to/$name.$version/
val of_archive : OpamFilename.t -> t option
Guess the package name from an archive file. This function extract $name and $version from /path/to/$name.$version+opam.tar.gz
val to_map : Set.t -> Version.Set.t Name.Map.t
Convert a set of pairs to a map name -> versions
val of_map : Version.Set.t Name.Map.t -> Set.t
The converse of to_map
val versions_of_packages : Set.t -> Version.Set.t
Extract the versions from a collection of packages
val versions_of_name : Set.t -> Name.t -> Version.Set.t
Return the list of versions for a given package
val names_of_packages : Set.t -> Name.Set.t
Extract the naes from a collection of packages
Returns true if the set contains a package with the given name
val packages_of_names : Set.t -> Name.Set.t -> Set.t
Return all the packages with one of the given names
Removes all packages with the given name from a set of packages
Return the maximal available version of a package name from a set. Raises Not_found
if no such package available.
val hash : t -> int
Hash a package
val list : OpamFilename.Dir.t -> Set.t
Return all the package descriptions in a given directory
val prefixes : OpamFilename.Dir.t -> string option Map.t
Return all the package descriptions in the current directory (and their eventual prefixes).
module Graph : OpamParallel.GRAPH with type V.t = t
Parallel executions.