# Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-domains base
base-nnp base Naked pointers prohibited in the OCaml heap
base-threads base
base-unix base
conf-gmp 4 Virtual package relying on a GMP lib system installation
coq dev The Coq Proof Assistant
coq-core dev The Coq Proof Assistant -- Core Binaries and Tools
coq-stdlib dev The Coq Proof Assistant -- Standard Library
coqide-server dev The Coq Proof Assistant, XML protocol server
dune 3.13.0 Fast, portable, and opinionated build system
ocaml 5.1.1 The OCaml compiler (virtual package)
ocaml-base-compiler 5.1.1 Official release 5.1.1
ocaml-config 3 OCaml Switch Configuration
ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled
ocamlfind 1.9.6 A library manager for OCaml
zarith 1.13 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.18.0"}
"coq-metacoq-template" {>= "1.2.1+8.18"}
]
tags: [
"category:Miscellaneous/Coq Extensions"
"date:2023-12-13"
"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.6.tar.gz"
checksum: "8d0fb0ea1951e551e6b598ebab7feac2"
}
trueDry install with the current Coq version:
opam install -y --show-action coq-switch.1.0.6 coq.devDry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:
trueopam list; echo; timeout 4h opam install -y --deps-only coq-switch.1.0.6 coq.devopam list; echo; timeout 4h opam install -y -v coq-switch.1.0.6 coq.dev# Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-domains base base-nnp base Naked pointers prohibited in the OCaml heap base-threads base base-unix base conf-gmp 4 Virtual package relying on a GMP lib system installation coq dev The Coq Proof Assistant coq-core dev The Coq Proof Assistant -- Core Binaries and Tools coq-equations dev A function definition package for Coq coq-metacoq-common dev The common library of Template Coq and PCUIC coq-metacoq-template dev A quoting and unquoting library for Coq in Coq coq-metacoq-utils dev The utility library of Template Coq and PCUIC coq-stdlib dev The Coq Proof Assistant -- Standard Library coqide-server dev The Coq Proof Assistant, XML protocol server dune 3.13.0 Fast, portable, and opinionated build system ocaml 5.1.1 The OCaml compiler (virtual package) ocaml-base-compiler 5.1.1 Official release 5.1.1 ocaml-config 3 OCaml Switch Configuration ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled ocamlfind 1.9.6 A library manager for OCaml stdlib-shims 0.3.0 Backport some of the new stdlib features to older compiler zarith 1.13 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.6 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> Processing 1/3: [coq-switch.1.0.6: http] Processing 1/3: -> retrieved coq-switch.1.0.6 (https://github.com/vzaliva/coq-switch/archive/v1.0.6.tar.gz) Processing 2/3: [coq-switch: make] + /home/bench/.opam/opam-init/hooks/sandbox.sh "build" "make" "-j4" (CWD=/home/bench/.opam/ocaml-base-compiler.5.1.1/.opam-switch/build/coq-switch.1.0.6) - coq_makefile -f _CoqProject -o Makefile.coq - make -f Makefile.coq - make[1]: Entering directory '/home/bench/.opam/ocaml-base-compiler.5.1.1/.opam-switch/build/coq-switch.1.0.6' - COQDEP VFILES - COQC theories/Switch.v - File "./theories/Switch.v", line 54, characters 36-50: - Error: The reference Universe.type0 was not found in the current environment. - - make[2]: *** [Makefile.coq:848: theories/Switch.vo] Error 1 - make[2]: *** [theories/Switch.vo] Deleting file 'theories/Switch.glob' - make[1]: *** [Makefile.coq:417: all] Error 2 - make[1]: Leaving directory '/home/bench/.opam/ocaml-base-compiler.5.1.1/.opam-switch/build/coq-switch.1.0.6' - make: *** [Makefile:2: all] Error 2 [ERROR] The compilation of coq-switch.1.0.6 failed at "make -j4". #=== ERROR while compiling coq-switch.1.0.6 ===================================# # context 2.1.5 | linux/x86_64 | ocaml-base-compiler.5.1.1 | file:///home/bench/run/opam-coq-archive/released # path ~/.opam/ocaml-base-compiler.5.1.1/.opam-switch/build/coq-switch.1.0.6 # command ~/.opam/opam-init/hooks/sandbox.sh build make -j4 # exit-code 2 # env-file ~/.opam/log/coq-switch-12892-1f0a9e.env # output-file ~/.opam/log/coq-switch-12892-1f0a9e.out ### output ### # [...] # make -f Makefile.coq # make[1]: Entering directory '/home/bench/.opam/ocaml-base-compiler.5.1.1/.opam-switch/build/coq-switch.1.0.6' # COQDEP VFILES # COQC theories/Switch.v # File "./theories/Switch.v", line 54, characters 36-50: # Error: The reference Universe.type0 was not found in the current environment. # # make[2]: *** [Makefile.coq:848: theories/Switch.vo] Error 1 # make[2]: *** [theories/Switch.vo] Deleting file 'theories/Switch.glob' # make[1]: *** [Makefile.coq:417: all] Error 2 # make[1]: Leaving directory '/home/bench/.opam/ocaml-base-compiler.5.1.1/.opam-switch/build/coq-switch.1.0.6' # make: *** [Makefile:2: all] Error 2 <><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><> +- The following actions failed | - build coq-switch 1.0.6 +- - No changes have been performed # Run eval $(opam env) to update the current shell environment 'opam install -y -v coq-switch.1.0.6 coq.dev' failed.
No files were installed.
true