Skip to content

Commit

Permalink
Add a lock file for the alt-ergo-lib
Browse files Browse the repository at this point in the history
  • Loading branch information
Halbaroth committed Aug 2, 2023
1 parent 34ec145 commit 4cf9a3f
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
74 changes: 74 additions & 0 deletions alt-ergo-lib.opam.locked
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 4cf9a3f

Please sign in to comment.