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