Skip to content

Commit da43429

Browse files
authored
Merge pull request #24412 from chetmurthy/release-pa_ppx_parsetree-initial_release
initial release of pa_ppx_parsetree
2 parents 8ee6bf8 + 7696300 commit da43429

File tree

2 files changed

+44
-1
lines changed
  • packages
    • pa_ppx_parsetree/pa_ppx_parsetree.0.01
    • pa_ppx_quotation2extension/pa_ppx_quotation2extension.0.01

2 files changed

+44
-1
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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"]

packages/pa_ppx_quotation2extension/pa_ppx_quotation2extension.0.01/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dev-repo: "git+https://github.com/camlp5/pa_ppx_quotation2extension.git"
1515
doc: "https://github.com/camlp5/pa_ppx_quotation2extension/doc"
1616

1717
depends: [
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" }

0 commit comments

Comments
 (0)