package opam-state
Install
dune-project
Dependency
Authors
-
David Allsopp
-
VVincent Bernardoff <vb@luminar.eu.org>
-
RRaja Boujbel <raja.boujbel@ocamlpro.com>
-
KKate Deplaix <kit-ty-kate@exn.st>
-
RRoberto Di Cosmo <roberto@dicosmo.org>
-
TThomas Gazagnaire <thomas@gazagnaire.org>
-
LLouis Gesbert <louis.gesbert@ocamlpro.com>
-
FFabrice Le Fessant <Fabrice.Le_fessant@inria.fr>
-
AAnil Madhavapeddy <anil@recoil.org>
-
GGuillem Rieu <guillem.rieu@ocamlpro.com>
-
RRalf Treinen <ralf.treinen@pps.jussieu.fr>
-
FFrederic Tuong <tuong@users.gforge.inria.fr>
Maintainers
Sources
md5=44a606f260d65e41a135c2b9f659453d
sha512=042ed5742eb7fc5fc921f95f9733cf4b0774a167ee96aa9d0ade48b91f0d3187bb561372f4dfea4087f888fa95371f7b60bc1fb85917fed3e152b71897640505
doc/opam-state/OpamGlobalState/index.html
Module OpamGlobalStateSource
Loading and handling of the global state of an opam root
Loads the global state (from the opam root obtained through OpamStateConfig.(!r.root))
Loads the global state as load, and calls the given function while keeping it locked (as per the lock argument), releasing the lock afterwards
The set of all installed packages, in any switch
val fold_switches :
(OpamTypes.switch -> OpamTypes.switch_selections -> 'a -> 'a) ->
'b OpamStateTypes.global_state ->
'a ->
'aFold over switches, using switch selections. Switch selection file switch-state is loaded only read-only; no further checks are done on the opam root version.
Checks a switch for existence: either configured in the opam root, or an existing local switch with a configuration file pointing to the current root
val all_installed_versions :
'a OpamStateTypes.global_state ->
OpamTypes.switch list OpamTypes.package_mapReturns the map of all installed packages to the list of switch(es) they're installed in.
Default list of repositories to get packages from, ordered by decreasing priority. This can be overridden by switch-specific selections, and does not have to include all configured repositories.
val unlock :
'a OpamStateTypes.global_state ->
OpamStateTypes.unlocked OpamStateTypes.global_stateReleases any locks on the given global_state
Releases any locks on the given global state and then ignores it.
Using drop gt is equivalent to ignore (unlock gt), and safer than other uses of ignore where it is not enforced by the type-system that the value is unlocked before it is lost.
val with_write_lock :
?dontblock:bool ->
'a OpamStateTypes.global_state ->
(OpamStateTypes.rw OpamStateTypes.global_state ->
'b * 'c OpamStateTypes.global_state) ->
'b * 'a OpamStateTypes.global_stateCalls the provided function, ensuring a temporary write lock on the given global state
Writes back the global configuration file ~/.opam/config
Updates the configured list of switches, making sure the current switch is registered if it is set and exists, and removing any non-existing switches. Writes back to disk if possible (ie lock is available)
Description used for system inferred variables
Returns true is opam root is read-only. It is used to detect if opam is launched in a sandbox, from an opam command (like build, install, etc.).