|
1 | 1 | open B0_kit.V000 |
2 | | -open B00_std |
3 | 2 |
|
4 | 3 | (* OCaml library names *) |
5 | 4 |
|
@@ -42,26 +41,26 @@ let breakout = |
42 | 41 |
|
43 | 42 | let default = |
44 | 43 | let meta = |
45 | | - let open B0_meta in |
46 | | - empty |
47 | | - |> tag B0_opam.tag |
48 | | - |> add authors ["The react programmers"] |
49 | | - |> add maintainers ["Daniel Bünzli <daniel.buenzl i@erratique.ch>"] |
50 | | - |> add homepage "https://erratique.ch/software/react" |
51 | | - |> add online_doc "https://erratique.ch/software/react/doc/" |
52 | | - |> add licenses ["ISC"] |
53 | | - |> add repo "git+https://erratique.ch/repos/react.git" |
54 | | - |> add issues "https://github.com/dbuenzli/react/issues" |
55 | | - |> add description_tags |
| 44 | + B0_meta.empty |
| 45 | + |> B0_meta.(add authors) ["The react programmers"] |
| 46 | + |> B0_meta.(add maintainers) |
| 47 | + ["Daniel Bünzli <daniel.buenzl i@erratique.ch>"] |
| 48 | + |> B0_meta.(add homepage) "https://erratique.ch/software/react" |
| 49 | + |> B0_meta.(add online_doc) "https://erratique.ch/software/react/doc/" |
| 50 | + |> B0_meta.(add licenses) ["ISC"] |
| 51 | + |> B0_meta.(add repo) "git+https://erratique.ch/repos/react.git" |
| 52 | + |> B0_meta.(add issues) "https://github.com/dbuenzli/react/issues" |
| 53 | + |> B0_meta.(add description_tags) |
56 | 54 | ["reactive"; "declarative"; "signal"; "event"; "frp"; "org:erratique"] |
57 | | - |> add B0_opam.Meta.depends |
| 55 | + |> B0_meta.tag B0_opam.tag |
| 56 | + |> B0_meta.add B0_opam.depends |
58 | 57 | [ "ocaml", {|>= "4.08.0"|}; |
59 | 58 | "ocamlfind", {|build|}; |
60 | 59 | "ocamlbuild", {|build|}; |
61 | 60 | "topkg", {|build & >= "1.0.3"|}; |
62 | 61 | ] |
63 | | - |> add B0_opam.Meta.build |
| 62 | + |> B0_meta.add B0_opam.build |
64 | 63 | {|[["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"]]|} |
65 | 64 | in |
66 | | - B0_pack.v "default" ~doc:"react package" ~meta ~locked:true @@ |
| 65 | + B0_pack.make "default" ~doc:"react package" ~meta ~locked:true @@ |
67 | 66 | B0_unit.list () |
0 commit comments