package opam-client
Client library for opam 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
2.0.0-rc4.tar.gz
sha256=7f812f9b78e9948fb641bc559183721fedea62d3dafb2960bb786b400eae1de5
md5=385612adf8733f6816cfcbc39e3e1b50
doc/src/opam-client/opamClientConfig.ml.html
Source file opamClientConfig.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
(**************************************************************************) (* *) (* Copyright 2015 OCamlPro *) (* *) (* All rights reserved. This file is distributed under the terms of the *) (* GNU Lesser General Public License version 2.1, with the special *) (* exception on linking described in the file LICENSE. *) (* *) (**************************************************************************) type t = { print_stats: bool; pin_kind_auto: bool; autoremove: bool; editor: string; keep_build_dir: bool; reuse_build_dir: bool; inplace_build: bool; working_dir: bool; ignore_pin_depends: bool; show: bool; fake: bool; skip_dev_update: bool; json_out: string option; root_is_ok: bool; no_auto_upgrade: bool; } let default = { print_stats = false; pin_kind_auto = true; autoremove = false; editor = "nano"; keep_build_dir = false; reuse_build_dir = false; inplace_build = false; working_dir = false; ignore_pin_depends = false; show = false; fake = false; skip_dev_update = false; json_out = None; root_is_ok = false; no_auto_upgrade = false; } type 'a options_fun = ?print_stats:bool -> ?pin_kind_auto:bool -> ?autoremove:bool -> ?editor:string -> ?keep_build_dir:bool -> ?reuse_build_dir:bool -> ?inplace_build:bool -> ?working_dir:bool -> ?ignore_pin_depends:bool -> ?show:bool -> ?fake:bool -> ?skip_dev_update:bool -> ?json_out:string option -> ?root_is_ok:bool -> ?no_auto_upgrade:bool -> 'a let setk k t ?print_stats ?pin_kind_auto ?autoremove ?editor ?keep_build_dir ?reuse_build_dir ?inplace_build ?working_dir ?ignore_pin_depends ?show ?fake ?skip_dev_update ?json_out ?root_is_ok ?no_auto_upgrade = let (+) x opt = match opt with Some x -> x | None -> x in k { print_stats = t.print_stats + print_stats; pin_kind_auto = t.pin_kind_auto + pin_kind_auto; autoremove = t.autoremove + autoremove; editor = t.editor + editor; keep_build_dir = t.keep_build_dir + keep_build_dir; reuse_build_dir = t.reuse_build_dir + reuse_build_dir; inplace_build = t.inplace_build + inplace_build; working_dir = t.working_dir + working_dir; ignore_pin_depends = t.ignore_pin_depends + ignore_pin_depends; show = t.show + show; fake = t.fake + fake; skip_dev_update = t.skip_dev_update + skip_dev_update; json_out = t.json_out + json_out; root_is_ok = t.root_is_ok + root_is_ok; no_auto_upgrade = t.no_auto_upgrade + no_auto_upgrade; } let set t = setk (fun x () -> x) t let r = ref default let update ?noop:_ = setk (fun cfg () -> r := cfg) !r let initk k = let open OpamStd.Config in let open OpamStd.Option.Op in let editor = env_string "EDITOR" ++ OpamStd.Env.(getopt "VISUAL" ++ getopt "EDITOR") in setk (setk (fun c -> r := c; k)) !r ?print_stats:(env_bool "STATS") ?pin_kind_auto:(env_bool "PINKINDAUTO") ?autoremove:(env_bool "AUTOREMOVE") ?editor ?keep_build_dir:(env_bool "KEEPBUILDDIR") ?reuse_build_dir:(env_bool "REUSEBUILDDIR") ?inplace_build:(env_bool "INPLACEBUILD") ?working_dir:(env_bool "WORKINGDIR") ?ignore_pin_depends:(env_bool "IGNOREPINDEPENDS") ?show:(env_bool "SHOW") ?fake:(env_bool "FAKE") ?skip_dev_update:(env_bool "SKIPUPDATE") ?json_out:(env_string "JSON" >>| function "" -> None | s -> Some s) ?root_is_ok:(env_bool "ROOTISOK") ?no_auto_upgrade:(env_bool "NOAUTOUPGRADE") let init ?noop:_ = initk (fun () -> ()) let search_files = ["findlib"] open OpamStd.Op let opam_init ?root_dir ?strict = let open OpamStd.Option.Op in (* (i) get root dir *) let root = OpamStateConfig.opamroot ?root_dir () in (* (ii) load conf file and set defaults *) (* the init for OpamFormat is done in advance since (a) it has an effect on loading the global config (b) the global config has no effect on it *) OpamFormatConfig.initk ?strict @@ fun ?log_dir -> let config = OpamStateConfig.load_defaults root in let initialised = config <> None in (* !X fixme: don't drop the loaded config file to reload it afterwards (when loading the global_state) like that... *) begin match config with | None -> () | Some conf -> let criteria kind = let c = OpamFile.Config.criteria conf in try Some (List.assoc kind c) with Not_found -> None in OpamSolverConfig.update ?solver:(OpamFile.Config.solver conf >>| fun s -> lazy(OpamCudfSolver.custom_solver s)) ?solver_preferences_default:(criteria `Default >>| fun s-> lazy(Some s)) ?solver_preferences_upgrade:(criteria `Upgrade >>| fun s-> lazy(Some s)) ?solver_preferences_fixup:(criteria `Fixup >>| fun s -> lazy (Some s)) ?solver_preferences_best_effort_prefix: (OpamFile.Config.best_effort_prefix conf >>| fun s -> lazy (Some s)) () end; (* (iii) load from env and options using OpamXxxConfig.init *) let log_dir = if log_dir = None && initialised then Some OpamFilename.(Dir.to_string (OpamPath.log root)) else None in (fun () -> ()) |> OpamStd.Config.initk ?log_dir |> OpamRepositoryConfig.initk |> OpamSolverConfig.initk |> OpamStateConfig.initk ~root_dir:root |> initk
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>