this repo has no description
1synopsis: "A Camlp5-based Quasi-Quotation ppx rewriter for OCaml's AST "
2description:
3"""
4This package provides quasi-quotations (like ppx_metaquot)
5for the OCaml AST, so you can write code that computes over
6OCaml's AST, using human-readable surface syntax for
7patterns and expressions.
8
9It provides them based on the official OCaml parser, but
10with anti-quotations at every point in the grammar where
11it's possible to have them.
12"""
13opam-version: "2.0"
14x-maintenance-intent: [ "(latest)" ]
15maintainer: "Chet Murthy <chetsky@gmail.com>"
16authors: ["Chet Murthy"]
17homepage: "https://github.com/camlp5/pa_ppx_parsetree"
18license: "BSD-3-Clause"
19bug-reports: "https://github.com/camlp5/pa_ppx_parsetree/issues"
20dev-repo: "git+https://github.com/camlp5/pa_ppx_parsetree.git"
21doc: "https://github.com/camlp5/pa_ppx_parsetree/doc"
22x-ci-accept-failures: [ "opensuse-tumbleweed" ]
23
24depends: [
25 "conf-perl"
26 "conf-diffutils" (* { >= "1.2" & with-test } *)
27 "ocaml" { >= "4.10.0" }
28 "camlp5-buildscripts" { >= "0.02" }
29 "camlp5" { >= "8.00.04" }
30 "pa_ppx" { >= "0.10" }
31 "pa_ppx_migrate" { >= "0.10" & < "0.13" }
32 "pa_ppx_q_ast" { >= "0.10" }
33 "pa_ppx_quotation2extension"
34 "not-ocamlfind" { >= "0.09" }
35 "ounit" { >= "2.2.7" & with-test}
36 "re" { >= "1.11.0" }
37 "fmt"
38 "conf-bash"
39 "cppo"
40 "mdx"{ >= "2.3.0" & with-test}
41]
42build: [
43 [make "tools"]
44 [make "setup"]
45 [make "sys"]
46 [make "test"] {with-test}
47]
48install: [make "install"]
49url {
50 src: "https://github.com/camlp5/pa_ppx_parsetree/archive/refs/tags/0.02.tar.gz"
51 checksum: [
52 "sha512=8ba0dcc0191c0e0c6fa8b492cd307d9aca29c6b63a43186ab4d24e46e320f8b8cde144ff0a86703556e691e7e28e10ea480d30aa170bb13aa7472691e753cf93"
53 ]
54}