Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ppx_deriving 4.1.5 #10853

Merged
merged 1 commit into from
Nov 26, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
ppx_deriving 4.1.5
4.1.5 is a maintenance release to include support for OCaml 4.05 and
OCaml 4.06 in the ppx_deriving 4.1 branch, which does not contain the
driverization work that has been causing issues for some users.

  * Add support for OCaml 4.05.0 and 4.06.0 (ocaml-ppx/ppx_deriving#154, ocaml-ppx/ppx_deriving#155, ocaml-ppx/ppx_deriving#156, ocaml-ppx/ppx_deriving#159).
  * Consider { with_path = false } when printing record fields (ocaml-ppx/ppx_deriving#157).
  * Fix comparison order of fields in records (ocaml-ppx/ppx_deriving#136).
  * Silence an `unused rec flag` warning in generated code (ocaml-ppx/ppx_deriving#137).
  * Monomorphize comparison function for builtin types (ocaml-ppx/ppx_deriving#115)
  * Raise an error when `type nonrec` is encountered (ocaml-ppx/ppx_deriving#116).
  * Display an error message when dynamic package loading fails.
  * Add a `with_path` option to `@@deriving` to skip the module path
    in generated code (ocaml-ppx/ppx_deriving#120).
  • Loading branch information
gasche committed Nov 25, 2017
commit 15d259309a715e896c182bf1ef627d416cbe057c
5 changes: 5 additions & 0 deletions packages/ppx_deriving/ppx_deriving.4.1.5/descr
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Type-driven code generation for OCaml >=4.02

ppx_deriving provides common infrastructure for generating
code based on type definitions, and a set of useful plugins
for common tasks.
33 changes: 33 additions & 0 deletions packages/ppx_deriving/ppx_deriving.4.1.5/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
opam-version: "1.2"
maintainer: "whitequark <whitequark@whitequark.org>"
authors: [ "whitequark <whitequark@whitequark.org>" ]
license: "MIT"
homepage: "https://github.com/whitequark/ppx_deriving"
doc: "https://whitequark.github.io/ppx_deriving"
bug-reports: "https://github.com/whitequark/ppx_deriving/issues"
dev-repo: "https://github.com/whitequark/ppx_deriving.git"
tags: [ "syntax" ]
substs: [ "pkg/META" ]
build: [
# If there is no native dynlink, we can't use native builds
"ocaml" "pkg/build.ml" "native=%{ocaml-native-dynlink}%"
"native-dynlink=%{ocaml-native-dynlink}%"
]
build-test: [
"ocamlbuild" "-classic-display" "-use-ocamlfind"
"src_test/test_ppx_deriving.byte" "--"
]
build-doc: [
make "doc"
]
depends: [
"ocamlbuild" {build}
"ocamlfind" {build & >= "1.6.0"}
"cppo" {build}
"cppo_ocamlbuild" {build}
"ppx_tools" {>= "4.02.3"}
"result"
"ounit" {test}
]
available: [ opam-version >= "1.2"
& ocaml-version >= "4.02.1" ]
2 changes: 2 additions & 0 deletions packages/ppx_deriving/ppx_deriving.4.1.5/url
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
http: "https://github.com/whitequark/ppx_deriving/archive/v4.1.5.tar.gz"
checksum: "8112a61f00ae5c38bf3bbbfde3263a85"