# 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: "Ralf Jung <jung@mpi-sws.org>" authors: "The std++ team" license: "BSD-3-Clause" homepage: "https://gitlab.mpi-sws.org/iris/stdpp" bug-reports: "https://gitlab.mpi-sws.org/iris/stdpp/issues" dev-repo: "git+https://gitlab.mpi-sws.org/iris/stdpp.git" synopsis: "An extended \"Standard Library\" for Coq" description: """ The key features of this library are as follows: - It provides a great number of definitions and lemmas for common data structures such as lists, finite maps, finite sets, and finite multisets. - It uses type classes for common notations (like `โ `, `โช`, and Haskell-style monad notations) so that these can be overloaded for different data structures. - It uses type classes to keep track of common properties of types, like it having decidable equality or being countable or finite. - Most data structures are represented in canonical ways so that Leibniz equality can be used as much as possible (for example, for maps we have `m1 = m2` iff `โ i, m1 !! i = m2 !! i`). On top of that, the library provides setoid instances for most types and operations. - It provides various tactics for common tasks, like an ssreflect inspired `done` tactic for finishing trivial goals, a simple breadth-first solver `naive_solver`, an equality simplifier `simplify_eq`, a solver `solve_proper` for proving compatibility of functions with respect to relations, and a solver `set_solver` for goals involving set operations. - It is entirely dependency- and axiom-free. """ tags: [ "date:2022-08-17" "logpath:stdpp" ] depends: [ "coq" { (>= "8.13" & < "8.19~") | (= "dev") } ] patches: ["curry.patch"] build: ["./make-package" "stdpp" "-j%{jobs}%"] install: ["./make-package" "stdpp" "install"] url { src: "https://gitlab.mpi-sws.org/iris/stdpp/-/archive/coq-stdpp-1.8.0.tar.gz" checksum: "sha512=c894cc0574ab00efa41c807628f97abdeff917bee71b40e2f98251bcdc91ebfb7a2964683e61e7cefbe6e578b2e123098ddd7694252406f8c4835176c1d0df37" }
true
Dry install with the current Coq version:
opam install -y --show-action coq-stdpp.1.8.0 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; timeout 4h opam install -y --deps-only coq-stdpp.1.8.0 coq.dev
opam list; echo; timeout 4h opam install -y -v coq-stdpp.1.8.0 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-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 [NOTE] Package coq is already installed (current version is dev). The following actions will be performed: - install coq-stdpp 1.8.0 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> Processing 1/3: [coq-stdpp.1.8.0: http] Processing 1/3: -> retrieved coq-stdpp.1.8.0 (https://gitlab.mpi-sws.org/iris/stdpp/-/archive/coq-stdpp-1.8.0.tar.gz) [coq-stdpp: patch] applying curry.patch Processing 2/3: [coq-stdpp: patch] Processing 2/3: [coq-stdpp: ./make-package stdpp] + /home/bench/.opam/opam-init/hooks/sandbox.sh "build" "./make-package" "stdpp" "-j4" (CWD=/home/bench/.opam/ocaml-base-compiler.5.1.1/.opam-switch/build/coq-stdpp.1.8.0) - COQDEP VFILES - Warning: in file stdpp/numbers.v, library NPeano is required - from root Coq and has not been found in the loadpath! - [module-not-found,filesystem,default] - COQC stdpp/options.v - File "./stdpp/options.v", line 6, characters 0-38: - Warning: Syntax "Export Set" is deprecated, use the attribute syntax - "#[export] Set" instead. - [legacy-export-set,deprecated-since-8.18,deprecated,default] - File "./stdpp/options.v", line 9, characters 0-37: - Warning: Syntax "Export Set" is deprecated, use the attribute syntax - "#[export] Set" instead. - [legacy-export-set,deprecated-since-8.18,deprecated,default] - COQC stdpp/base.v - File "./stdpp/base.v", line 47, characters 0-27: - Warning: The default and global localities for this command outside sections - are currently equivalent to the combination of the standard meaning of - "global" (as described in the reference manual), "export" and re-exporting - for every surrounding module. It will change to just "global" (with the - meaning used by the "Set" command) in a future release. - To preserve the current meaning in a forward compatible way, use the - attribute "#[global,export]" and repeat the command with just "#[export]" in - any surrounding modules. If you are fine with the change of semantics, - disable this warning. - [deprecated-tacopt-without-locality,deprecated-since-8.17,deprecated,default] - File "./stdpp/base.v", line 345, characters 0-87: - Warning: A coercion will be introduced instead of an instance in future - versions when using ':>' in 'Class' declarations. Replace ':>' with '::' (or - use '#[global] Existing Instance field.' for compatibility with Coq < 8.18). - Beware that the default locality for '::' is #[export], as opposed to - #[global] for ':>' currently. Add an explicit #[global] attribute if you need - to keep the current behavior. For example: "Class foo := #[global] baz :: - bar." [future-coercion-class-field,deprecated-since-8.17,deprecated,default] - File "./stdpp/base.v", line 475, characters 0-133: - Warning: A coercion will be introduced instead of an instance in future - versions when using ':>' in 'Class' declarations. Replace ':>' with '::' (or - use '#[global] Existing Instance field.' for compatibility with Coq < 8.18). - Beware that the default locality for '::' is #[export], as opposed to - #[global] for ':>' currently. Add an explicit #[global] attribute to the - field if you need to keep the current behavior. For example: "Class foo := { - #[global] field :: bar }." - [future-coercion-class-field,deprecated-since-8.17,deprecated,default] - File "./stdpp/base.v", line 481, characters 0-143: - Warning: A coercion will be introduced instead of an instance in future - versions when using ':>' in 'Class' declarations. Replace ':>' with '::' (or - use '#[global] Existing Instance field.' for compatibility with Coq < 8.18). - Beware that the default locality for '::' is #[export], as opposed to - #[global] for ':>' currently. Add an explicit #[global] attribute to the - field if you need to keep the current behavior. For example: "Class foo := { - #[global] field :: bar }." - [future-coercion-class-field,deprecated-since-8.17,deprecated,default] - File "./stdpp/base.v", line 1414, characters 0-302: - Warning: A coercion will be introduced instead of an instance in future - versions when using ':>' in 'Class' declarations. Replace ':>' with '::' (or - use '#[global] Existing Instance field.' for compatibility with Coq < 8.18). - Beware that the default locality for '::' is #[export], as opposed to - #[global] for ':>' currently. Add an explicit #[global] attribute to the - field if you need to keep the current behavior. For example: "Class foo := { - #[global] field :: bar }." - [future-coercion-class-field,deprecated-since-8.17,deprecated,default] - File "./stdpp/base.v", line 1422, characters 0-295: - Warning: A coercion will be introduced instead of an instance in future - versions when using ':>' in 'Class' declarations. Replace ':>' with '::' (or - use '#[global] Existing Instance field.' for compatibility with Coq < 8.18). - Beware that the default locality for '::' is #[export], as opposed to - #[global] for ':>' currently. Add an explicit #[global] attribute to the - field if you need to keep the current behavior. For example: "Class foo := { - #[global] field :: bar }." - [future-coercion-class-field,deprecated-since-8.17,deprecated,default] - File "./stdpp/base.v", line 1463, characters 0-274: - Warning: A coercion will be introduced instead of an instance in future - versions when using ':>' in 'Class' declarations. Replace ':>' with '::' (or - use '#[global] Existing Instance field.' for compatibility with Coq < 8.18). - Beware that the default locality for '::' is #[export], as opposed to - #[global] for ':>' currently. Add an explicit #[global] attribute to the - field if you need to keep the current behavior. For example: "Class foo := { - #[global] field :: bar }." - [future-coercion-class-field,deprecated-since-8.17,deprecated,default] - File "./stdpp/base.v", line 1486, characters 0-584: - Warning: A coercion will be introduced instead of an instance in future - versions when using ':>' in 'Class' declarations. Replace ':>' with '::' (or - use '#[global] Existing Instance field.' for compatibility with Coq < 8.18). - Beware that the default locality for '::' is #[export], as opposed to - #[global] for ':>' currently. Add an explicit #[global] attribute to the - field if you need to keep the current behavior. For example: "Class foo := { - #[global] field :: bar }." - [future-coercion-class-field,deprecated-since-8.17,deprecated,default] - File "./stdpp/base.v", line 1519, characters 0-186: - Warning: A coercion will be introduced instead of an instance in future - versions when using ':>' in 'Class' declarations. Replace ':>' with '::' (or - use '#[global] Existing Instance field.' for compatibility with Coq < 8.18). - Beware that the default locality for '::' is #[export], as opposed to - #[global] for ':>' currently. Add an explicit #[global] attribute to the - field if you need to keep the current behavior. For example: "Class foo := { - #[global] field :: bar }." - [future-coercion-class-field,deprecated-since-8.17,deprecated,default] - COQC stdpp/proof_irrel.v - COQC stdpp/well_founded.v - COQC stdpp/decidable.v - COQC stdpp/tactics.v - COQC stdpp/option.v - COQC stdpp/orders.v - COQC stdpp/fin.v - COQC stdpp/streams.v - File "./stdpp/fin.v", line 20, characters 0-41: - Warning: The '%' scope delimiter in 'Arguments' commands is deprecated, use - '%_' instead (available since 8.19). The '%' syntax will be reused in a - future version with the same semantics as in terms, that is adding scope to - the stack for all subterms. Code can be adapted with a script like: for f in - $(find . -name '*.v'); do sed '/Arguments/ s/%/%_/g' -i $f ; done - [argument-scope-delimiter,deprecated-since-8.19,deprecated,default] - File "./stdpp/fin.v", line 70, characters 6-24: - Warning: Tactic Notation revert dependent (hyp) is deprecated since 8.18. - Use "generalize dependent" instead ("revert dependent" is currently an alias) - [deprecated-tactic-notation-since-8.18,deprecated-since-8.18,deprecated-tactic-notation,deprecated,default] - File "./stdpp/fin.v", line 68, characters 6-24: - Warning: Tactic Notation revert dependent (hyp) is deprecated since 8.18. - Use "generalize dependent" instead ("revert dependent" is currently an alias) - [deprecated-tactic-notation-since-8.18,deprecated-since-8.18,deprecated-tactic-notation,deprecated,default] - COQC stdpp/functions.v - COQC stdpp/hlist.v - COQC stdpp/telescopes.v - COQC stdpp/numbers.v - File "./stdpp/numbers.v", line 24, characters 0-63: - Error: Cannot find a physical path bound to logical path - NPeano with prefix Coq. - - make[1]: *** [Makefile.package.stdpp:848: stdpp/numbers.vo] Error 1 - make[1]: *** [stdpp/numbers.vo] Deleting file 'stdpp/numbers.glob' - make[1]: *** Waiting for unfinished jobs.... - make: *** [Makefile.package.stdpp:417: all] Error 2 [ERROR] The compilation of coq-stdpp.1.8.0 failed at "./make-package stdpp -j4". #=== ERROR while compiling coq-stdpp.1.8.0 ====================================# # 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-stdpp.1.8.0 # command ~/.opam/opam-init/hooks/sandbox.sh build ./make-package stdpp -j4 # exit-code 2 # env-file ~/.opam/log/coq-stdpp-20369-8cfec1.env # output-file ~/.opam/log/coq-stdpp-20369-8cfec1.out ### output ### # [...] # COQC stdpp/functions.v # COQC stdpp/hlist.v # COQC stdpp/telescopes.v # COQC stdpp/numbers.v # File "./stdpp/numbers.v", line 24, characters 0-63: # Error: Cannot find a physical path bound to logical path # NPeano with prefix Coq. # # make[1]: *** [Makefile.package.stdpp:848: stdpp/numbers.vo] Error 1 # make[1]: *** [stdpp/numbers.vo] Deleting file 'stdpp/numbers.glob' # make[1]: *** Waiting for unfinished jobs.... # make: *** [Makefile.package.stdpp:417: all] Error 2 <><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><> +- The following actions failed | - build coq-stdpp 1.8.0 +- - No changes have been performed # Run eval $(opam env) to update the current shell environment 'opam install -y -v coq-stdpp.1.8.0 coq.dev' failed.
No files were installed.
true