this repo has no description
0
fork

Configure Feed

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

Merge pull request #25918 from NathanReb/release-ppx_deriving-6.0.2

[new release] ppx_deriving 6.0.2

authored by

Marcello Seri and committed by
GitHub
7ac1012b 015a0c60

+44 -5
+1 -1
packages/pa_ppx/pa_ppx.0.10/opam
··· 49 49 "ounit" 50 50 "sexplib" { with-test & >= "v0.14.0" } 51 51 "ppx_import" { with-test & >= "1.7.1" } 52 - "ppx_deriving" { with-test } 52 + "ppx_deriving" { with-test & < "6.0.2"} 53 53 "ppx_deriving_yojson" { with-test & >= "3.5.2" & < "3.8.0" } 54 54 "ppx_here" { with-test & >= "v0.13.0" } 55 55 "ppx_sexp_conv" { with-test & >= "v0.13.0" }
+1 -1
packages/pa_ppx/pa_ppx.0.11/opam
··· 48 48 "ounit" 49 49 "sexplib" { with-test & >= "v0.14.0" } 50 50 "ppx_import" { with-test & >= "1.7.1" } 51 - "ppx_deriving" { with-test } 51 + "ppx_deriving" { with-test & < "6.0.2"} 52 52 "ppx_deriving_yojson" { with-test & >= "3.5.2" & < "3.8.0" } 53 53 "ppx_here" { with-test & >= "v0.13.0" } 54 54 "ppx_sexp_conv" { with-test & >= "v0.13.0" }
+1 -1
packages/pa_ppx/pa_ppx.0.12/opam
··· 49 49 "ounit" 50 50 "sexplib" { with-test & >= "v0.14.0" } 51 51 "ppx_import" { with-test & >= "1.7.1" } 52 - "ppx_deriving" { with-test } 52 + "ppx_deriving" { with-test & < "6.0.2"} 53 53 "ppx_deriving_yojson" { with-test & >= "3.5.2" & < "3.8.0" } 54 54 "ppx_here" { with-test & >= "v0.13.0" } 55 55 "ppx_sexp_conv" { with-test & >= "v0.13.0" }
+1 -1
packages/pa_ppx/pa_ppx.0.13/opam
··· 50 50 "ounit" 51 51 "sexplib" { with-test & >= "v0.14.0" } 52 52 "ppx_import" { with-test & >= "1.7.1" } 53 - "ppx_deriving" { with-test } 53 + "ppx_deriving" { with-test & < "6.0.2"} 54 54 "ppx_deriving_yojson" { with-test & >= "3.5.2" & < "3.8.0" } 55 55 "ppx_here" { with-test & >= "v0.13.0" } 56 56 "ppx_sexp_conv" { with-test & >= "v0.13.0" }
+1 -1
packages/pa_ppx/pa_ppx.0.14/opam
··· 50 50 "ounit" 51 51 "sexplib" { with-test & >= "v0.14.0" } 52 52 "ppx_import" { with-test & >= "1.7.1" } 53 - "ppx_deriving" { with-test } 53 + "ppx_deriving" { with-test & < "6.0.2"} 54 54 "ppx_deriving_yojson" { with-test & >= "3.5.2" & < "3.8.0" } 55 55 "ppx_here" { with-test & >= "v0.13.0" } 56 56 "ppx_sexp_conv" { with-test & >= "v0.13.0" }
+39
packages/ppx_deriving/ppx_deriving.6.0.2/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "whitequark <whitequark@whitequark.org>" 3 + authors: [ "whitequark <whitequark@whitequark.org>" ] 4 + license: "MIT" 5 + homepage: "https://github.com/ocaml-ppx/ppx_deriving" 6 + doc: "https://ocaml-ppx.github.io/ppx_deriving/" 7 + bug-reports: "https://github.com/ocaml-ppx/ppx_deriving/issues" 8 + dev-repo: "git+https://github.com/ocaml-ppx/ppx_deriving.git" 9 + tags: [ "syntax" ] 10 + build: [ 11 + ["dune" "subst"] {dev} 12 + ["dune" "build" "-p" name "-j" jobs] 13 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 14 + ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc} 15 + ] 16 + depends: [ 17 + "ocaml" {>= "4.05.0"} 18 + "dune" {>= "1.6.3"} 19 + "cppo" {>= "1.1.0" & build} 20 + "ocamlfind" 21 + "ppx_derivers" 22 + "ppxlib" {>= "0.32.0"} 23 + "ounit2" {with-test} 24 + ] 25 + synopsis: "Type-driven code generation for OCaml" 26 + description: """ 27 + ppx_deriving provides common infrastructure for generating 28 + code based on type definitions, and a set of useful plugins 29 + for common tasks. 30 + """ 31 + url { 32 + src: 33 + "https://github.com/ocaml-ppx/ppx_deriving/releases/download/v6.0.2/ppx_deriving-6.0.2.tbz" 34 + checksum: [ 35 + "sha256=7abacfc5934a1442047e110dc9128c0b0c6cd1fef19ee3429ac8b26ed3632b94" 36 + "sha512=515e53d62aea4100bbbd8dc2421fc80ebe0976699dbd0e1786b672567fe9067ca8925731f2a72bca093bf759ee0d65a1a0caafeedbda28771bf0026425a8040b" 37 + ] 38 + } 39 + x-commit-hash: "32f7c31ecfcbca6d53f3655a00e8852f4751123e"