-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
02ae26b
commit 396718b
Showing
8 changed files
with
79 additions
and
63 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
(executable | ||
(public_name opam-dune-lint) | ||
(name main) | ||
(libraries astring fmt fmt.tty bos opam-format opam-state cmdliner stdune sexplib str)) | ||
(libraries astring fmt fmt.tty bos opam-format opam-state cmdliner stdune sexplib str fpath)) |
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 |
---|---|---|
@@ -1,24 +1,44 @@ | ||
(lang dune 3.10) | ||
|
||
(name opam-dune-lint) | ||
|
||
(formatting disabled) | ||
|
||
(generate_opam_files true) | ||
(source (github ocurrent/opam-dune-lint)) | ||
(authors "talex5@gmail.com") | ||
(maintainers "talex5@gmail.com") | ||
|
||
(source | ||
(github ocurrent/opam-dune-lint)) | ||
|
||
(authors talex5@gmail.com) | ||
|
||
(maintainers talex5@gmail.com) | ||
|
||
(license ISC) | ||
|
||
(cram enable) | ||
|
||
(package | ||
(name opam-dune-lint) | ||
(synopsis "Ensure dune and opam dependencies are consistent") | ||
(description | ||
"opam-dune-lint checks that all ocamlfind libraries listed as dune dependencies have corresponding opam dependencies listed in the opam files. If not, it offers to add them (either to your opam files, or to your dune-project if you're generating your opam files from that).") | ||
(depends | ||
(astring (>= 0.8.5)) | ||
(sexplib (>= v0.14.0)) | ||
(cmdliner (>= 1.1.0)) | ||
(stdune (>= 3.10.0)) | ||
(ocaml (>= 4.08.0)) | ||
(bos (>= 0.2.0)) | ||
(fmt (>= 0.8.9)) | ||
(opam-state (>= 2.1.0)) | ||
opam-format)) | ||
(fpath | ||
(>= 0.7.3)) | ||
(astring | ||
(>= 0.8.5)) | ||
(sexplib | ||
(>= v0.14.0)) | ||
(cmdliner | ||
(>= 1.1.0)) | ||
(stdune | ||
(>= 3.10.0)) | ||
(ocaml | ||
(>= 4.08.0)) | ||
(bos | ||
(>= 0.2.0)) | ||
(fmt | ||
(>= 0.8.9)) | ||
(opam-state | ||
(>= 2.1.0)) | ||
opam-format)) |
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
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
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