-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3275 from proux01/rocq-stdlib
[core-dev] Rename coq-stdlib -> rocq-stdlib
- Loading branch information
Showing
2 changed files
with
54 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
opam-version: "2.0" | ||
synopsis: "The Rocq Proof Assistant -- Standard Library" | ||
description: """ | ||
Rocq is a formal proof management system. It provides | ||
a formal language to write mathematical definitions, executable | ||
algorithms and theorems together with an environment for | ||
semi-interactive development of machine-checked proofs. | ||
|
||
Typical applications include the certification of properties of | ||
programming languages (e.g. the CompCert compiler certification | ||
project, or the Bedrock verified low-level programming library), the | ||
formalization of mathematics (e.g. the full formalization of the | ||
Feit-Thompson theorem or homotopy type theory) and teaching. | ||
|
||
This package includes the Rocq Standard Library, that is to say, the | ||
set of modules usually bound to the Stdlib.* namespace.""" | ||
maintainer: ["The Rocq standard library development team"] | ||
authors: ["The Rocq development team, INRIA, CNRS, and contributors"] | ||
license: "LGPL-2.1-only" | ||
homepage: "https://coq.inria.fr/" | ||
doc: "https://coq.github.io/doc/" | ||
bug-reports: "https://github.com/coq/coq/issues" | ||
depends: [ | ||
"dune" {>= "3.8"} | ||
"rocq-runtime" | ||
"rocq-core" {= version} | ||
"odoc" {with-doc} | ||
] | ||
depopts: ["coq-native"] | ||
dev-repo: "git+https://github.com/coq/coq.git" | ||
build: [ | ||
["sh" "-c" "echo '(dirs stdlib)' > dune"] | ||
["dune" "subst"] {dev} | ||
[ | ||
"stdlib/dev/with-rocq-wrap.sh" | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
["mv" "stdlib/rocq-stdlib.install" "."] | ||
] | ||
|
||
url { | ||
src: "git+https://github.com/coq/coq.git#master" | ||
} |