dev-ml/deriving: fix build with ocaml 4.03
authorAlexis Ballier <aballier@gentoo.org>
Sun, 1 May 2016 15:16:29 +0000 (17:16 +0200)
committerAlexis Ballier <aballier@gentoo.org>
Tue, 3 May 2016 09:13:52 +0000 (11:13 +0200)
Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier <aballier@gentoo.org>
dev-ml/deriving/deriving-0.7.ebuild
dev-ml/deriving/files/oc43.patch [new file with mode: 0644]

index 9ce44589d7a78615dce785bd04b73ca687fc7fc8..a37c6ee105cccfa807f984ea32a4c857862f9ec7 100644 (file)
@@ -29,6 +29,7 @@ DEPEND="${RDEPEND}
 DOCS=( CHANGES README.md )
 oasis_configure_opts="--enable-tc"
 OASIS_SETUP_COMMAND="./setup.exe"
+PATCHES=( "${FILESDIR}/oc43.patch" )
 
 src_configure() {
        emake setup.exe
diff --git a/dev-ml/deriving/files/oc43.patch b/dev-ml/deriving/files/oc43.patch
new file mode 100644 (file)
index 0000000..0369343
--- /dev/null
@@ -0,0 +1,24 @@
+commit 926305bb6fc95494064e75ceafc6443b62d3773b
+Author: Vasilis Papavasileiou <git@vasilis.airpost.net>
+Date:   Tue Mar 29 15:42:38 2016 +0200
+
+    Fix DELETE_RULE for 4.03 (nonrec flag)
+
+diff --git a/syntax/std/pa_deriving_std.ml b/syntax/std/pa_deriving_std.ml
+index 1ec000c..dde8d9e 100644
+--- a/syntax/std/pa_deriving_std.ml
++++ b/syntax/std/pa_deriving_std.ml
+@@ -18,8 +18,13 @@ struct
+   open Camlp4.PreCast
+   include Syntax
++#if ocaml_version >= (4, 03)
++  DELETE_RULE Gram str_item: "type"; opt_nonrec; type_declaration END
++  DELETE_RULE Gram sig_item: "type"; opt_nonrec; type_declaration END
++#else
+   DELETE_RULE Gram str_item: "type"; type_declaration END
+   DELETE_RULE Gram sig_item: "type"; type_declaration END
++#endif
+   open Ast