package opam-core
- Overview
- No Docs
You can search for identifiers within the package.
in-package search v0.2.0
Install
dune-project
Dependency
Authors
-
VVincent Bernardoff <vb@luminar.eu.org>
-
RRaja Boujbel <raja.boujbel@ocamlpro.com>
-
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=e55ac537cd9ab3d987454633fa439fa4
sha512=040e4f58f93e962ff422617ce0d35ed45dd86921a9aac3505914c33dd942d0e5e5771e7e1774046504f9aa84f32bc4fbd6ac7720fbea862d48bf1ca29e02cefc
doc/opam-core/OpamCoreConfig/index.html
Module OpamCoreConfigSource
Configuration options for the core lib (record, global reference and setter)
type t = private {debug_level : int;(*Controls debug messages, 0 to disable
*)debug_sections : OpamStd.Config.sections;(*Controls which sections display debugging messages. If empty, all messages are displayed.
*)verbose_level : OpamStd.Config.level;(*Controls printing of external commands and output, 0 to disable, more means print more low-level commands
*)color : OpamStd.Config.when_;(*Console ANSI color control
*)utf8 : OpamStd.Config.when_ext;(*Controls usage of UTF8 in OPAM-generated messages. Extended adds camel emojis
*)disp_status_line : OpamStd.Config.when_;(*Controls on-line display of parallel commands being run, using ANSI escapes
*)confirm_level : [ OpamStd.Config.answer | `undefined ];yes : bool option;(*Affects interactive questions in OpamConsole: used to compute the automatic ansering level
*)safe_mode : bool;(*Fail on writes or delays, don't ask questions (for quick queries, e.g. for shell completion)
*)log_dir : string;(*Where to store log and temporary files (output from commands...)
*)keep_log_dir : bool;(*Whether to cleanup temporary and log files on exit
*)errlog_length : int;(*The number of log lines displayed on process error. 0 for all
*)merged_output : bool;(*If set, stderr of commands is merged into their stdout
*)use_openssl : bool;(*If false, will use built-in hash functions without checking for an openssl executable first
*)precise_tracking : bool;(*If set, will take full md5 of all files when checking diffs (to track installations), rather than rely on just file size and mtime
*)set : bool;(*Options have not yet been initialised (i.e. defaults are active)
*)
}type 'a options_fun =
?debug_level:int ->
?debug_sections:OpamStd.Config.sections ->
?verbose_level:OpamStd.Config.level ->
?color:OpamStd.Config.when_ ->
?utf8:OpamStd.Config.when_ext ->
?disp_status_line:OpamStd.Config.when_ ->
?confirm_level:OpamStd.Config.answer ->
?yes:bool option ->
?safe_mode:bool ->
?log_dir:string ->
?keep_log_dir:bool ->
?errlog_length:int ->
?merged_output:bool ->
?use_openssl:bool ->
?precise_tracking:bool ->
'aSets the OpamCoreConfig options, reading the environment to get default values when unspecified
Like init, but returns the given value. For optional argument stacking
Automatic answering levels * `ask: prompt and ask user * `no: answer no to all opam questions * `yes: answer yes to all opam questions * `unsafe_yes: answer yes to all opam question and launch system package command wit non interactive options If confirm-level is set (from cli or environment variable), its value is returned. Otherwise, is takes last yes/no cli flag. For environment variables, if OPAMYES is set to true, it has priority over OPAMNO. As other environment variables, cli flags content is taken if given. answer_is and answer_is_yes computes the answer lazily, use answer in case of config update.
true if OPAM was compiled in developer mode