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" 24x-ci-accept-failures: [ "opensuse-tumbleweed" ] 25 26depends: [ 27 "ocaml" { >= "4.10.0" } 28 "cppo" { >= "1.6.9" } 29 "camlp5-buildscripts" { >= "0.02" } 30 "camlp5" { >= "8.03.00" } 31 "pa_ppx" { >= "0.15" } 32 "not-ocamlfind" { >= "0.10" } 33 "ounit" { >= "2.2.7" & with-test} 34 "fmt" 35 "bos" { >= "0.2.0" } 36] 37build: [ 38 [make "-j%{jobs}%" "sys"] 39 [make "test"] {with-test} 40] 41install: [make "install"] 42url { 43 src: "https://github.com/camlp5/pa_ppx_migrate/archive/refs/tags/0.13.tar.gz" 44 checksum: [ 45 "sha512=b9934129f5090c4504a57d83734f7664008b20ebdc81a89f334a944b1415a97ff3038164c2a5fa24a221edf8d8bbd7b95596f2211a78619d869997a1305b58bb" 46 ] 47}