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 4.11, with all the 12intermediate ASTs, and migrations forward as well as backward. 13 14""" 15opam-version: "2.0" 16maintainer: "Chet Murthy <chetsky@gmail.com>" 17authors: ["Chet Murthy"] 18homepage: "https://github.com/camlp5/pa_ppx_migrate" 19license: "BSD-3-Clause" 20bug-reports: "https://github.com/camlp5/pa_ppx_migrate/issues" 21dev-repo: "git+https://github.com/camlp5/pa_ppx_migrate.git" 22doc: "https://github.com/camlp5/pa_ppx_migrate/doc" 23 24depends: [ 25 "ocaml" { >= "4.10.0" } 26 "cppo" { >= "1.6.9" } 27 "camlp5-buildscripts" { >= "0.02" } 28 "camlp5" { >= "8.01.00" } 29 "pa_ppx" { >= "0.12" & < "0.16" } 30 "not-ocamlfind" { >= "0.10" } 31 "ounit" { >= "2.2.7" & with-test} 32 "fmt" 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/refs/tags/0.11.tar.gz" 42 checksum: [ 43 "sha512=e721138c8ac76b16eadf6b0c7ac52b6aaa3dc100ff897f5878b3dbfb7433de333a13eeb947b03bf6668cf59ad1aa42b8df695b567ed495240a1ffe04068944f0" 44 ] 45}