Skip to content

Commit 4ba002a

Browse files
authored
Merge pull request ocaml#21761 from haesbaert/release-processor-v0.1
[new release] processor (0.1)
2 parents ef4f09e + 5e57822 commit 4ba002a

File tree

1 file changed

+52
-0
lines changed
  • packages/processor/processor.0.1

1 file changed

+52
-0
lines changed
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
opam-version: "2.0"
2+
synopsis: "Processor Topology & Affinity for ocaml"
3+
description:
4+
"Exposes processor, CPU Topology and lets you pin the runtime to a set of CPUs."
5+
maintainer: ["Christiano Haesbaert"]
6+
authors: ["Christiano Haesbaert"]
7+
license: "ISC"
8+
tags: [
9+
"processor"
10+
"multicore"
11+
"cpu"
12+
"thread"
13+
"core"
14+
"package"
15+
"socket"
16+
"affinity"
17+
"scheduler"
18+
"domain"
19+
]
20+
homepage: "https://github.com/haesbaert/ocaml-processor"
21+
doc: "https://haesbaert.github.io/ocaml-processor"
22+
bug-reports: "https://github.com/haesbaert/ocaml-processor/issues"
23+
depends: [
24+
"ocaml" {>= "4.08"}
25+
"dune" {>= "3.2"}
26+
"odoc" {with-doc}
27+
]
28+
available: arch = "x86_64" | arch = "arm64"
29+
build: [
30+
["dune" "subst"] {dev}
31+
[
32+
"dune"
33+
"build"
34+
"-p"
35+
name
36+
"-j"
37+
jobs
38+
"@install"
39+
"@runtest" {with-test}
40+
"@doc" {with-doc}
41+
]
42+
]
43+
dev-repo: "git+https://github.com/haesbaert/ocaml-processor.git"
44+
url {
45+
src:
46+
"https://github.com/haesbaert/ocaml-processor/releases/download/v0.1/processor-0.1.tbz"
47+
checksum: [
48+
"sha256=06d2a04f5eea36a450a258d5568ce490c162cbdc019d2843c3f415c894b1ab26"
49+
"sha512=9871cab5644fb2e215f66da45f6bc051bd2b7eae99b27e31748e44c7f0da3ed12a57f0e219a5e15b2728e288b81d5679ac0bd1def2b90ea17b54ec4c17fea490"
50+
]
51+
}
52+
x-commit-hash: "667b7d8471a792050538703c5411e244f41d77fc"

0 commit comments

Comments
 (0)