this repo has no description
1
2synopsis: "A PPX Rewriter for Migrating AST types (written using Camlp5)"
3description:
4"""
5This is a PPX Rewriter for generating "migrations" like those written
6by-hand (with some automated support) in "ocaml-migrate-parsetree".
7The goal here is that the input to the automated tool is the minimum
8possible, with no need for human massaging of output from the tool.
9
10There are two examples: a small one (in a unit-test) and a full set of
11migrations from Ocaml's AST 4.02 all the way up to 5.2.0, with all the
12intermediate ASTs, and migrations forward as well as backward.
13
14"""
15opam-version: "2.0"
16x-maintenance-intent: [ "(latest)" ]
17maintainer: "Chet Murthy <chetsky@gmail.com>"
18authors: ["Chet Murthy"]
19homepage: "https://github.com/camlp5/pa_ppx_migrate"
20license: "BSD-3-Clause"
21bug-reports: "https://github.com/camlp5/pa_ppx_migrate/issues"
22dev-repo: "git+https://github.com/camlp5/pa_ppx_migrate.git"
23doc: "https://github.com/camlp5/pa_ppx_migrate/doc"
24
25depends: [
26 "ocaml" { >= "4.10.0" }
27 "cppo" { >= "1.6.9" }
28 "camlp5-buildscripts" { >= "0.02" }
29 "camlp5" { >= "8.03.00" }
30 "pa_ppx" { >= "0.15" }
31 "not-ocamlfind" { >= "0.10" }
32 "ounit" { >= "2.2.7" & with-test}
33 "fmt"
34 "bos" { >= "0.2.0" }
35]
36conflicts: [
37 "pa_ppx_q_ast" { <= "0.11" }
38 "pa_ppx_parsetree" { <= "0.02" }
39]
40build: [
41 [make "sys"]
42 [make "test"] {with-test}
43]
44install: [make "install"]
45url {
46 src: "https://github.com/camlp5/pa_ppx_migrate/archive/refs/tags/0.12.tar.gz"
47 checksum: [
48 "sha512=16816504d4f2755f0872ac477f43861c047d21dd36f4518bac8507646f3f09f94195af4df51ab347aa226fb14f6026432c94742c6d3f599dc357815e2babddc2"
49 ]
50}