-
Notifications
You must be signed in to change notification settings - Fork 30
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 #105 from MisterDA/dune-opam-fixes
Dune, opam, and GitHub Actions fixes
- Loading branch information
Showing
6 changed files
with
47 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,34 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
maintainer: "KC Sivaramakrishnan <kc@kcsrk.info>" | ||
synopsis: "Parallel Structures over Domains for Multicore OCaml" | ||
maintainer: ["KC Sivaramakrishnan <kc@kcsrk.info>"] | ||
authors: ["KC Sivaramakrishnan <kc@kcsrk.info>"] | ||
license: "ISC" | ||
homepage: "https://github.com/ocaml-multicore/domainslib" | ||
doc: "https://kayceesrk.github.io/domainslib/doc" | ||
synopsis: "Parallel Structures over Domains for Multicore OCaml" | ||
license: "ISC" | ||
dev-repo: "git+https://github.com/ocaml-multicore/domainslib.git" | ||
bug-reports: "https://github.com/ocaml-multicore/domainslib/issues" | ||
tags: [] | ||
depends: [ | ||
"ocaml" {>= "5.00"} | ||
"dune" {>= "3.0"} | ||
"lockfree" { >= "0.2.0"} | ||
"mirage-clock-unix" {with-test} | ||
"ocaml" {>= "5.0"} | ||
"lockfree" {>= "0.2.0"} | ||
"mirage-clock-unix" {with-test & >= "4.2.0"} | ||
"qcheck-core" {with-test & >= "0.20"} | ||
"qcheck-multicoretests-util" {with-test & >= "0.1"} | ||
"qcheck-stm" {with-test & >= "0.1"} | ||
"odoc" {with-doc} | ||
] | ||
depopts: [] | ||
build: [ | ||
"dune" "build" "-p" name | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/ocaml-multicore/domainslib.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,2 +1,21 @@ | ||
(lang dune 1.8) | ||
(lang dune 3.0) | ||
(name domainslib) | ||
(formatting disabled) | ||
(generate_opam_files true) | ||
|
||
(source (github ocaml-multicore/domainslib)) | ||
(authors "KC Sivaramakrishnan <kc@kcsrk.info>") | ||
(maintainers "KC Sivaramakrishnan <kc@kcsrk.info>") | ||
(documentation "https://kayceesrk.github.io/domainslib/doc") | ||
(license "ISC") | ||
|
||
(package | ||
(name domainslib) | ||
(synopsis "Parallel Structures over Domains for Multicore OCaml") | ||
(depends | ||
(ocaml (>= "5.0")) | ||
(lockfree (>= "0.2.0")) | ||
(mirage-clock-unix (and :with-test (>= "4.2.0"))) | ||
(qcheck-core (and :with-test (>= "0.20"))) | ||
(qcheck-multicoretests-util (and :with-test (>= "0.1"))) | ||
(qcheck-stm (and :with-test (>= "0.1"))))) |
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