add mbr-format, oneffs, mirage-block-partition overlays
This commit is contained in:
parent
aac0db1885
commit
949a1d4042
3 changed files with 86 additions and 0 deletions
24
packages/mbr-format.1.0.0~dev/opam
Normal file
24
packages/mbr-format.1.0.0~dev/opam
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
opam-version: "2.0"
|
||||||
|
maintainer: ["Reynir Björnsson <reynir@reynir.dk>" "dave.scott@eu.citrix.com"]
|
||||||
|
authors: "dave.scott@eu.citrix.com"
|
||||||
|
homepage: "https://github.com/mirage/ocaml-mbr"
|
||||||
|
bug-reports: "https://github.com/mirage/ocaml-mbr/issues"
|
||||||
|
dev-repo: "git+https://github.com/mirage/ocaml-mbr.git"
|
||||||
|
build: [
|
||||||
|
["dune" "subst"] {dev}
|
||||||
|
["dune" "build" "-p" name "-j" jobs]
|
||||||
|
["dune" "runtest" "-p" name "-j" jobs] {with-test}
|
||||||
|
]
|
||||||
|
depends: [
|
||||||
|
"ocaml" {>= "4.08.0"}
|
||||||
|
"dune"
|
||||||
|
"lwt"
|
||||||
|
"cstruct" {>= "6.0.0"}
|
||||||
|
"ppx_cstruct"
|
||||||
|
"fmt" {with-test}
|
||||||
|
"alcotest" {with-test}
|
||||||
|
]
|
||||||
|
synopsis: "A simple library for manipulating Master Boot Records"
|
||||||
|
url {
|
||||||
|
src: "git+https://github.com/mirage/ocaml-mbr.git
|
||||||
|
}
|
30
packages/mirage-block-partition.0.0.1~dev/opam
Normal file
30
packages/mirage-block-partition.0.0.1~dev/opam
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
opam-version: "2.0"
|
||||||
|
maintainer: [ "Reynir Björnsson <reynir@reynir.dk>" ]
|
||||||
|
authors: [ "Reynir Björnsson <reynir@reynir.dk>" ]
|
||||||
|
homepage: "https://github.com/reynir/mirage-block-partition"
|
||||||
|
bug-reports: "https://github.com/reynir/mirage-block-partition/issues"
|
||||||
|
dev-repo: "git+https://github.com/reynir/mirage-block-partition.git"
|
||||||
|
license: "ISC"
|
||||||
|
synopsis: "Naïve mirage block device partitioning"
|
||||||
|
description: """
|
||||||
|
Mirage-block-partition lets you view a mirage block device as smaller partitions.
|
||||||
|
"""
|
||||||
|
|
||||||
|
build: [
|
||||||
|
[ "dune" "subst" ] { dev }
|
||||||
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
|
[ "dune" "runtest" "-p" name "-j" jobs ] { with-test }
|
||||||
|
]
|
||||||
|
depends: [
|
||||||
|
"dune" {>= "3.4"}
|
||||||
|
"ocaml" {>= "4.08.0"}
|
||||||
|
"mirage-block"
|
||||||
|
"lwt"
|
||||||
|
|
||||||
|
"mirage-block-combinators" { with-test }
|
||||||
|
"alcotest" { with-test }
|
||||||
|
"alcotest-lwt" { with-test }
|
||||||
|
]
|
||||||
|
url {
|
||||||
|
src: "git+https://github.com/reynir/mirage-block-partition.git"
|
||||||
|
}
|
32
packages/oneffs.0.0.1~dev/opam
Normal file
32
packages/oneffs.0.0.1~dev/opam
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
opam-version: "2.0"
|
||||||
|
maintainer: [ "Reynir Björnsson <reynir@reynir.dk>" ]
|
||||||
|
authors: [ "Reynir Björnsson <reynir@reynir.dk>" ]
|
||||||
|
homepage: "https://git.robur.io/reynir/oneffs"
|
||||||
|
bug-reports: "https://git.robur.io/reynir/oneffs/issues"
|
||||||
|
dev-repo: "git+https://git.robur.io/reynir/oneffs.git"
|
||||||
|
license: "ISC"
|
||||||
|
synopsis: "One-file filesystem is a filesystem for storing a single unnamed file"
|
||||||
|
description: """
|
||||||
|
One-file filesystem is a filesystem for storing a single unnamed file. It is
|
||||||
|
suitable for storing data that may be lost on updates. For example a cache of
|
||||||
|
pre-computed cryptographic checksums that are slow to compute, but that we
|
||||||
|
would rather recompute than have stale checksums.
|
||||||
|
CRC32 checksums are used to ensure integrity.
|
||||||
|
"""
|
||||||
|
|
||||||
|
build: [
|
||||||
|
[ "dune" "subst" ] { dev }
|
||||||
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
|
[ "dune" "runtest" "-p" name "-j" jobs ] { with-test }
|
||||||
|
]
|
||||||
|
depends: [
|
||||||
|
"dune" {>= "3.4"}
|
||||||
|
"ocaml" {>= "4.08.0"}
|
||||||
|
"mirage-block"
|
||||||
|
"lwt"
|
||||||
|
"cstruct"
|
||||||
|
"checkseum"
|
||||||
|
]
|
||||||
|
url {
|
||||||
|
src: "git+https://git.robur.io/reynir/oneffs.git"
|
||||||
|
}
|
Loading…
Reference in a new issue