this repo has no description

Merge pull request #26103 from Gbury/release-dolmen-v0.10

[new release] dolmen (6 packages) (0.10)

Changed files
+244 -9
packages
alt-ergo-lib
alt-ergo-lib.2.5.0
alt-ergo-lib.2.5.1
alt-ergo-lib.2.5.2
dolmen
dolmen.0.10
dolmen_bin
dolmen_bin.0.10
dolmen_loop
dolmen_loop.0.10
dolmen_lsp
dolmen_lsp.0.10
dolmen_model
dolmen_model.0.10
dolmen_type
dolmen_type.0.10
+3 -3
packages/alt-ergo-lib/alt-ergo-lib.2.5.0/opam
···
"ocaml" {>= "4.08.0"}
"dune" {>= "3.0"}
"dune-build-info"
-
"dolmen" {>= "0.9"}
-
"dolmen_type" {>= "0.9"}
-
"dolmen_loop" {>= "0.9"}
+
"dolmen" {>= "0.9" & < "0.10" }
+
"dolmen_type" {>= "0.9" & < "0.10" }
+
"dolmen_loop" {>= "0.9" & < "0.10" }
"ocplib-simplex" {>= "0.5"}
"zarith" {>= "1.11"}
"seq"
+3 -3
packages/alt-ergo-lib/alt-ergo-lib.2.5.1/opam
···
"ocaml" {>= "4.08.0"}
"dune" {>= "3.0"}
"dune-build-info"
-
"dolmen" {>= "0.9"}
-
"dolmen_type" {>= "0.9"}
-
"dolmen_loop" {>= "0.9"}
+
"dolmen" {>= "0.9" & < "0.10" }
+
"dolmen_type" {>= "0.9" & < "0.10" }
+
"dolmen_loop" {>= "0.9" & < "0.10" }
"ocplib-simplex" {>= "0.5"}
"zarith" {>= "1.11"}
"seq"
+3 -3
packages/alt-ergo-lib/alt-ergo-lib.2.5.2/opam
···
"ocaml" {>= "4.08.0"}
"dune" {>= "3.0"}
"dune-build-info"
-
"dolmen" {>= "0.9"}
-
"dolmen_type" {>= "0.9"}
-
"dolmen_loop" {>= "0.9"}
+
"dolmen" {>= "0.9" & < "0.10" }
+
"dolmen_type" {>= "0.9" & < "0.10" }
+
"dolmen_loop" {>= "0.9" & < "0.10" }
"ocplib-simplex" {>= "0.5"}
"zarith" {>= "1.11"}
"seq"
+51
packages/dolmen/dolmen.0.10/opam
···
+
opam-version: "2.0"
+
maintainer: "Guillaume Bury <guillaume.bury@gmail.com>"
+
authors: "Guillaume Bury <guillaume.bury@gmail.com>"
+
license: "BSD-2-Clause"
+
build: [
+
["dune" "subst"] {dev}
+
["dune" "build" "-p" name "-j" jobs "@install" "@runtest" {with-test} "@doc" {with-doc}]
+
]
+
depends: [
+
"ocaml" {>= "4.08"}
+
"menhir" {>= "20211230" }
+
"dune" { >= "3.0" }
+
"fmt" { >= "0.8.7" }
+
"hmap" { >= "0.8.1" }
+
"seq"
+
"odoc" { with-doc }
+
"qcheck" { with-test & >= "0.20" }
+
"mdx" { with-test & >= "2.0.0" }
+
]
+
+
tags: [ "parser" "logic" "tptp" "smtlib" "dimacs" ]
+
homepage: "https://github.com/Gbury/dolmen"
+
dev-repo: "git+https://github.com/Gbury/dolmen.git"
+
bug-reports: "https://github.com/Gbury/dolmen/issues"
+
+
doc: "https://gbury.github.io/dolmen"
+
synopsis: "A parser library for automated deduction"
+
description:
+
"Dolmen aims at providing tools to help in writing programs in the field of theorem proving,
+
SMT solving, and model checking. The project includes a few libraries, a CLI binary and an
+
LSP server, split over several opam packages.
+
+
This is the Dolmen parser library. It currently targets languages used in automated theorem provers,
+
as well as model checking, and may be extended to other domains later.
+
+
Dolmen provides functors that takes as arguments a representation of terms and statements,
+
and returns a module that can parse files (or streams of tokens) into the provided representation
+
of terms or statements. This is meant so that Dolmen can be used as a drop-in replacement of existing
+
parser, in order to factorize parsers among projects.
+
+
Additionally, Dolmen also provides a standard implementation of terms and statements that can be
+
used to instantiate its parsers."
+
url {
+
src:
+
"https://github.com/Gbury/dolmen/releases/download/v0.10/dolmen-0.10.tbz"
+
checksum: [
+
"sha256=c5c85f77e3924f378e8d82f166eefe4131b4e041bf9cdeca467410f33c71fa61"
+
"sha512=42feb39d13cfdc8a2054abe85ccc47755f45059cda7d95e9261b5a9fd5c730f420732547b3fa19c4af059474f887ef78c119ab5933375a5ea2dbe888f65a3e4f"
+
]
+
}
+
x-commit-hash: "c33632daab31fb3bb719031169baa6c984bb860f"
+42
packages/dolmen_bin/dolmen_bin.0.10/opam
···
+
opam-version: "2.0"
+
maintainer: "Guillaume Bury <guillaume.bury@gmail.com>"
+
authors: "Guillaume Bury <guillaume.bury@gmail.com>"
+
license: "BSD-2-Clause"
+
build: [
+
["dune" "subst"] {dev}
+
["dune" "build" "-p" name "-j" jobs "@install" "@runtest" {with-test} "@doc" {with-doc}]
+
]
+
depends: [
+
"ocaml" {>= "4.02.3"}
+
"dolmen" {= version }
+
"dolmen_type" {= version }
+
"dolmen_loop" {= version }
+
"dolmen_model" {= version }
+
"dune" { >= "3.0" }
+
"fmt"
+
"cmdliner" { >= "1.1.0" }
+
"odoc" { with-doc }
+
]
+
depopts: [
+
"memtrace"
+
]
+
tags: [ "logic" "computation" "automated theorem prover" "logic" "smtlib" "tptp"]
+
homepage: "https://github.com/Gbury/dolmen"
+
dev-repo: "git+https://github.com/Gbury/dolmen.git"
+
bug-reports: "https://github.com/Gbury/dolmen/issues"
+
+
doc: "https://gbury.github.io/dolmen"
+
synopsis: "A linter for logic languages"
+
description:
+
"The dolmen binary is an instantiation of the Dolmen library
+
to provide a binary to easily parse and type files used in
+
automated deduction, as well as verify models from theorem solvers."
+
url {
+
src:
+
"https://github.com/Gbury/dolmen/releases/download/v0.10/dolmen-0.10.tbz"
+
checksum: [
+
"sha256=c5c85f77e3924f378e8d82f166eefe4131b4e041bf9cdeca467410f33c71fa61"
+
"sha512=42feb39d13cfdc8a2054abe85ccc47755f45059cda7d95e9261b5a9fd5c730f420732547b3fa19c4af059474f887ef78c119ab5933375a5ea2dbe888f65a3e4f"
+
]
+
}
+
x-commit-hash: "c33632daab31fb3bb719031169baa6c984bb860f"
+38
packages/dolmen_loop/dolmen_loop.0.10/opam
···
+
opam-version: "2.0"
+
maintainer: "Guillaume Bury <guillaume.bury@gmail.com>"
+
authors: "Guillaume Bury <guillaume.bury@gmail.com>"
+
license: "BSD-2-Clause"
+
build: [
+
["dune" "subst"] {dev}
+
["dune" "build" "-p" name "-j" jobs "@install" "@runtest" {with-test} "@doc" {with-doc}]
+
]
+
depends: [
+
"ocaml" {>= "4.02.3"}
+
"dolmen" {= version }
+
"dolmen_type" {= version }
+
"dune" { >= "3.0" }
+
"gen"
+
"pp_loc" { >= "2.0.0" }
+
"odoc" { with-doc }
+
"mdx" { with-test & >= "2.0.0" }
+
]
+
tags: [ "logic" "computation" "automated theorem prover" ]
+
homepage: "https://github.com/Gbury/dolmen"
+
dev-repo: "git+https://github.com/Gbury/dolmen.git"
+
bug-reports: "https://github.com/Gbury/dolmen/issues"
+
+
doc: "https://gbury.github.io/dolmen"
+
synopsis: "A tool library for automated deduction tools"
+
description:
+
"Dolmen Loop is a library of useful helpers to parse
+
and loop over statements found in automated deduction files."
+
url {
+
src:
+
"https://github.com/Gbury/dolmen/releases/download/v0.10/dolmen-0.10.tbz"
+
checksum: [
+
"sha256=c5c85f77e3924f378e8d82f166eefe4131b4e041bf9cdeca467410f33c71fa61"
+
"sha512=42feb39d13cfdc8a2054abe85ccc47755f45059cda7d95e9261b5a9fd5c730f420732547b3fa19c4af059474f887ef78c119ab5933375a5ea2dbe888f65a3e4f"
+
]
+
}
+
x-commit-hash: "c33632daab31fb3bb719031169baa6c984bb860f"
+
+37
packages/dolmen_lsp/dolmen_lsp.0.10/opam
···
+
opam-version: "2.0"
+
maintainer: "Guillaume Bury <guillaume.bury@gmail.com>"
+
authors: "Guillaume Bury <guillaume.bury@gmail.com>"
+
license: "BSD-2-Clause"
+
build: [
+
["dune" "subst"] {dev}
+
["dune" "build" "-p" name "-j" jobs "@install" "@runtest" {with-test} "@doc" {with-doc}]
+
]
+
depends: [
+
"ocaml" {>= "4.02.3"}
+
"dolmen" {= version }
+
"dolmen_type" {= version }
+
"dolmen_loop" { = version }
+
"dune" { >= "3.0" }
+
"ocaml-syntax-shims"
+
"odoc" { with-doc }
+
"logs"
+
"lsp"
+
"linol" { >= "0.4" & < "0.5" }
+
"linol-lwt" { >= "0.4" & < "0.5" }
+
]
+
tags: [ "logic" "computation" "automated theorem prover" "lsp" "language server protocol"]
+
homepage: "https://github.com/Gbury/dolmen"
+
dev-repo: "git+https://github.com/Gbury/dolmen.git"
+
bug-reports: "https://github.com/Gbury/dolmen/issues"
+
+
doc: "https://gbury.github.io/dolmen"
+
synopsis: "A LSP server for automated deduction languages"
+
url {
+
src:
+
"https://github.com/Gbury/dolmen/releases/download/v0.10/dolmen-0.10.tbz"
+
checksum: [
+
"sha256=c5c85f77e3924f378e8d82f166eefe4131b4e041bf9cdeca467410f33c71fa61"
+
"sha512=42feb39d13cfdc8a2054abe85ccc47755f45059cda7d95e9261b5a9fd5c730f420732547b3fa19c4af059474f887ef78c119ab5933375a5ea2dbe888f65a3e4f"
+
]
+
}
+
x-commit-hash: "c33632daab31fb3bb719031169baa6c984bb860f"
+35
packages/dolmen_model/dolmen_model.0.10/opam
···
+
opam-version: "2.0"
+
maintainer: "Guillaume Bury <guillaume.bury@gmail.com>"
+
authors: "Guillaume Bury <guillaume.bury@gmail.com>"
+
license: "BSD-2-Clause"
+
build: [
+
["dune" "subst"] {dev}
+
["dune" "build" "-p" name "-j" jobs "@install" "@runtest" {with-test} "@doc" {with-doc}]
+
]
+
depends: [
+
"ocaml" {>= "4.02.3"}
+
"dolmen" {= version }
+
"dolmen_loop" {= version }
+
"dune" { >= "3.0" }
+
"odoc" { with-doc }
+
"zarith" { >= "1.10" }
+
"farith"
+
]
+
tags: [ "logic" "type" "model" "modelchecking" "first order" ]
+
homepage: "https://github.com/Gbury/dolmen"
+
dev-repo: "git+https://github.com/Gbury/dolmen.git"
+
bug-reports: "https://github.com/Gbury/dolmen/issues"
+
+
doc: "https://gbury.github.io/dolmen"
+
synopsis:
+
"The Dolmen library for verifying models generated by
+
automated theorem provers and SMT solvers"
+
url {
+
src:
+
"https://github.com/Gbury/dolmen/releases/download/v0.10/dolmen-0.10.tbz"
+
checksum: [
+
"sha256=c5c85f77e3924f378e8d82f166eefe4131b4e041bf9cdeca467410f33c71fa61"
+
"sha512=42feb39d13cfdc8a2054abe85ccc47755f45059cda7d95e9261b5a9fd5c730f420732547b3fa19c4af059474f887ef78c119ab5933375a5ea2dbe888f65a3e4f"
+
]
+
}
+
x-commit-hash: "c33632daab31fb3bb719031169baa6c984bb860f"
+32
packages/dolmen_type/dolmen_type.0.10/opam
···
+
opam-version: "2.0"
+
maintainer: "Guillaume Bury <guillaume.bury@gmail.com>"
+
authors: "Guillaume Bury <guillaume.bury@gmail.com>"
+
license: "BSD-2-Clause"
+
build: [
+
["dune" "subst"] {dev}
+
["dune" "build" "-p" name "-j" jobs "@install" "@runtest" {with-test} "@doc" {with-doc}]
+
]
+
depends: [
+
"ocaml" {>= "4.02.3"}
+
"dolmen" {= version }
+
"dune" { >= "3.0" }
+
"spelll" { >= "0.4" }
+
"uutf"
+
"odoc" { with-doc }
+
]
+
tags: [ "logic" "type" "typechecking" "first order" "polymorphism" ]
+
homepage: "https://github.com/Gbury/dolmen"
+
dev-repo: "git+https://github.com/Gbury/dolmen.git"
+
bug-reports: "https://github.com/Gbury/dolmen/issues"
+
+
doc: "https://gbury.github.io/dolmen"
+
synopsis: "The Dolmen library for typechecking languages"
+
url {
+
src:
+
"https://github.com/Gbury/dolmen/releases/download/v0.10/dolmen-0.10.tbz"
+
checksum: [
+
"sha256=c5c85f77e3924f378e8d82f166eefe4131b4e041bf9cdeca467410f33c71fa61"
+
"sha512=42feb39d13cfdc8a2054abe85ccc47755f45059cda7d95e9261b5a9fd5c730f420732547b3fa19c4af059474f887ef78c119ab5933375a5ea2dbe888f65a3e4f"
+
]
+
}
+
x-commit-hash: "c33632daab31fb3bb719031169baa6c984bb860f"