Skip to content

Commit 4a0d62b

Browse files
committed
[new release] mbr-format (2.0.0)
CHANGES: * Add optional argument `?disk_signature` to `Mbr.make` (@Burnleydev1, review by @reynir, mirage/ocaml-mbr#19) * Make the partition type a required argument to `Mbr.Partition.make` and rename it `~partition_type` (@AryanGodara, review by @reynir, mirage/ocaml-mbr#20) * Add tools for inspecting and modifying MBR, and reading/writing data to partitions. The command line tools are not installed as part of the opam package. The tools are `bin/mbr_inspect.exe`, `bin/read_partition.exe`, `bin/resize_partition.exe` and `bin/write_partition.exe`. (@PizieDust, review by @reynir, mirage/ocaml-mbr#22, mirage/ocaml-mbr#23, mirage/ocaml-mbr#24, mirage/ocaml-mbr#26) * Remove dependency on `ppx_cstruct` (@reynir, mirage/ocaml-mbr#27)
1 parent 140feee commit 4a0d62b

File tree

1 file changed

+34
-0
lines changed
  • packages/mbr-format/mbr-format.2.0.0

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
opam-version: "2.0"
2+
maintainer: ["Reynir Björnsson <[email protected]>" "[email protected]"]
3+
4+
license: "ISC"
5+
homepage: "https://github.com/mirage/ocaml-mbr"
6+
bug-reports: "https://github.com/mirage/ocaml-mbr/issues"
7+
dev-repo: "git+https://github.com/mirage/ocaml-mbr.git"
8+
build: [
9+
["dune" "subst"] {dev}
10+
["dune" "build" "-p" name "-j" jobs]
11+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
12+
]
13+
depends: [
14+
"ocaml" {>= "4.08.0"}
15+
"dune" {>= "3.4.0"}
16+
"lwt"
17+
"cstruct" {>= "6.0.0"}
18+
"cstruct" {dev & >= "6.2.0"}
19+
"fmt" {with-test}
20+
"alcotest" {with-test}
21+
]
22+
conflicts: [
23+
"result" {< "1.5"}
24+
]
25+
synopsis: "A simple library for manipulating Master Boot Records"
26+
url {
27+
src:
28+
"https://github.com/mirage/ocaml-mbr/releases/download/v2.0.0/mbr-format-2.0.0.tbz"
29+
checksum: [
30+
"sha256=af317bbdba9e7a3c10c36216a711937e02fb44b4f107cf68372315e7544bbf50"
31+
"sha512=881cc5a77882e21006d4c25f0375a97e08c8f13faadc434c88020ac705245ed114dbc33945530553a416a051e31066ad009b115e002489dadda7b05e68a7c7c8"
32+
]
33+
}
34+
x-commit-hash: "db8d07c042d9eea321b2f021ba210d03ea5d638f"

0 commit comments

Comments
 (0)