# 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: "vzaliva@cmu.edu" homepage: "https://github.com/vzaliva/coq-switch" dev-repo: "git://git@github.com:vzaliva/coq-switch.git" bug-reports: "https://github.com/vzaliva/coq-switch/issues" authors: ["Vadim Zaliva <lord@crocodile.org>"] license: "MIT" build: [ [make "-j%{jobs}%"] ] install: [ [make "install"] ] depends: [ "coq" {>= "8.13.0"} "coq-metacoq-template" {>= "1.0~beta2+8.13"} ] tags: [ "category:Miscellaneous/Coq Extensions" "date:2021-01-28" "logpath:Switch" ] synopsis: "A plugin to implement functionality similar to `switch` statement in C language" description: """It allows easier dispatch on several constant values of a type with decidable equality. Given a type, boolean equality predicate, and list of choices, it will generate (using TemplateCoq) an inductive type with constructors, one for each of the choices, and a function mapping values to this type.""" url { src: "https://github.com/vzaliva/coq-switch/archive/v1.0.5.tar.gz" checksum: "3c9adafc944af4c6472a96212c0a8d73" }
true
Dry install with the current Coq version:
opam install -y --show-action coq-switch.1.0.5 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-switch.1.0.5 coq.dev
opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-switch.1.0.5 coq.dev
# 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 coq-equations dev A function definition package for Coq coq-metacoq-template dev A quoting and unquoting library for Coq in Coq 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 stdlib-shims 0.3.0 Backport some of the new stdlib features to older compiler zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers [NOTE] Package coq is already installed (current version is dev). The following actions will be performed: - install coq-switch 1.0.5 <><> Gathering sources ><><><><><><><><><><><><><><><><><><><><><><><><><><><><> Processing 1/1: [coq-switch.1.0.5: http] [coq-switch.1.0.5] downloaded from https://github.com/vzaliva/coq-switch/archive/v1.0.5.tar.gz Processing 1/1: <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> Processing 1/2: [coq-switch: make] + /home/bench/.opam/opam-init/hooks/sandbox.sh "build" "make" "-j4" (CWD=/home/bench/.opam/ocaml-base-compiler.4.11.2/.opam-switch/build/coq-switch.1.0.5) - coq_makefile -f _CoqProject -o Makefile.coq - make -f Makefile.coq - make[1]: Entering directory '/home/bench/.opam/ocaml-base-compiler.4.11.2/.opam-switch/build/coq-switch.1.0.5' - COQDEP VFILES - COQC theories/Switch.v - File "./theories/Switch.v", line 5, characters 7-20: - Error: Cannot find module MonadNotation. - - make[2]: *** [Makefile.coq:791: theories/Switch.vo] Error 1 - make[1]: *** [Makefile.coq:408: all] Error 2 - make[1]: Leaving directory '/home/bench/.opam/ocaml-base-compiler.4.11.2/.opam-switch/build/coq-switch.1.0.5' - make: *** [Makefile:2: all] Error 2 [ERROR] The compilation of coq-switch failed at "/home/bench/.opam/opam-init/hooks/sandbox.sh build make -j4". #=== ERROR while compiling coq-switch.1.0.5 ===================================# # context 2.0.7 | linux/x86_64 | ocaml-base-compiler.4.11.2 | file:///home/bench/run/opam-coq-archive/released # path ~/.opam/ocaml-base-compiler.4.11.2/.opam-switch/build/coq-switch.1.0.5 # command ~/.opam/opam-init/hooks/sandbox.sh build make -j4 # exit-code 2 # env-file ~/.opam/log/coq-switch-16473-865888.env # output-file ~/.opam/log/coq-switch-16473-865888.out ### output ### # [...] # coq_makefile -f _CoqProject -o Makefile.coq # make -f Makefile.coq # make[1]: Entering directory '/home/bench/.opam/ocaml-base-compiler.4.11.2/.opam-switch/build/coq-switch.1.0.5' # COQDEP VFILES # COQC theories/Switch.v # File "./theories/Switch.v", line 5, characters 7-20: # Error: Cannot find module MonadNotation. # # make[2]: *** [Makefile.coq:791: theories/Switch.vo] Error 1 # make[1]: *** [Makefile.coq:408: all] Error 2 # make[1]: Leaving directory '/home/bench/.opam/ocaml-base-compiler.4.11.2/.opam-switch/build/coq-switch.1.0.5' # make: *** [Makefile:2: all] Error 2 <><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><> +- The following actions failed | - build coq-switch 1.0.5 +- - No changes have been performed # Run eval $(opam env) to update the current shell environment 'opam install -y -v coq-switch.1.0.5 coq.dev' failed.
No files were installed.
true