# Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils conf-gmp 4 Virtual package relying on a GMP lib system installation coq dev Formal proof management system dune 3.0.3 Fast, portable, and opinionated build system ocaml 4.11.2 The OCaml compiler (virtual package) ocaml-base-compiler 4.11.2 Official release 4.11.2 ocaml-config 1 OCaml Switch Configuration ocamlfind 1.9.3 A library manager for OCaml zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers # opam file: opam-version: "2.0" maintainer: "dev@clarus.me" homepage: "https://github.com/coq-contribs/idxassoc" license: "BSD with advertising clause" build: [ ["coq_makefile" "-f" "Make" "-o" "Makefile"] [make "-j%{jobs}%"] ] install: [make "install"] remove: ["rm" "-R" "%{lib}%/coq/user-contrib/IdxAssoc"] depends: [ "ocaml" "coq" {= "dev"} ] tags: [ "keyword:associative arrays" "keyword:search operator" "keyword:data structures" "category:Computer Science/Data Types and Data Structures" "date:2001-04" ] authors: [ "Dominique Quatravaux <>" "Gérald Macinenti <>" "François-René Ridaux <>" ] synopsis: "Associative Arrays." description: """ We define the associative array (key -> value associations) datatype as list of couples, providing definitions of standards operations such as adding, deleting. We introduce predicates for membership of a key and of couples. Finally we define a search operator ("find") which returns the value associated with a key or the "none" option (see file Option.v which should be part of this contribution) on failure. Lemmas we prove about these concepts were motivated by our needs at the moment we created this file. We hope they'll suit your needs too but anyway, feel free to communicate any wish or remark.""" flags: light-uninstall url { src: "git+https://github.com/coq-contribs/idxassoc.git#master" }
true
Dry install with the current Coq version:
opam install -y --show-action coq-idxassoc.dev coq.dev
Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:
true
opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-idxassoc.dev coq.dev
opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y coq-idxassoc.dev coq.dev
Total: 211 K
../ocaml-base-compiler.4.11.2/lib/coq/user-contrib/IdxAssoc/Assoc.glob
../ocaml-base-compiler.4.11.2/lib/coq/user-contrib/IdxAssoc/Assoc.vo
../ocaml-base-compiler.4.11.2/lib/coq/user-contrib/IdxAssoc/Assoc.v
../ocaml-base-compiler.4.11.2/lib/coq/user-contrib/IdxAssoc/Option.vo
../ocaml-base-compiler.4.11.2/lib/coq/user-contrib/IdxAssoc/Option.glob
../ocaml-base-compiler.4.11.2/lib/coq/user-contrib/IdxAssoc/Option.v
opam remove -y coq-idxassoc.dev