this repo has no description

initial release of pa_ppx_parsetree

Changed files
+43
packages
pa_ppx_parsetree
pa_ppx_parsetree.0.01
+43
packages/pa_ppx_parsetree/pa_ppx_parsetree.0.01/opam
···
+
synopsis: "A Camlp5-based Quasi-Quotation ppx rewriter for OCaml's AST "
+
description:
+
"""
+
Thsi package provides quasi-quotations (like ppx_metaquot)
+
for the OCaml AST, so you can write code that computes over
+
OCaml's AST, using human-readable surface syntax for
+
patterns and expressions.
+
+
It provides them based on the official OCaml parser, but
+
with anti-quotations at every point in the grammamr where
+
it's possible to have them.
+
"""
+
opam-version: "2.0"
+
maintainer: "Chet Murthy <chetsky@gmail.com>"
+
authors: ["Chet Murthy"]
+
homepage: "https://github.com/camlp5/pa_ppx_parsetree"
+
license: "BSD-3-Clause"
+
bug-reports: "https://github.com/camlp5/pa_ppx_parsetree/issues"
+
dev-repo: "git+https://github.com/camlp5/pa_ppx_parsetree.git"
+
doc: "https://github.com/camlp5/pa_ppx_parsetree/doc"
+
+
depends: [
+
"conf-perl"
+
"ocaml" { >= "4.10.0" }
+
"camlp5-buildscripts"
+
"camlp5" { >= "8.00.04" }
+
"pa_ppx" { >= "0.10" }
+
"pa_ppx_q_ast" { >= "0.10" }
+
"pa_ppx_quotation2extension"
+
"not-ocamlfind" { >= "0.09" }
+
"ounit" { >= "2.2.7" & with-test}
+
"re" { >= "1.11.0" }
+
"fmt"
+
"conf-bash"
+
"cppo"
+
"mdx"
+
]
+
build: [
+
[make "setup"]
+
[make "sys"]
+
[make "test"] {with-test}
+
]
+
install: [make "install"]