-
Notifications
You must be signed in to change notification settings - Fork 38
/
dune-release.opam
58 lines (58 loc) · 1.33 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
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)."""
maintainer: ["Nathan Rebours <[email protected]>"]
authors: [
"Daniel Bünzli"
"Thomas Gazagnaire"
"Nathan Rebours"
"Guillaume Petiot"
"Sonja Heinze"
]
license: "ISC"
homepage: "https://github.com/tarides/dune-release"
bug-reports: "https://github.com/tarides/dune-release/issues"
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "2.7"}
"dune" {>= "3.14" & with-test}
"curly" {>= "0.3.0"}
"fmt" {>= "0.8.7"}
"fpath" {>= "0.7.3"}
"bos" {>= "0.1.3"}
"cmdliner" {>= "1.1.0"}
"re" {>= "1.7.2"}
"astring"
"opam-file-format" {>= "2.1.2"}
"opam-format" {>= "2.1.0"}
"opam-state" {>= "2.1.0"}
"opam-core" {>= "2.1.0"}
"rresult" {>= "0.6.0"}
"logs"
"odoc"
"alcotest" {with-test}
"yojson" {>= "1.6"}
]
conflicts: [
"result" {< "1.5"}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/tarides/dune-release.git"