-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from tmcgilchrist/opam_package
Setup for opam packaging.
- Loading branch information
Showing
14 changed files
with
1,907 additions
and
643 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
(* OASIS_START *) | ||
(* DO NOT EDIT (digest: e50db38d140321f4b931ed21db6d1923) *) | ||
Authors of parallel | ||
Ivan Gotovchits <[email protected]> | ||
(* DO NOT EDIT (digest: ec50cd6052c5c7edabafe97758cc8e91) *) | ||
|
||
Authors of lwt_parallel: | ||
|
||
* Ivan Gotovchits <[email protected]> | ||
|
||
(* OASIS_STOP *) |
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,10 +1,15 @@ | ||
(* OASIS_START *) | ||
(* DO NOT EDIT (digest: bf5f04e07e3e3a11a911289dc6658d59) *) | ||
This is the README file for the parallel distribution. | ||
(* DO NOT EDIT (digest: 26ab0dc91868743ee758ecb45b268d43) *) | ||
|
||
Lwt-enabled parallel computing library | ||
lwt_parallel - Lwt-enabled parallel computing library | ||
===================================================== | ||
|
||
See the files INSTALL.txt for building and installation instructions. | ||
See the file [INSTALL.txt](INSTALL.txt) for building and installation | ||
instructions. | ||
|
||
Copyright and license | ||
--------------------- | ||
|
||
lwt_parallel is distributed under the terms of the MIT License. | ||
|
||
(* OASIS_STOP *) |
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,20 @@ | ||
OASISFormat: 0.3 | ||
Name: parallel | ||
Name: lwt_parallel | ||
Version: 0.1.0 | ||
Synopsis: Lwt-enabled parallel computing library | ||
Authors: Ivan Gotovchits <[email protected]> | ||
License: MIT | ||
Plugins: META (0.3), StdFiles (0.3), DevFiles (0.3) | ||
|
||
Library parallel | ||
Library lwt_parallel | ||
Path: lib | ||
BuildTools: ocamlbuild | ||
BuildDepends: lwt, lwt.unix, lwt.syntax | ||
Modules: Parallel | ||
|
||
Executable run_tests | ||
Path: lib_test | ||
Install: false | ||
BuildTools: ocamlbuild | ||
BuildDepends: parallel | ||
BuildDepends: lwt_parallel | ||
MainIs: run_tests.ml | ||
|
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,12 +1,12 @@ | ||
# OASIS_START | ||
# DO NOT EDIT (digest: 2b9450486012b10a7f4101103e4a7a9a) | ||
# DO NOT EDIT (digest: 1b2563c1be59f9bca84171de109fc59a) | ||
version = "0.1.0" | ||
description = "Lwt-enabled parallel computing library" | ||
requires = "lwt lwt.unix lwt.syntax fileutils" | ||
archive(byte) = "parallel.cma" | ||
archive(byte, plugin) = "parallel.cma" | ||
archive(native) = "parallel.cmxa" | ||
archive(native, plugin) = "parallel.cmxs" | ||
exists_if = "parallel.cma" | ||
requires = "lwt lwt.unix lwt.syntax" | ||
archive(byte) = "lwt_parallel.cma" | ||
archive(byte, plugin) = "lwt_parallel.cma" | ||
archive(native) = "lwt_parallel.cmxa" | ||
archive(native, plugin) = "lwt_parallel.cmxs" | ||
exists_if = "lwt_parallel.cma" | ||
# OASIS_STOP | ||
|
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# OASIS_START | ||
# DO NOT EDIT (digest: 98402eecfbcefc336954458a01752131) | ||
Parallel | ||
# OASIS_STOP |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# OASIS_START | ||
# DO NOT EDIT (digest: 98402eecfbcefc336954458a01752131) | ||
Parallel | ||
# OASIS_STOP |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# OASIS_START | ||
# DO NOT EDIT (digest: 98402eecfbcefc336954458a01752131) | ||
Parallel | ||
# OASIS_STOP |
Oops, something went wrong.