Skip to content

Commit 2cd8e78

Browse files
authored
Merge pull request ocaml#28046 from valoran-M/master
[new release] arrakis 1.1.0 and 1.1.1
2 parents 1ac27c8 + 8debb21 commit 2cd8e78

File tree

2 files changed

+92
-0
lines changed
  • packages/arrakis

2 files changed

+92
-0
lines changed
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
opam-version: "2.0"
2+
synopsis: "A RISC-V simulator"
3+
description: """
4+
A RISC-V simulator with an integrated debugger.
5+
Support full RV32IM instruction set,
6+
along with pseudo instruction and several environmental calls."""
7+
8+
authors: ["Valeran Maytié" "Gurvan Debaussart"]
9+
license: "CeCILL-2.1"
10+
tags: [
11+
"RISC-V" "simulator" "emulation" "RV32IM" "education" "debugger" "debug"
12+
]
13+
homepage: "https://codeberg.org/Arrakis/arrakis"
14+
doc: "https://codeberg.org/Arrakis/arrakis/wiki"
15+
bug-reports: "https://codeberg.org/Arrakis/arrakis/issues"
16+
depends: [
17+
"dune" {>= "3.11"}
18+
"ocaml" {>= "4.14.0"}
19+
"menhir" {>= "20180528"}
20+
"odoc" {with-doc}
21+
]
22+
build: [
23+
["dune" "subst"] {dev}
24+
[
25+
"dune"
26+
"build"
27+
"-p"
28+
name
29+
"-j"
30+
jobs
31+
"@install"
32+
"@runtest" {with-test}
33+
"@doc" {with-doc}
34+
]
35+
]
36+
dev-repo: "git+https://codeberg.org/Arrakis/arrakis.git"
37+
38+
url {
39+
src:
40+
"https://codeberg.org/Arrakis/arrakis/archive/1.1.0.tar.gz"
41+
checksum: [
42+
"sha256=13e8ef39e556909185972eb12a377f45c2e42ecb94efc51d4ed5e64214f83d8a"
43+
"md5=d3cdd3b00ccc48a11449c4888d61fa0f"
44+
]
45+
}
46+
available: arch != "arm32" & arch != "x86_32"
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
opam-version: "2.0"
2+
synopsis: "A RISC-V simulator"
3+
description: """
4+
A RISC-V simulator with an integrated debugger.
5+
Support full RV32IM instruction set,
6+
along with pseudo instruction and several environmental calls."""
7+
8+
authors: ["Valeran Maytié" "Gurvan Debaussart"]
9+
license: "CeCILL-2.1"
10+
tags: [
11+
"RISC-V" "simulator" "emulation" "RV32IM" "education" "debugger" "debug"
12+
]
13+
homepage: "https://codeberg.org/Arrakis/arrakis"
14+
doc: "https://codeberg.org/Arrakis/arrakis/wiki"
15+
bug-reports: "https://codeberg.org/Arrakis/arrakis/issues"
16+
depends: [
17+
"dune" {>= "3.11"}
18+
"ocaml" {>= "4.14.0"}
19+
"menhir" {>= "20180528"}
20+
"odoc" {with-doc}
21+
]
22+
build: [
23+
["dune" "subst"] {dev}
24+
[
25+
"dune"
26+
"build"
27+
"-p"
28+
name
29+
"-j"
30+
jobs
31+
"@install"
32+
"@runtest" {with-test}
33+
"@doc" {with-doc}
34+
]
35+
]
36+
dev-repo: "git+https://codeberg.org/Arrakis/arrakis.git"
37+
38+
url {
39+
src:
40+
"https://codeberg.org/Arrakis/arrakis/archive/1.1.1.tar.gz"
41+
checksum: [
42+
"sha256=24a951696f6a54c818acaf76ca2f609dd508aaee824b3ba17624e6dec165091c"
43+
"md5=05ff3ea80ad7062f98adcf2e22e66559"
44+
]
45+
}
46+
available: arch != "arm32" & arch != "x86_32" & os-family != "windows"

0 commit comments

Comments
 (0)