-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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 #13748 from avsm/release-cstruct-4.0.0
[new release] cstruct-async, ppx_cstruct, cstruct, cstruct-unix, cstruct-sexp and cstruct-lwt (4.0.0)
- Loading branch information
Showing
6 changed files
with
207 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,33 @@ | ||
opam-version: "2.0" | ||
maintainer: "anil@recoil.org" | ||
authors: ["Anil Madhavapeddy" "Richard Mortier" "Thomas Gazagnaire" | ||
"Pierre Chambart" "David Kaloper" "Jeremy Yallop" "David Scott" | ||
"Mindy Preston" "Thomas Leonard" "Etienne Millon" ] | ||
homepage: "https://github.com/mirage/ocaml-cstruct" | ||
license: "ISC" | ||
dev-repo: "git+https://github.com/mirage/ocaml-cstruct.git" | ||
bug-reports: "https://github.com/mirage/ocaml-cstruct/issues" | ||
tags: [ "org:mirage" "org:ocamllabs" ] | ||
doc: "https://mirage.github.io/ocaml-cstruct/" | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
["dune" "build" "-p" name "-j" jobs] | ||
] | ||
depends: [ | ||
"ocaml" {>= "4.03.0"} | ||
"dune" {build & >= "1.0"} | ||
"async_kernel" {>= "v0.9.0" & < "v0.13"} | ||
"async_unix" {>= "v0.9.0" & < "v0.13"} | ||
"core_kernel" {>= "v0.9.0" & < "v0.13"} | ||
"cstruct" {=version} | ||
] | ||
synopsis: "Access C-like structures directly from OCaml" | ||
description: """ | ||
Cstruct is a library and syntax extension to make it easier to access C-like | ||
structures directly from OCaml. It supports both reading and writing to these | ||
structures, and they are accessed via the `Bigarray` module.""" | ||
url { | ||
src: | ||
"https://github.com/mirage/ocaml-cstruct/releases/download/v4.0.0/cstruct-v4.0.0.tbz" | ||
checksum: "md5=e01a2036d1fb08d1d8e47d4f3e122bf0" | ||
} |
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,32 @@ | ||
opam-version: "2.0" | ||
maintainer: "anil@recoil.org" | ||
authors: ["Anil Madhavapeddy" "Richard Mortier" "Thomas Gazagnaire" | ||
"Pierre Chambart" "David Kaloper" "Jeremy Yallop" "David Scott" | ||
"Mindy Preston" "Thomas Leonard" "Etienne Millon" ] | ||
homepage: "https://github.com/mirage/ocaml-cstruct" | ||
license: "ISC" | ||
dev-repo: "git+https://github.com/mirage/ocaml-cstruct.git" | ||
bug-reports: "https://github.com/mirage/ocaml-cstruct/issues" | ||
doc: "https://mirage.github.io/ocaml-cstruct/" | ||
tags: [ "org:mirage" "org:ocamllabs" ] | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
["dune" "build" "-p" name "-j" jobs] | ||
] | ||
depends: [ | ||
"ocaml" {>= "4.03.0"} | ||
"base-unix" | ||
"lwt" | ||
"cstruct" {=version} | ||
"dune" {build & >= "1.0"} | ||
] | ||
synopsis: "Access C-like structures directly from OCaml" | ||
description: """ | ||
Cstruct is a library and syntax extension to make it easier to access C-like | ||
structures directly from OCaml. It supports both reading and writing to these | ||
structures, and they are accessed via the `Bigarray` module.""" | ||
url { | ||
src: | ||
"https://github.com/mirage/ocaml-cstruct/releases/download/v4.0.0/cstruct-v4.0.0.tbz" | ||
checksum: "md5=e01a2036d1fb08d1d8e47d4f3e122bf0" | ||
} |
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,36 @@ | ||
opam-version: "2.0" | ||
maintainer: "anil@recoil.org" | ||
authors: ["Anil Madhavapeddy" "Richard Mortier" "Thomas Gazagnaire" | ||
"Pierre Chambart" "David Kaloper" "Jeremy Yallop" "David Scott" | ||
"Mindy Preston" "Thomas Leonard" "Anton Kochkov" "Etienne Millon" ] | ||
homepage: "https://github.com/mirage/ocaml-cstruct" | ||
license: "ISC" | ||
dev-repo: "git+https://github.com/mirage/ocaml-cstruct.git" | ||
bug-reports: "https://github.com/mirage/ocaml-cstruct/issues" | ||
doc: "https://mirage.github.io/ocaml-cstruct/" | ||
|
||
tags: [ "org:mirage" "org:ocamllabs" ] | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
depends: [ | ||
"ocaml" {>= "4.03.0"} | ||
"dune" {build & >= "1.0"} | ||
"sexplib" {< "v0.13"} | ||
"cstruct" {>= "3.6.0"} | ||
"alcotest" {with-test} | ||
] | ||
synopsis: "S-expression serialisers for C-like structures" | ||
description: """ | ||
Cstruct is a library and syntax extension to make it easier to access C-like | ||
structures directly from OCaml. It supports both reading and writing to these | ||
structures, and they are accessed via the `Bigarray` module. | ||
|
||
This library provides Sexplib serialisers for the Cstruct.t values.""" | ||
url { | ||
src: | ||
"https://github.com/mirage/ocaml-cstruct/releases/download/v4.0.0/cstruct-v4.0.0.tbz" | ||
checksum: "md5=e01a2036d1fb08d1d8e47d4f3e122bf0" | ||
} |
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,34 @@ | ||
opam-version: "2.0" | ||
maintainer: "anil@recoil.org" | ||
authors: ["Anil Madhavapeddy" "Richard Mortier" "Thomas Gazagnaire" | ||
"Pierre Chambart" "David Kaloper" "Jeremy Yallop" "David Scott" | ||
"Mindy Preston" "Thomas Leonard" "Etienne Millon" ] | ||
homepage: "https://github.com/mirage/ocaml-cstruct" | ||
license: "ISC" | ||
dev-repo: "git+https://github.com/mirage/ocaml-cstruct.git" | ||
bug-reports: "https://github.com/mirage/ocaml-cstruct/issues" | ||
doc: "https://mirage.github.io/ocaml-cstruct/" | ||
|
||
tags: [ "org:mirage" "org:ocamllabs" ] | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
["dune" "build" "-p" name "-j" jobs] | ||
] | ||
depends: [ | ||
"ocaml" {>= "4.06.0"} | ||
"dune" {build & >= "1.0"} | ||
"base-unix" | ||
"cstruct" {=version} | ||
] | ||
synopsis: "Access C-like structures directly from OCaml" | ||
|
||
description: """ | ||
Cstruct is a library and syntax extension to make it easier to access C-like | ||
structures directly from OCaml. It supports both reading and writing to these | ||
structures, and they are accessed via the `Bigarray` module. | ||
""" | ||
url { | ||
src: | ||
"https://github.com/mirage/ocaml-cstruct/releases/download/v4.0.0/cstruct-v4.0.0.tbz" | ||
checksum: "md5=e01a2036d1fb08d1d8e47d4f3e122bf0" | ||
} |
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,32 @@ | ||
opam-version: "2.0" | ||
maintainer: "anil@recoil.org" | ||
authors: ["Anil Madhavapeddy" "Richard Mortier" "Thomas Gazagnaire" | ||
"Pierre Chambart" "David Kaloper" "Jeremy Yallop" "David Scott" | ||
"Mindy Preston" "Thomas Leonard" "Anton Kochkov" "Etienne Millon" ] | ||
homepage: "https://github.com/mirage/ocaml-cstruct" | ||
license: "ISC" | ||
dev-repo: "git+https://github.com/mirage/ocaml-cstruct.git" | ||
bug-reports: "https://github.com/mirage/ocaml-cstruct/issues" | ||
doc: "https://mirage.github.io/ocaml-cstruct/" | ||
|
||
tags: [ "org:mirage" "org:ocamllabs" ] | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
depends: [ | ||
"ocaml" {>= "4.03.0"} | ||
"dune" {build & >= "1.0"} | ||
"alcotest" {with-test} | ||
] | ||
synopsis: "Access C-like structures directly from OCaml" | ||
description: """ | ||
Cstruct is a library and syntax extension to make it easier to access C-like | ||
structures directly from OCaml. It supports both reading and writing to these | ||
structures, and they are accessed via the `Bigarray` module.""" | ||
url { | ||
src: | ||
"https://github.com/mirage/ocaml-cstruct/releases/download/v4.0.0/cstruct-v4.0.0.tbz" | ||
checksum: "md5=e01a2036d1fb08d1d8e47d4f3e122bf0" | ||
} |
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,40 @@ | ||
opam-version: "2.0" | ||
maintainer: "anil@recoil.org" | ||
authors: ["Anil Madhavapeddy" "Richard Mortier" "Thomas Gazagnaire" | ||
"Pierre Chambart" "David Kaloper" "Jeremy Yallop" "David Scott" | ||
"Mindy Preston" "Thomas Leonard" "Etienne Millon" ] | ||
homepage: "https://github.com/mirage/ocaml-cstruct" | ||
license: "ISC" | ||
dev-repo: "git+https://github.com/mirage/ocaml-cstruct.git" | ||
bug-reports: "https://github.com/mirage/ocaml-cstruct/issues" | ||
doc: "https://mirage.github.io/ocaml-cstruct/" | ||
|
||
tags: [ "org:mirage" "org:ocamllabs" ] | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
depends: [ | ||
"ocaml" {>= "4.03.0"} | ||
"dune" {build & >= "1.0"} | ||
"cstruct" {=version} | ||
"ounit" {with-test} | ||
"ppx_tools_versioned" {>= "5.0.1"} | ||
"ocaml-migrate-parsetree" | ||
"ppx_driver" {with-test & >= "v0.9.0"} | ||
"ppx_sexp_conv" {with-test & < "v0.12"} | ||
"sexplib" {< "v0.12"} | ||
"cstruct-sexp" {with-test} | ||
"cstruct-unix" {with-test & =version} | ||
] | ||
synopsis: "Access C-like structures directly from OCaml" | ||
description: """ | ||
Cstruct is a library and syntax extension to make it easier to access C-like | ||
structures directly from OCaml. It supports both reading and writing to these | ||
structures, and they are accessed via the `Bigarray` module.""" | ||
url { | ||
src: | ||
"https://github.com/mirage/ocaml-cstruct/releases/download/v4.0.0/cstruct-v4.0.0.tbz" | ||
checksum: "md5=e01a2036d1fb08d1d8e47d4f3e122bf0" | ||
} |