···11+synopsis: "A PPX Rewriter for Migrating AST types (written using Camlp5)"
22+description:
33+"""
44+This is a PPX Rewriter for generating "migrations" like those written
55+by-hand (with some automated support) in "ocaml-migrate-parsetree".
66+The goal here is that the input to the automated tool is the minimum
77+possible, with no need for human massaging of output from the tool.
88+99+There are two examples: a small one (in a unit-test) and a full set of
1010+migrations from Ocaml's AST 4.02 all the way up to 4.11, with all the
1111+intermediate ASTs, and migrations forward as well as backward.
1212+1313+"""
1414+opam-version: "2.0"
1515+maintainer: "Chet Murthy <chetsky@gmail.com>"
1616+authors: ["Chet Murthy"]
1717+homepage: "https://github.com/camlp5/pa_ppx_migrate"
1818+license: "BSD-3-Clause"
1919+bug-reports: "https://github.com/camlp5/pa_ppx_migrate/issues"
2020+dev-repo: "git+https://github.com/camlp5/pa_ppx_migrate.git"
2121+doc: "https://github.com/camlp5/pa_ppx_migrate/doc"
2222+2323+depends: [
2424+ "ocaml" { >= "4.10.0" & < "4.14.0" }
2525+ "conf-perl"
2626+ "conf-perl-ipc-system-simple"
2727+ "conf-perl-string-shellquote"
2828+ "camlp5" { >= "8.00" }
2929+ "pa_ppx" { >= "0.08" }
3030+ "not-ocamlfind" { >= "0.01" }
3131+ "pcre" { >= "7.4.3" }
3232+ "ounit" {with-test}
3333+ "bos" { >= "0.2.0" }
3434+]
3535+build: [
3636+ [make "sys"]
3737+ [make "test"] {with-test}
3838+]
3939+install: [make "install"]
4040+url {
4141+ src: "https://github.com/camlp5/pa_ppx_migrate/archive/0.08.tar.gz"
4242+ checksum: [
4343+ "sha512=ade97571b1c6160579b9b9d29fcc85d1739bfaf6ca20b962780bac0fbd06b6c151f9abc4e0ebc08dc338e981e4718275f08169d0d4256fa27773d1a748eb3341"
4444+ ]
4545+}