-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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 #19023 from talex5/release-opam-dune-lint-v0.2
[new release] opam-dune-lint (0.2)
- Loading branch information
Showing
1 changed file
with
47 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,47 @@ | ||
opam-version: "2.0" | ||
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)." | ||
maintainer: ["talex5@gmail.com"] | ||
authors: ["talex5@gmail.com"] | ||
license: "ISC" | ||
homepage: "https://github.com/ocurrent/opam-dune-lint" | ||
bug-reports: "https://github.com/ocurrent/opam-dune-lint/issues" | ||
depends: [ | ||
"dune" {>= "2.7"} | ||
"astring" {>= "0.8.5"} | ||
"sexplib" {>= "v0.14.0"} | ||
"cmdliner" {>= "1.0.4"} | ||
"dune-private-libs" {>= "2.8.0"} | ||
"ocaml" {>= "4.10.0"} | ||
"bos" {>= "0.2.0"} | ||
"fmt" {>= "0.8.9"} | ||
"opam-state" {>= "2.1.0~~"} | ||
"opam-format" | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/ocurrent/opam-dune-lint.git" | ||
flags: plugin | ||
url { | ||
src: | ||
"https://github.com/ocurrent/opam-dune-lint/releases/download/v0.2/opam-dune-lint-v0.2.tbz" | ||
checksum: [ | ||
"sha256=14820dabe460fda8272596d02c3de938ae584720285b7538fc7ee6f7d7a93432" | ||
"sha512=e25ed90fcddd68b92e7ff6092a6a3f357840d53eadf133348977771cd9d457cc1994a46cec88c95e101cfef354694f6b454f73b5e684da45bafe50f25304797c" | ||
] | ||
} | ||
x-commit-hash: "1345ed5872359b6f2708ccfc4e9cd3e1d1391204" |