forked from tarides/dune-release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dune-release.opam
41 lines (38 loc) · 1.07 KB
/
dune-release.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
opam-version: "2.0"
maintainer: "Thomas Gazagnaire <[email protected]>"
authors: ["Daniel Bünzli" "Thomas Gazagnaire" "Nathan Rebours"]
homepage: "https://github.com/ocamllabs/dune-release"
license: "ISC"
dev-repo: "git+https://github.com/ocamllabs/dune-release.git"
bug-reports: "https://github.com/ocamllabs/dune-release/issues"
doc: "https://ocamllabs.github.io/dune-release/"
build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.06.0"}
"dune" {>= "2.4.0"}
"curly"
"fmt"
"bos"
"cmdliner"
"re"
"opam-format" {< "2.1.0~beta"}
"opam-state" {< "2.1.0~beta"}
"opam-core" {< "2.1.0~beta"}
"rresult"
"logs"
"odoc"
"alcotest" {with-test}
"mdx" {with-test & >= "1.6.0"}
"yojson"
]
synopsis: "Release dune packages in opam"
description: """
`dune-release` is a tool to streamline the release of Dune packages in
[opam](https://opam.ocaml.org). It supports projects built
with [Dune](https://github.com/ocaml/dune) and hosted on
[GitHub](https://github.com).
"""