Skip to content

Commit 92661d7

Browse files
authored
Merge pull request #27867 from NathanReb/release-ppxlib-0.37.0-5.4preview
Preview release of ppxlib.0.37.0 with 5.4 compat
2 parents 715f648 + aee86b4 commit 92661d7

File tree

1 file changed

+64
-0
lines changed
  • packages/ppxlib/ppxlib.0.37.0~5.4preview

1 file changed

+64
-0
lines changed
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
opam-version: "2.0"
2+
synopsis: "Standard infrastructure for ppx rewriters"
3+
description: """
4+
Ppxlib is the standard infrastructure for ppx rewriters
5+
and other programs that manipulate the in-memory representation of
6+
OCaml programs, a.k.a the "Parsetree".
7+
8+
It also comes bundled with two ppx rewriters that are commonly used to
9+
write tools that manipulate and/or generate Parsetree values;
10+
`ppxlib.metaquot` which allows to construct Parsetree values using the
11+
OCaml syntax directly and `ppxlib.traverse` which provides various
12+
ways of automatically traversing values of a given type, in particular
13+
allowing to inject a complex structured value into generated code.
14+
"""
15+
maintainer: ["[email protected]"]
16+
authors: ["Jane Street Group, LLC <[email protected]>"]
17+
license: "MIT"
18+
homepage: "https://github.com/ocaml-ppx/ppxlib"
19+
doc: "https://ocaml-ppx.github.io/ppxlib/"
20+
bug-reports: "https://github.com/ocaml-ppx/ppxlib/issues"
21+
depends: [
22+
"dune" {>= "3.8"}
23+
"ocaml" {>= "4.08.0" & < "5.5.0"}
24+
"ocaml-compiler-libs" {>= "v0.11.0"}
25+
"ppx_derivers" {>= "1.0"}
26+
"sexplib0" {>= "v0.12"}
27+
"sexplib0" {with-test & >= "v0.15"}
28+
"stdlib-shims"
29+
"ocamlfind" {with-test}
30+
"re" {with-test & >= "1.9.0"}
31+
"cinaps" {with-test & >= "v0.12.1"}
32+
"ocamlformat" {with-dev-setup & = "0.26.2"}
33+
"odoc" {with-doc}
34+
]
35+
conflicts: [
36+
"ocaml-migrate-parsetree" {< "2.0.0"}
37+
"ocaml-base-compiler" {= "5.1.0~alpha1"}
38+
"ocaml-variants" {= "5.1.0~alpha1+options"}
39+
]
40+
build: [
41+
["dune" "subst"] {dev}
42+
[
43+
"dune"
44+
"build"
45+
"-p"
46+
name
47+
"-j"
48+
jobs
49+
"@install"
50+
"@runtest" {with-test}
51+
"@doc" {with-doc}
52+
]
53+
]
54+
dev-repo: "git+https://github.com/ocaml-ppx/ppxlib.git"
55+
x-maintenance-intent: ["(latest)"]
56+
flags: avoid-version
57+
available: opam-version >= "2.1.0"
58+
url {
59+
src: "https://github.com/ocaml-ppx/ppxlib/archive/757f6c284b1fe748d5027eef3bbef924b6bbd7ce.tar.gz"
60+
checksum: [
61+
"sha256=89a98c95ddd0bfbac17b5a936f6811af7097be3258c482d5859b73e9de9b4552"
62+
"sha512=b19306473d867252d382e58e9b697531c5edccdc9283b5eaf72f524803c2fca2a58a5e8f25bee198b00de82cf8ef805b43f7488791c3ac5beb0ffba938ded826"
63+
]
64+
}

0 commit comments

Comments
 (0)