Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update extra-dev package of mathcomp-analysis #1971

Merged
merged 4 commits into from
Dec 9, 2021
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,41 +1,44 @@
opam-version: "2.0"
maintainer: "[email protected]"
maintainer: "Reynald Affeldt <[email protected]>"

homepage: "https://github.com/math-comp/analysis"
bug-reports: "https://github.com/math-comp/analysis/issues"
dev-repo: "git+https://github.com/math-comp/analysis.git"
bug-reports: "https://github.com/math-comp/analysis/issues"
license: "CECILL-C"

synopsis: "An analysis library for mathematical components"
description: """
This repository contains an experimental library for real analysis for
the Coq proof-assistant and using the Mathematical Components library."""

build: [make "-j%{jobs}%"]
install: [make "install"]
depends: [
"coq" { (>= "8.13" & < "8.15~") | (= "dev") }
"coq-mathcomp-ssreflect" { (>= "1.12.0" & < "1.14~") | (= "dev") }
"coq-mathcomp-fingroup" { (>= "1.12.0" & < "1.14~") | (= "dev") }
"coq-mathcomp-algebra" { (>= "1.12.0" & < "1.14~") | (= "dev") }
"coq-mathcomp-solvable" { (>= "1.12.0" & < "1.14~") | (= "dev") }
"coq-mathcomp-field" { (>= "1.12.0" & < "1.14~") | (= "dev") }
"coq-mathcomp-finmap" { (>= "1.5.1" & < "1.6~") | (= "dev") }
"coq-mathcomp-bigenough" { (>= "1.0.0") }
"coq-hierarchy-builder" { (>= "0.10.0") }
affeldt-aist marked this conversation as resolved.
Show resolved Hide resolved
]

authors: [
"Reynald Affeldt"
"Yves Bertot"
"Cyril Cohen"
"Marie Kerjean"
"Assia Mahboubi"
"Damien Rouhling"
"Pierre Roux"
"Kazuhiko Sakaguchi"
"Zachary Stone"
"Pierre-Yves Strub"
"Laurent Théry"
]
build: [
[make "INSTMODE=global" "config"]
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/mathcomp/analysis"]
depends: [
"coq" { (>= "8.11" & < "8.14~") | (= "dev") }
"coq-mathcomp-ssreflect" { (>= "1.12.0" & < "1.13~") | (= "dev") }
"coq-mathcomp-fingroup"
"coq-mathcomp-algebra"
"coq-mathcomp-solvable"
"coq-mathcomp-field"
"coq-mathcomp-finmap" { (>= "1.5.1" & < "1.6~") | (= "dev") }
"coq-hierarchy-builder" { >= "0.10.0" | (= "dev") }
]
synopsis: "An analysis library for mathematical components"
description: """
This repository contains an experimental library for real analysis for
the Coq proof-assistant and using the Mathematical Components library.

It is inspired by the Coquelicot library.
"""
url {
src: "git+https://github.com/math-comp/analysis.git#master"
}