-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathocamlmig.opam
61 lines (61 loc) · 1.64 KB
/
ocamlmig.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
59
60
61
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "OCaml source code rewriting tool"
description:
"Ocamlmig is a command line tool to rewrite ocaml source code, especially to make updating to newer interfaces easier."
maintainer: ["Valentin Gatien-Baron <valentin.gatienbaron@gmail.com>"]
authors: ["Valentin Gatien-Baron <valentin.gatienbaron@gmail.com>"]
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
homepage: "https://github.com/v-gb/ocamlmig"
doc: "https://github.com/v-gb/ocamlmig/blob/main/README.md"
bug-reports: "https://github.com/v-gb/ocamlmig/issues"
depends: [
"ocaml" {>= "5.2" & < "5.3"}
"dune" {>= "3.15"}
"base"
"core"
"core_unix"
"csexp"
"ppx_partial"
"ocaml" {>= "4.08"}
"alcotest" {"1" = "0" & >= "1.3.0"}
"base" {>= "v0.12.0"}
"cmdliner" {>= "1.1.0"}
"dune"
"dune-build-info"
"either"
"fix"
"fpath" {>= "0.7.3"}
"menhir" {>= "20201216"}
"menhirLib" {>= "20201216"}
"menhirSdk" {>= "20201216"}
"ocaml-version" {>= "3.5.0"}
"ocamlformat-rpc-lib" {"1" = "0" & = version}
"ocp-indent" {>= "1.8.0" | "1" = "0" & >= "1.8.1"}
"stdio"
"uuseg" {>= "10.0.0"}
"uutf" {>= "1.0.1"}
"csexp" {>= "1.4.0"}
"astring"
"camlp-streams"
"re" {>= "1.10.3"}
"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/v-gb/ocamlmig.git"
# due to core_unix, but why do we need to restate it? Maybe they added windows to
# the opam CI without ensuring that existing packages work on it.
available: os != "win32"