File tree Expand file tree Collapse file tree 2 files changed +44
-1
lines changed
pa_ppx_parsetree/pa_ppx_parsetree.0.01
pa_ppx_quotation2extension/pa_ppx_quotation2extension.0.01 Expand file tree Collapse file tree 2 files changed +44
-1
lines changed Original file line number Diff line number Diff line change 1+ synopsis: "A Camlp5-based Quasi-Quotation ppx rewriter for OCaml's AST "
2+ description:
3+ """
4+ This package provides quasi-quotations (like ppx_metaquot)
5+ for the OCaml AST, so you can write code that computes over
6+ OCaml's AST, using human-readable surface syntax for
7+ patterns and expressions.
8+
9+ It provides them based on the official OCaml parser, but
10+ with anti-quotations at every point in the grammamr where
11+ it's possible to have them.
12+ """
13+ opam-version: "2.0"
14+ maintainer: "Chet Murthy <
[email protected] >"
15+ authors: ["Chet Murthy"]
16+ homepage: "https://github.com/camlp5/pa_ppx_parsetree"
17+ license: "BSD-3-Clause"
18+ bug-reports: "https://github.com/camlp5/pa_ppx_parsetree/issues"
19+ dev-repo: "git+https://github.com/camlp5/pa_ppx_parsetree.git"
20+ doc: "https://github.com/camlp5/pa_ppx_parsetree/doc"
21+
22+ depends: [
23+ "conf-perl"
24+ "ocaml" { >= "4.10.0" }
25+ "camlp5-buildscripts"
26+ "camlp5" { >= "8.00.04" }
27+ "pa_ppx" { >= "0.10" }
28+ "pa_ppx_q_ast" { >= "0.10" }
29+ "pa_ppx_quotation2extension"
30+ "not-ocamlfind" { >= "0.09" }
31+ "ounit" { >= "2.2.7" & with-test}
32+ "re" { >= "1.11.0" }
33+ "fmt"
34+ "conf-bash"
35+ "cppo"
36+ "mdx"
37+ ]
38+ build: [
39+ [make "setup"]
40+ [make "sys"]
41+ [make "test"] {with-test}
42+ ]
43+ install: [make "install"]
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ dev-repo: "git+https://github.com/camlp5/pa_ppx_quotation2extension.git"
1515doc: "https://github.com/camlp5/pa_ppx_quotation2extension/doc"
1616
1717depends: [
18- "ocaml" { >= "4.10.0" & < "5.01.0" }
18+ "ocaml" { >= "4.10.0" }
1919 "camlp5-buildscripts" { >= "0.02" & < "0.03" }
2020 "camlp5" { >= "8.01.00" }
2121 "pa_ppx" { >= "0.12" }
You can’t perform that action at this time.
0 commit comments