···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" & < "5.01.0" }
2525+ "conf-perl"
2626+ "conf-perl-ipc-system-simple"
2727+ "conf-perl-string-shellquote"
2828+ "camlp5" { >= "8.00.04" }
2929+ "pa_ppx" { >= "0.09" }
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/refs/tags/0.09.tar.gz"
4242+ checksum: [
4343+ "sha512=7bc7e62ee293303dbec180890edd65cfc1b67ae3670340c483388a70d538136217af8f2f1cef4c0d4f26479938b3bafa9ae26c18503ff946217bd11b4cc26326"
4444+ ]
4545+}