Skip to content

Commit 35979af

Browse files
committed
[new release] multicore-magic (2 packages) (2.3.0)
CHANGES: - Add `copy_as ~padded` for convenient optional padding (@polytypic) - Add `multicore-magic-dscheck` package and library to help testing with DScheck (@lyrm, review @polytypic)
1 parent c16c5a8 commit 35979af

File tree

2 files changed

+77
-0
lines changed
  • packages
    • multicore-magic-dscheck/multicore-magic-dscheck.2.3.0
    • multicore-magic/multicore-magic.2.3.0

2 files changed

+77
-0
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
opam-version: "2.0"
2+
synopsis:
3+
"An implementation of multicore-magic API using the atomic module of DScheck to make DScheck tests possible in libraries using multicore-magic"
4+
maintainer: ["Vesa Karvonen <[email protected]>"]
5+
authors: ["Vesa Karvonen <[email protected]>"]
6+
license: "ISC"
7+
homepage: "https://github.com/ocaml-multicore/multicore-magic"
8+
bug-reports: "https://github.com/ocaml-multicore/multicore-magic/issues"
9+
depends: [
10+
"dune" {>= "3.14"}
11+
"ocaml" {>= "4.12.0"}
12+
"dscheck" {>= "0.5.0"}
13+
"odoc" {with-doc}
14+
]
15+
build: [
16+
["dune" "subst"] {dev}
17+
[
18+
"dune"
19+
"build"
20+
"-p"
21+
name
22+
"-j"
23+
jobs
24+
"@install"
25+
"@runtest" {with-test}
26+
"@doc" {with-doc}
27+
]
28+
]
29+
dev-repo: "git+https://github.com/ocaml-multicore/multicore-magic.git"
30+
url {
31+
src:
32+
"https://github.com/ocaml-multicore/multicore-magic/releases/download/2.3.0/multicore-magic-2.3.0.tbz"
33+
checksum: [
34+
"sha256=af9d14a8b39dd83a13cf40845c7a493075f47edcbe98688029376dca4827ceee"
35+
"sha512=2c49e30484d2117fbbad5e3255aa82d7d0b0b457cde73a6be1e109afa8cfd012446b2c9f21279350607b0311357e06fbcb36871c4ebf232eec53d46985b885b4"
36+
]
37+
}
38+
x-commit-hash: "360c2e829c9addeca9ccaee1c71f4ad36bb14a79"
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
opam-version: "2.0"
2+
synopsis: "Low-level multicore utilities for OCaml"
3+
maintainer: ["Vesa Karvonen <[email protected]>"]
4+
authors: ["Vesa Karvonen <[email protected]>"]
5+
license: "ISC"
6+
homepage: "https://github.com/ocaml-multicore/multicore-magic"
7+
bug-reports: "https://github.com/ocaml-multicore/multicore-magic/issues"
8+
depends: [
9+
"dune" {>= "3.14"}
10+
"ocaml" {>= "4.12.0"}
11+
"domain_shims" {>= "0.1.0" & with-test}
12+
"alcotest" {>= "1.7.0" & with-test}
13+
"sherlodoc" {>= "0.2" & with-doc}
14+
"odoc" {>= "2.4.1" & with-doc}
15+
]
16+
build: [
17+
["dune" "subst"] {dev}
18+
[
19+
"dune"
20+
"build"
21+
"-p"
22+
name
23+
"-j"
24+
jobs
25+
"@install"
26+
"@runtest" {with-test}
27+
"@doc" {with-doc}
28+
]
29+
]
30+
dev-repo: "git+https://github.com/ocaml-multicore/multicore-magic.git"
31+
url {
32+
src:
33+
"https://github.com/ocaml-multicore/multicore-magic/releases/download/2.3.0/multicore-magic-2.3.0.tbz"
34+
checksum: [
35+
"sha256=af9d14a8b39dd83a13cf40845c7a493075f47edcbe98688029376dca4827ceee"
36+
"sha512=2c49e30484d2117fbbad5e3255aa82d7d0b0b457cde73a6be1e109afa8cfd012446b2c9f21279350607b0311357e06fbcb36871c4ebf232eec53d46985b885b4"
37+
]
38+
}
39+
x-commit-hash: "360c2e829c9addeca9ccaee1c71f4ad36bb14a79"

0 commit comments

Comments
 (0)