-
Notifications
You must be signed in to change notification settings - Fork 31
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 #81 from ocaml-multicore/generate-opam
Generate opam files automatically
- Loading branch information
Showing
13 changed files
with
121 additions
and
46 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,2 +1,2 @@ | ||
profile = default | ||
version = 0.25.1 | ||
version = 0.26.0 |
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,8 +1,31 @@ | ||
(lang dune 3.0) | ||
(lang dune 3.2) | ||
(name saturn) | ||
(generate_opam_files true) | ||
(source (github ocaml-multicore/saturn)) | ||
(license ISC) | ||
(authors "KC Sivaramakrishnan") | ||
(maintainers "Carine Morel" "KC Sivaramakrishnan" "Sudha Parimala") | ||
(documentation "https://ocaml-multicore.github.io/saturn/") | ||
(package | ||
(name saturn) | ||
(synopsis "Collection of parallelism-safe data structures for Multicore OCaml")) | ||
(synopsis "Collection of parallelism-safe data structures for Multicore OCaml") | ||
(depends | ||
(ocaml (>= 4.12)) | ||
(domain_shims (>= 0.1.0)) | ||
(saturn_lockfree (= :version)) | ||
(qcheck (and (>= 0.18.1) :with-test)) | ||
(qcheck-stm (and (>= 0.2) :with-test)) | ||
(qcheck-alcotest (and (>= 0.18.1) :with-test)) | ||
(yojson (and (>= 2.0.2) :with-test)) | ||
(dscheck (and (>= 0.1.0) :with-test)))) | ||
(package | ||
(name saturn_lockfree) | ||
(synopsis "Collection of lock-free data structures for Multicore OCaml")) | ||
(synopsis "Collection of lock-free data structures for Multicore OCaml") | ||
(depends | ||
(ocaml (>= 4.12)) | ||
(domain_shims (>= 0.1.0)) | ||
(qcheck (and (>= 0.18.1) :with-test)) | ||
(qcheck-stm (and (>= 0.2) :with-test)) | ||
(qcheck-alcotest (and (>= 0.18.1) :with-test)) | ||
(yojson (and (>= 2.0.2) :with-test)) | ||
(dscheck (and (>= 0.1.0) :with-test)))) |
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,24 +1,37 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
maintainer:"KC Sivaramakrishnan <[email protected]>" | ||
authors: ["KC Sivaramakrishnan <[email protected]>"] | ||
homepage: "https://github.com/ocaml-multicore/saturn" | ||
doc: "https://ocaml-multicore.github.io/saturn" | ||
synopsis: "Parallelism-safe data structures for multicore OCaml" | ||
synopsis: | ||
"Collection of parallelism-safe data structures for Multicore OCaml" | ||
maintainer: ["Carine Morel" "KC Sivaramakrishnan" "Sudha Parimala"] | ||
authors: ["KC Sivaramakrishnan"] | ||
license: "ISC" | ||
dev-repo: "git+https://github.com/ocaml-multicore/saturn.git" | ||
homepage: "https://github.com/ocaml-multicore/saturn" | ||
doc: "https://ocaml-multicore.github.io/saturn/" | ||
bug-reports: "https://github.com/ocaml-multicore/saturn/issues" | ||
tags: [] | ||
depends: [ | ||
"dune" {>= "3.2"} | ||
"ocaml" {>= "4.12"} | ||
"dune" {>= "3.0"} | ||
"domain_shims" {>= "0.1.0"} | ||
"qcheck" {with-test & >= "0.18.1"} | ||
"qcheck-stm" {with-test & >= "0.2"} | ||
"qcheck-alcotest" {with-test & >= "0.18.1"} | ||
"alcotest" {with-test & >= "1.6.0"} | ||
"yojson" {with-test &>= "2.0.2"} | ||
"dscheck" {with-test & >= "0.1.0"} | ||
"saturn_lockfree" {= version} | ||
"qcheck" {>= "0.18.1" & with-test} | ||
"qcheck-stm" {>= "0.2" & with-test} | ||
"qcheck-alcotest" {>= "0.18.1" & with-test} | ||
"yojson" {>= "2.0.2" & with-test} | ||
"dscheck" {>= "0.1.0" & with-test} | ||
"odoc" {with-doc} | ||
] | ||
available: arch != "x86_32" & arch != "arm32" & arch != "ppc64" | ||
depopts: [] | ||
build: ["dune" "build" "-p" name "-j" jobs] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/ocaml-multicore/saturn.git" |
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,24 +1,35 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
maintainer:"KC Sivaramakrishnan <[email protected]>" | ||
authors: ["KC Sivaramakrishnan <[email protected]>"] | ||
homepage: "https://github.com/ocaml-multicore/saturn" | ||
doc: "https://ocaml-multicore.github.io/saturn" | ||
synopsis: "Lock-free data structures for multicore OCaml" | ||
synopsis: "Collection of lock-free data structures for Multicore OCaml" | ||
maintainer: ["Carine Morel" "KC Sivaramakrishnan" "Sudha Parimala"] | ||
authors: ["KC Sivaramakrishnan"] | ||
license: "ISC" | ||
dev-repo: "git+https://github.com/ocaml-multicore/saturn.git" | ||
homepage: "https://github.com/ocaml-multicore/saturn" | ||
doc: "https://ocaml-multicore.github.io/saturn/" | ||
bug-reports: "https://github.com/ocaml-multicore/saturn/issues" | ||
tags: [] | ||
depends: [ | ||
"dune" {>= "3.2"} | ||
"ocaml" {>= "4.12"} | ||
"dune" {>= "3.0"} | ||
"domain_shims" {>= "0.1.0"} | ||
"qcheck" {with-test & >= "0.18.1"} | ||
"qcheck-stm" {with-test & >= "0.2"} | ||
"qcheck-alcotest" {with-test & >= "0.18.1"} | ||
"alcotest" {with-test & >= "1.6.0"} | ||
"yojson" {with-test &>= "2.0.2"} | ||
"dscheck" {with-test & >= "0.1.0"} | ||
"qcheck" {>= "0.18.1" & with-test} | ||
"qcheck-stm" {>= "0.2" & with-test} | ||
"qcheck-alcotest" {>= "0.18.1" & with-test} | ||
"yojson" {>= "2.0.2" & with-test} | ||
"dscheck" {>= "0.1.0" & with-test} | ||
"odoc" {with-doc} | ||
] | ||
available: arch != "x86_32" & arch != "arm32" & arch != "ppc64" | ||
depopts: [] | ||
build: ["dune" "build" "-p" name "-j" jobs] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/ocaml-multicore/saturn.git" |
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
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