package opam-core
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=6f64322df0415af45430b0024d3dcdcc
sha512=49218a14c3b7e2f47052c1fb6907b54086f5af4adb43d120065c77f2c573d72136ac64f55f577a613eb43ebe29fbe14f9ac0e25756209ca7a572aa35a4410a5d
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
*)verbose_level : int;(*Controls printing of external commands and output, 0 to disable, more means print more low-level commands
*)color : [ `Always | `Never | `Auto ];(*Console ANSI color control
*)utf8 : [ `Extended | `Always | `Never | `Auto ];(*Controls usage of UTF8 in OPAM-generated messages. Extended adds camel emojis
*)disp_status_line : [ `Always | `Never | `Auto ];(*Controls on-line display of parallel commands being run, using ANSI escapes
*)answer : bool option;(*Affects interactive questions in OpamConsole: auto-answer with the given bool if Some
*)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
*)
}type 'a options_fun =
?debug_level:int ->
?verbose_level:int ->
?color:[ `Always | `Never | `Auto ] ->
?utf8:[ `Extended | `Always | `Never | `Auto ] ->
?disp_status_line:[ `Always | `Never | `Auto ] ->
?answer:bool option ->
?safe_mode:bool ->
?log_dir:string ->
?keep_log_dir:bool ->
?errlog_length:int ->
?merged_output:bool ->
?use_openssl:bool ->
?precise_tracking:bool ->
'atrue if OPAM was compiled in developer mode