this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #26616 from NathanReb/release-ppxlib-0.33.0-5.3preview

Release ppxlib.0.33.1~5.3preview

authored by

Raphaël Proust and committed by
GitHub
75006f8c 84c625d1

+63
+63
packages/ppxlib/ppxlib.0.33.1~5.3preview/opam
··· 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: ["opensource@janestreet.com"] 16 + authors: ["Jane Street Group, LLC <opensource@janestreet.com>"] 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" {>= "2.8"} 23 + "ocaml" {>= "4.04.1" & < "5.4.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 + flags: avoid-version 56 + available: opam-version >= "2.1.0" 57 + url { 58 + src: "https://github.com/ocaml-ppx/ppxlib/archive/ac7fcfc88d574609b62cc0a38e0de59d03cc96de.tar.gz" 59 + checksum: [ 60 + "sha256=d679f110b92ed12156556ee1d3779d11cef605c36f0bc417943e7996f0d2bbaf" 61 + "sha512=c34e704f19bcebbe5dbb764783f9e8b9bcb44e22388bbd4074f1f3e44faf9d1aa2d05040690512b3a8c120ecff54787107bd6912f4e5f2980a17e5357b1beeed" 62 + ] 63 + }