forked from ocaml/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[new release] sail (12 packages) (0.17.1)
CHANGES: Updated 0.17 release with bugfixes for: * Issue 362 rems-project/sail#362 Additionally includes patches for better ASL to Sail compatibility
- Loading branch information
Showing
12 changed files
with
634 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,69 @@ | ||
opam-version: "2.0" | ||
synopsis: | ||
"Sail is a language for describing the instruction semantics of processors" | ||
description: """ | ||
Sail is a language for describing the instruction-set | ||
architecture (ISA) semantics of processors. Sail aims to provide a | ||
engineer-friendly, vendor-pseudocode-like language for describing | ||
instruction semantics. It is essentially a first-order imperative | ||
language, but with lightweight dependent typing for numeric types and | ||
bitvector lengths, which are automatically checked using Z3. It has | ||
been used for several papers, available from | ||
http://www.cl.cam.ac.uk/~pes20/sail/. | ||
""" | ||
maintainer: ["Sail Devs <cl-sail-dev@lists.cam.ac.uk>"] | ||
authors: [ | ||
"Alasdair Armstrong" | ||
"Thomas Bauereiss" | ||
"Brian Campbell" | ||
"Shaked Flur" | ||
"Jonathan French" | ||
"Kathy Gray" | ||
"Robert Norton" | ||
"Christopher Pulte" | ||
"Peter Sewell" | ||
"Mark Wassell" | ||
] | ||
license: "BSD-2-Clause" | ||
homepage: "https://github.com/rems-project/sail" | ||
bug-reports: "https://github.com/rems-project/sail/issues" | ||
depends: [ | ||
"dune" {>= "3.0"} | ||
"dune-site" {>= "3.0.2"} | ||
"bisect_ppx" {dev & >= "2.5.0"} | ||
"menhir" {>= "20180523" & build} | ||
"ott" {>= "0.28" & build} | ||
"lem" {>= "2018-12-14"} | ||
"linksem" {>= "0.3"} | ||
"conf-gmp" | ||
"conf-zlib" | ||
"yojson" {>= "1.6.0"} | ||
"pprint" {>= "20220103"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"--promote-install-files=false" | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
["dune" "install" "-p" name "--create-install-files" name] | ||
] | ||
dev-repo: "git+https://github.com/rems-project/sail.git" | ||
url { | ||
src: | ||
"https://github.com/rems-project/sail/releases/download/0.17.1/sail-0.17.1.tbz" | ||
checksum: [ | ||
"sha256=11463fe0bb4a494dab408598d37e7a065ffab348753e3134e964edb56da896a2" | ||
"sha512=3ea18086992e07414d474bf3b604b6927d7dee313fb475e9bb1fdf4f7c0e10f7d4b0143c8e6670f90db335d3a8fcd507f777a9e3a98051be343e0d101fd8b9a4" | ||
] | ||
} | ||
x-commit-hash: "8217b279ef55b3c32e792b9683a75f2ce0cfad29" |
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 |
---|---|---|
@@ -0,0 +1,72 @@ | ||
opam-version: "2.0" | ||
synopsis: | ||
"Sail is a language for describing the instruction semantics of processors" | ||
description: """ | ||
Sail is a language for describing the instruction-set | ||
architecture (ISA) semantics of processors. Sail aims to provide a | ||
engineer-friendly, vendor-pseudocode-like language for describing | ||
instruction semantics. It is essentially a first-order imperative | ||
language, but with lightweight dependent typing for numeric types and | ||
bitvector lengths, which are automatically checked using Z3. It has | ||
been used for several papers, available from | ||
http://www.cl.cam.ac.uk/~pes20/sail/. | ||
""" | ||
maintainer: ["Sail Devs <cl-sail-dev@lists.cam.ac.uk>"] | ||
authors: [ | ||
"Alasdair Armstrong" | ||
"Thomas Bauereiss" | ||
"Brian Campbell" | ||
"Shaked Flur" | ||
"Jonathan French" | ||
"Kathy Gray" | ||
"Robert Norton" | ||
"Christopher Pulte" | ||
"Peter Sewell" | ||
"Mark Wassell" | ||
] | ||
license: "BSD-2-Clause" | ||
homepage: "https://github.com/rems-project/sail" | ||
bug-reports: "https://github.com/rems-project/sail/issues" | ||
depends: [ | ||
"dune" {>= "3.0"} | ||
"libsail" {= version} | ||
"sail_manifest" {= version & build} | ||
"sail_ocaml_backend" {= version & post} | ||
"sail_c_backend" {= version & post} | ||
"sail_smt_backend" {= version & post} | ||
"sail_sv_backend" {= version & post} | ||
"sail_lem_backend" {= version & post} | ||
"sail_coq_backend" {= version & post} | ||
"sail_latex_backend" {= version & post} | ||
"sail_doc_backend" {= version & post} | ||
"sail_output" {= version & post} | ||
"linenoise" {>= "1.1.0"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"--promote-install-files=false" | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
["dune" "install" "-p" name "--create-install-files" name] | ||
] | ||
dev-repo: "git+https://github.com/rems-project/sail.git" | ||
substs: [ "src/bin/manifest.ml" ] | ||
url { | ||
src: | ||
"https://github.com/rems-project/sail/releases/download/0.17.1/sail-0.17.1.tbz" | ||
checksum: [ | ||
"sha256=11463fe0bb4a494dab408598d37e7a065ffab348753e3134e964edb56da896a2" | ||
"sha512=3ea18086992e07414d474bf3b604b6927d7dee313fb475e9bb1fdf4f7c0e10f7d4b0143c8e6670f90db335d3a8fcd507f777a9e3a98051be343e0d101fd8b9a4" | ||
] | ||
} | ||
x-commit-hash: "8217b279ef55b3c32e792b9683a75f2ce0cfad29" |
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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
opam-version: "2.0" | ||
synopsis: "Sail to C translation" | ||
maintainer: ["Sail Devs <cl-sail-dev@lists.cam.ac.uk>"] | ||
authors: [ | ||
"Alasdair Armstrong" | ||
"Thomas Bauereiss" | ||
"Brian Campbell" | ||
"Shaked Flur" | ||
"Jonathan French" | ||
"Kathy Gray" | ||
"Robert Norton" | ||
"Christopher Pulte" | ||
"Peter Sewell" | ||
"Mark Wassell" | ||
] | ||
license: "BSD-2-Clause" | ||
homepage: "https://github.com/rems-project/sail" | ||
bug-reports: "https://github.com/rems-project/sail/issues" | ||
depends: [ | ||
"dune" {>= "3.0"} | ||
"libsail" {= version} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"--promote-install-files=false" | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
["dune" "install" "-p" name "--create-install-files" name] | ||
] | ||
dev-repo: "git+https://github.com/rems-project/sail.git" | ||
url { | ||
src: | ||
"https://github.com/rems-project/sail/releases/download/0.17.1/sail-0.17.1.tbz" | ||
checksum: [ | ||
"sha256=11463fe0bb4a494dab408598d37e7a065ffab348753e3134e964edb56da896a2" | ||
"sha512=3ea18086992e07414d474bf3b604b6927d7dee313fb475e9bb1fdf4f7c0e10f7d4b0143c8e6670f90db335d3a8fcd507f777a9e3a98051be343e0d101fd8b9a4" | ||
] | ||
} | ||
x-commit-hash: "8217b279ef55b3c32e792b9683a75f2ce0cfad29" |
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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
opam-version: "2.0" | ||
synopsis: "Sail to Coq translation" | ||
maintainer: ["Sail Devs <cl-sail-dev@lists.cam.ac.uk>"] | ||
authors: [ | ||
"Alasdair Armstrong" | ||
"Thomas Bauereiss" | ||
"Brian Campbell" | ||
"Shaked Flur" | ||
"Jonathan French" | ||
"Kathy Gray" | ||
"Robert Norton" | ||
"Christopher Pulte" | ||
"Peter Sewell" | ||
"Mark Wassell" | ||
] | ||
license: "BSD-2-Clause" | ||
homepage: "https://github.com/rems-project/sail" | ||
bug-reports: "https://github.com/rems-project/sail/issues" | ||
depends: [ | ||
"dune" {>= "3.0"} | ||
"libsail" {= version} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"--promote-install-files=false" | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
["dune" "install" "-p" name "--create-install-files" name] | ||
] | ||
dev-repo: "git+https://github.com/rems-project/sail.git" | ||
url { | ||
src: | ||
"https://github.com/rems-project/sail/releases/download/0.17.1/sail-0.17.1.tbz" | ||
checksum: [ | ||
"sha256=11463fe0bb4a494dab408598d37e7a065ffab348753e3134e964edb56da896a2" | ||
"sha512=3ea18086992e07414d474bf3b604b6927d7dee313fb475e9bb1fdf4f7c0e10f7d4b0143c8e6670f90db335d3a8fcd507f777a9e3a98051be343e0d101fd8b9a4" | ||
] | ||
} | ||
x-commit-hash: "8217b279ef55b3c32e792b9683a75f2ce0cfad29" |
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
opam-version: "2.0" | ||
synopsis: "Sail documentation generator" | ||
maintainer: ["Sail Devs <cl-sail-dev@lists.cam.ac.uk>"] | ||
authors: [ | ||
"Alasdair Armstrong" | ||
"Thomas Bauereiss" | ||
"Brian Campbell" | ||
"Shaked Flur" | ||
"Jonathan French" | ||
"Kathy Gray" | ||
"Robert Norton" | ||
"Christopher Pulte" | ||
"Peter Sewell" | ||
"Mark Wassell" | ||
] | ||
license: "BSD-2-Clause" | ||
homepage: "https://github.com/rems-project/sail" | ||
bug-reports: "https://github.com/rems-project/sail/issues" | ||
depends: [ | ||
"dune" {>= "3.0"} | ||
"libsail" {= version} | ||
"base64" {>= "3.1.0"} | ||
"omd" {>= "1.3.1" & < "1.4.0"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"--promote-install-files=false" | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
["dune" "install" "-p" name "--create-install-files" name] | ||
] | ||
dev-repo: "git+https://github.com/rems-project/sail.git" | ||
url { | ||
src: | ||
"https://github.com/rems-project/sail/releases/download/0.17.1/sail-0.17.1.tbz" | ||
checksum: [ | ||
"sha256=11463fe0bb4a494dab408598d37e7a065ffab348753e3134e964edb56da896a2" | ||
"sha512=3ea18086992e07414d474bf3b604b6927d7dee313fb475e9bb1fdf4f7c0e10f7d4b0143c8e6670f90db335d3a8fcd507f777a9e3a98051be343e0d101fd8b9a4" | ||
] | ||
} | ||
x-commit-hash: "8217b279ef55b3c32e792b9683a75f2ce0cfad29" |
50 changes: 50 additions & 0 deletions
50
packages/sail_latex_backend/sail_latex_backend.0.17.1/opam
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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
opam-version: "2.0" | ||
synopsis: "Sail to LaTeX formatting" | ||
maintainer: ["Sail Devs <cl-sail-dev@lists.cam.ac.uk>"] | ||
authors: [ | ||
"Alasdair Armstrong" | ||
"Thomas Bauereiss" | ||
"Brian Campbell" | ||
"Shaked Flur" | ||
"Jonathan French" | ||
"Kathy Gray" | ||
"Robert Norton" | ||
"Christopher Pulte" | ||
"Peter Sewell" | ||
"Mark Wassell" | ||
] | ||
license: "BSD-2-Clause" | ||
homepage: "https://github.com/rems-project/sail" | ||
bug-reports: "https://github.com/rems-project/sail/issues" | ||
depends: [ | ||
"dune" {>= "3.0"} | ||
"libsail" {= version} | ||
"omd" {>= "1.3.1" & < "1.4.0"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"--promote-install-files=false" | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
["dune" "install" "-p" name "--create-install-files" name] | ||
] | ||
dev-repo: "git+https://github.com/rems-project/sail.git" | ||
url { | ||
src: | ||
"https://github.com/rems-project/sail/releases/download/0.17.1/sail-0.17.1.tbz" | ||
checksum: [ | ||
"sha256=11463fe0bb4a494dab408598d37e7a065ffab348753e3134e964edb56da896a2" | ||
"sha512=3ea18086992e07414d474bf3b604b6927d7dee313fb475e9bb1fdf4f7c0e10f7d4b0143c8e6670f90db335d3a8fcd507f777a9e3a98051be343e0d101fd8b9a4" | ||
] | ||
} | ||
x-commit-hash: "8217b279ef55b3c32e792b9683a75f2ce0cfad29" |
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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
opam-version: "2.0" | ||
synopsis: "Sail to Lem translation" | ||
maintainer: ["Sail Devs <cl-sail-dev@lists.cam.ac.uk>"] | ||
authors: [ | ||
"Alasdair Armstrong" | ||
"Thomas Bauereiss" | ||
"Brian Campbell" | ||
"Shaked Flur" | ||
"Jonathan French" | ||
"Kathy Gray" | ||
"Robert Norton" | ||
"Christopher Pulte" | ||
"Peter Sewell" | ||
"Mark Wassell" | ||
] | ||
license: "BSD-2-Clause" | ||
homepage: "https://github.com/rems-project/sail" | ||
bug-reports: "https://github.com/rems-project/sail/issues" | ||
depends: [ | ||
"dune" {>= "3.0"} | ||
"libsail" {= version} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"--promote-install-files=false" | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
["dune" "install" "-p" name "--create-install-files" name] | ||
] | ||
dev-repo: "git+https://github.com/rems-project/sail.git" | ||
url { | ||
src: | ||
"https://github.com/rems-project/sail/releases/download/0.17.1/sail-0.17.1.tbz" | ||
checksum: [ | ||
"sha256=11463fe0bb4a494dab408598d37e7a065ffab348753e3134e964edb56da896a2" | ||
"sha512=3ea18086992e07414d474bf3b604b6927d7dee313fb475e9bb1fdf4f7c0e10f7d4b0143c8e6670f90db335d3a8fcd507f777a9e3a98051be343e0d101fd8b9a4" | ||
] | ||
} | ||
x-commit-hash: "8217b279ef55b3c32e792b9683a75f2ce0cfad29" |
Oops, something went wrong.