From 4cf9a3f386e9b656a27833103abaf80cfee9d2b2 Mon Sep 17 00:00:00 2001 From: Pierre Villemot Date: Wed, 2 Aug 2023 16:10:06 +0200 Subject: [PATCH] Add a lock file for the alt-ergo-lib --- Makefile | 3 ++ alt-ergo-lib.opam.locked | 74 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 77 insertions(+) create mode 100644 alt-ergo-lib.opam.locked diff --git a/Makefile b/Makefile index 93f61b42a..b5161e2ef 100644 --- a/Makefile +++ b/Makefile @@ -234,6 +234,9 @@ archi: $(EXTRA_DIR)/ocamldot/ocamldot echo "}" >> archi.dot dot -Tpdf archi.dot > archi.pdf +lock: + opam lock ./alt-ergo-lib.opam -w + dev-switch: opam switch create -y . --deps-only --ignore-constraints-on alt-ergo-lib,alt-ergo-parsers diff --git a/alt-ergo-lib.opam.locked b/alt-ergo-lib.opam.locked new file mode 100644 index 000000000..bdb49fa3e --- /dev/null +++ b/alt-ergo-lib.opam.locked @@ -0,0 +1,74 @@ +opam-version: "2.0" +name: "alt-ergo-lib" +version: "dev" +synopsis: "The Alt-Ergo SMT prover library" +description: """\ +This is the core library used in the Alt-Ergo SMT solver. + +Alt-Ergo is an automatic theorem prover of mathematical formulas. It was developed at LRI, and is now maintained at OCamlPro. + +See more details on http://alt-ergo.ocamlpro.com/""" +maintainer: "Alt-Ergo developers" +authors: "Alt-Ergo developers" +license: ["LicenseRef-OCamlpro-Non-Commercial" "Apache-2.0"] +tags: "org:OCamlPro" +homepage: "https://alt-ergo.ocamlpro.com/" +doc: "https://ocamlpro.github.io/alt-ergo" +bug-reports: "https://github.com/OCamlPro/alt-ergo/issues" +depends: [ + "base-bigarray" {= "base"} + "base-threads" {= "base"} + "base-unix" {= "base"} + "camlzip" {= "1.11"} + "cmdliner" {= "1.2.0"} + "conf-gmp" {= "4"} + "conf-pkg-config" {= "3"} + "conf-zlib" {= "1"} + "dolmen" {= "0.9"} + "dolmen_loop" {= "0.9"} + "dolmen_type" {= "0.9"} + "dune" {= "3.10.0"} + "dune-build-info" {= "3.10.0"} + "fmt" {= "0.9.0"} + "gen" {= "1.1"} + "logs" {= "0.7.0"} + "menhir" {= "20230608"} + "menhirLib" {= "20230608"} + "menhirSdk" {= "20230608"} + "num" {= "1.4"} + "ocaml" {= "4.10.1"} + "ocaml-base-compiler" {= "4.10.1"} + "ocaml-compiler-libs" {= "v0.12.4"} + "ocaml-config" {= "1"} + "ocamlbuild" {= "0.14.2"} + "ocamlfind" {= "1.9.6"} + "ocplib-simplex" {= "0.5"} + "pp_loc" {= "2.1.0"} + "ppx_blob" {= "0.7.2"} + "ppx_derivers" {= "1.2.1"} + "ppxlib" {= "0.30.0"} + "seq" {= "base"} + "sexplib0" {= "v0.16.0"} + "spelll" {= "0.4"} + "stdlib-shims" {= "0.3.0"} + "topkg" {= "1.0.7"} + "uutf" {= "1.0.3"} + "zarith" {= "1.13"} +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "--promote-install-files=false" + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] + ["dune" "install" "-p" name "--create-install-files" name] +] +dev-repo: "git+https://github.com/OCamlPro/alt-ergo.git" \ No newline at end of file