forked from coq/opam
-
Notifications
You must be signed in to change notification settings - Fork 0
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 coq#2994 from ybertot/dpdgraphcoq-v8.19
coq-dpdgraph for coq 8.19
- Loading branch information
Showing
1 changed file
with
42 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
opam-version: "2.0" | ||
maintainer: "[email protected]" | ||
|
||
homepage: "https://github.com/coq-community/coq-dpdgraph" | ||
dev-repo: "git+https://github.com/coq-community/coq-dpdgraph.git" | ||
bug-reports: "https://github.com/coq-community/coq-dpdgraph/issues" | ||
license: "LGPL-2.1-only" | ||
|
||
synopsis: "Compute dependencies between Coq objects (definitions, theorems) and produce graphs" | ||
description: """ | ||
Coq plugin that extracts the dependencies between Coq objects, | ||
and produces files with dependency information. Includes tools | ||
to visualize dependency graphs and find unused definitions.""" | ||
|
||
build: [ | ||
["./configure"] | ||
[make "-j%{jobs}%" "WARN_ERR="] | ||
] | ||
install: [make "install" "BINDIR=%{bin}%"] | ||
depends: [ | ||
"ocaml" {>= "4.09.0"} | ||
"coq" {>= "8.19" & < "8.20~"} | ||
"ocamlgraph" | ||
] | ||
|
||
tags: [ | ||
"category:Miscellaneous/Coq Extensions" | ||
"keyword:dependency graph" | ||
"keyword:dependency analysis" | ||
"logpath:dpdgraph" | ||
"date:2024-03-21" | ||
] | ||
authors: [ | ||
"Anne Pacalet" | ||
"Yves Bertot" | ||
"Olivier Pons" | ||
] | ||
|
||
url { | ||
src: "https://github.com/coq-community/coq-dpdgraph/releases/download/v1.0%2B8.19/coq-dpdgraph-1.0-8.19.tgz" | ||
checksum: "sha512=a7da899aca0214ba09310c476a58e0680a343ed19e2d7c78d317f0da74a82d4239c88c4e1e0d8626eea39bfb6165b562079ee42d3c825050daa5f80407346837" | ||
} |