-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Sora Morimoto <[email protected]>
- Loading branch information
Showing
35 changed files
with
221 additions
and
335 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
(documentation | ||
(package lwt) | ||
(mld_files :standard)) | ||
(mld_files :standard)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,8 @@ | |
"Shon Feder <[email protected]>") | ||
(depends | ||
(ocaml (>= 4.08)) | ||
(lwt (>= 5.3.0)))) | ||
(lwt (>= 5.3.0)) | ||
(bisect_ppx :with-test))) | ||
|
||
(package | ||
(name lwt_ppx) | ||
|
@@ -30,6 +31,7 @@ | |
(ocaml (>= 4.08)) | ||
(ppxlib (>= 0.16.0)) | ||
(ppx_let :with-test) | ||
(bisect_ppx :with-test) | ||
lwt)) | ||
|
||
(package | ||
|
@@ -39,7 +41,8 @@ | |
(ocaml (>= 4.08)) | ||
(cppo (and :build (>= 1.1.0))) | ||
(lwt (>= 3.0.0)) | ||
(react (>= 1.0.0)))) | ||
(react (>= 1.0.0)) | ||
(bisect_ppx :with-test))) | ||
|
||
(package | ||
(name lwt) | ||
|
@@ -58,6 +61,7 @@ synchronization primitives. Code can be run in parallel on an opt-in basis. | |
(cppo (and :build (>= 1.1.0))) | ||
(ocamlfind (and :dev (>= 1.7.3-1))) | ||
(odoc (and :with-doc (>= 2.3.0))) | ||
(bisect_ppx :with-test) | ||
dune-configurator | ||
ocplib-endian) | ||
(depopts base-threads base-unix conf-libev)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,9 @@ | ||
(* -*- tuareg -*- *) | ||
|
||
let preprocess = | ||
match Sys.getenv "BISECT_ENABLE" with | ||
| "yes" -> "(preprocess (pps bisect_ppx))" | ||
| _ -> "" | ||
| exception _ -> "" | ||
|
||
let () = Jbuild_plugin.V1.send @@ {| | ||
|
||
(library | ||
(public_name lwt) | ||
(synopsis "Monadic promises and concurrent I/O") | ||
(wrapped false) | ||
|} ^ preprocess ^ {| | ||
(flags (:standard -w +A-29))) | ||
(instrumentation | ||
(backend bisect_ppx))) | ||
|
||
(documentation | ||
(package lwt)) | ||
|
||
|} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,10 @@ | ||
(* -*- tuareg -*- *) | ||
|
||
let bisect_ppx = | ||
match Sys.getenv "BISECT_ENABLE" with | ||
| "yes" -> "bisect_ppx" | ||
| _ -> "" | ||
| exception _ -> "" | ||
|
||
let () = Jbuild_plugin.V1.send @@ {| | ||
|
||
(library | ||
(name ppx_lwt) | ||
(public_name lwt_ppx) | ||
(synopsis "Lwt PPX syntax extension") | ||
(modules ppx_lwt) | ||
(libraries ppxlib) | ||
(ppx_runtime_libraries lwt) | ||
(kind ppx_rewriter) | ||
(preprocess (pps ppxlib.metaquot|} ^ bisect_ppx ^ {|)) | ||
(flags (:standard -w +A-4))) | ||
|
||
|} | ||
(preprocess | ||
(pps ppxlib.metaquot)) | ||
(instrumentation | ||
(backend bisect_ppx))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,7 @@ | ||
(* -*- tuareg -*- *) | ||
|
||
let preprocess = | ||
match Sys.getenv "BISECT_ENABLE" with | ||
| "yes" -> "(preprocess (pps bisect_ppx))" | ||
| _ -> "" | ||
| exception _ -> "" | ||
|
||
let () = Jbuild_plugin.V1.send @@ {| | ||
|
||
(library | ||
(public_name lwt_react) | ||
(synopsis "Reactive programming helpers for Lwt") | ||
(wrapped false) | ||
(libraries lwt react) | ||
|} ^ preprocess ^ {| | ||
(flags (:standard -w +A))) | ||
|
||
|} | ||
(instrumentation | ||
(backend bisect_ppx))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,7 @@ | ||
(* -*- tuareg -*- *) | ||
|
||
let preprocess = | ||
match Sys.getenv "BISECT_ENABLE" with | ||
| "yes" -> "(preprocess (pps bisect_ppx))" | ||
| _ -> "" | ||
| exception _ -> "" | ||
|
||
let () = Jbuild_plugin.V1.send @@ {| | ||
|
||
(library | ||
(public_name lwt_retry) | ||
(synopsis "A utility for retrying Lwt computations") | ||
(wrapped false) | ||
(libraries lwt lwt.unix) | ||
|} ^ preprocess ^ {| | ||
(flags (:standard -w +A))) | ||
|
||
|} | ||
(instrumentation | ||
(backend bisect_ppx))) |
Oops, something went wrong.