diff options
author | Alexis Ballier <aballier@gentoo.org> | 2016-02-08 14:26:04 +0100 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2016-02-08 14:36:08 +0100 |
commit | 5f7953f5a8ae55454c9f5675d8e4776206e80211 (patch) | |
tree | a02c12b2f0804acbbd145e2b0c1afb10dfa277f5 /dev-ml/ocaml-uri/files | |
parent | ef39661d21b9a165e8ecaf6f6b3ecb72a85e4095 (diff) | |
download | gentoo-5f7953f5a8ae55454c9f5675d8e4776206e80211.tar.gz gentoo-5f7953f5a8ae55454c9f5675d8e4776206e80211.tar.xz |
dev-ml/ocaml-uri: port to pa_sexp_conv and avoid requiring old sexplib
Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier <aballier@gentoo.org>
Diffstat (limited to 'dev-ml/ocaml-uri/files')
-rw-r--r-- | dev-ml/ocaml-uri/files/sexpl.patch | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/dev-ml/ocaml-uri/files/sexpl.patch b/dev-ml/ocaml-uri/files/sexpl.patch new file mode 100644 index 00000000000..85008d11537 --- /dev/null +++ b/dev-ml/ocaml-uri/files/sexpl.patch @@ -0,0 +1,42 @@ +Index: ocaml-uri-1.9.1/_tags +=================================================================== +--- ocaml-uri-1.9.1.orig/_tags ++++ ocaml-uri-1.9.1/_tags +@@ -22,7 +22,7 @@ true: annot, bin_annot + "lib/services_full.cmxs": use_services_full + <lib/*.ml{,i,y}>: package(re.posix) + <lib/*.ml{,i,y}>: package(sexplib) +-<lib/*.ml{,i,y}>: package(sexplib.syntax) ++<lib/*.ml{,i,y}>: package(pa_sexp_conv.syntax) + <lib/*.ml{,i,y}>: package(stringext) + <lib/*.ml{,i,y}>: use_uri + # Library uri_top +@@ -32,13 +32,13 @@ true: annot, bin_annot + <lib_test/test_runner.{native,byte}>: package(oUnit) + <lib_test/test_runner.{native,byte}>: package(re.posix) + <lib_test/test_runner.{native,byte}>: package(sexplib) +-<lib_test/test_runner.{native,byte}>: package(sexplib.syntax) ++<lib_test/test_runner.{native,byte}>: package(pa_sexp_conv) + <lib_test/test_runner.{native,byte}>: package(stringext) + <lib_test/test_runner.{native,byte}>: use_uri + <lib_test/*.ml{,i,y}>: package(oUnit) + <lib_test/*.ml{,i,y}>: package(re.posix) + <lib_test/*.ml{,i,y}>: package(sexplib) +-<lib_test/*.ml{,i,y}>: package(sexplib.syntax) ++<lib_test/*.ml{,i,y}>: package(pa_sexp_conv) + <lib_test/*.ml{,i,y}>: package(stringext) + <lib_test/*.ml{,i,y}>: use_uri + <lib_test/test_runner.{native,byte}>: custom +Index: ocaml-uri-1.9.1/setup.ml +=================================================================== +--- ocaml-uri-1.9.1.orig/setup.ml ++++ ocaml-uri-1.9.1/setup.ml +@@ -6964,7 +6964,7 @@ let setup_t = + [ + FindlibPackage ("re.posix", None); + FindlibPackage ("stringext", None); +- FindlibPackage ("sexplib.syntax", None); ++ FindlibPackage ("pa_sexp_conv.syntax", None); + FindlibPackage ("sexplib", None) + ]; + bs_build_tools = [ExternalTool "ocamlbuild"]; |