File tree Expand file tree Collapse file tree 12 files changed +72
-70
lines changed Expand file tree Collapse file tree 12 files changed +72
-70
lines changed Original file line number Diff line number Diff line change 11_build /
22* .install
33* .merlin
4-
4+ . * .swp
Original file line number Diff line number Diff line change 88 global :
99 - PACKAGE="mirage-block-xen"
1010 matrix :
11- - DISTRO="ubuntu-16.04" OCAML_VERSION="4.03.0"
12- - DISTRO="alpine" OCAML_VERSION="4.04.2"
11+ - DISTRO="ubuntu" OCAML_VERSION="4.03"
12+ - DISTRO="alpine" OCAML_VERSION="4.04"
13+ - DISTRO="alpine" OCAML_VERSION="4.05"
14+ - DISTRO="alpine" OCAML_VERSION="4.06"
15+ - DISTRO="alpine" OCAML_VERSION="4.07"
Original file line number Diff line number Diff line change 1+ ## 1.6.0 (2019-01-11):
2+ * Port to dune from jbuilder (@avsm )
3+
14## 1.5.4 (2017-07-05):
25* Use ` ppx_cstruct ` directly instead of the ` cstruct.ppx ` compat
36 package, which makes it easier for jbuilder subdirectory embedding.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 22.PHONY : build clean test
33
44build :
5- jbuilder build @install --dev
5+ dune build
66
77test :
8- jbuilder runtest --dev
8+ dune runtest
99
1010install :
11- jbuilder install
11+ dune install
1212
1313uninstall :
14- jbuilder uninstall
14+ dune uninstall
1515
1616xen-depends : Dockerfile build.sh
1717 docker build -t mirage-block-xen .
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ (lang dune 1 .0)
2+ (name mirage-block-xen)
Original file line number Diff line number Diff line change 1515 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1616 *)
1717
18- open Printf
18+ [ @@@ warning " -32 " ]
1919
2020type ('a, 'b) result = [
2121 | `OK of 'a
Original file line number Diff line number Diff line change 1+ (library
2+ (name mirage_block_xen)
3+ (public_name mirage-block-xen)
4+ (modules Blkproto Device_number)
5+ (libraries cstruct io-page)
6+ (wrapped false)
7+ (preprocess
8+ (pps ppx_cstruct)))
9+
10+ (library
11+ (name mirage_block_xen_front)
12+ (public_name mirage-block-xen.front)
13+ (modules Blkfront Block)
14+ (libraries logs stringext lwt cstruct ppx_cstruct mirage-block-lwt io-page
15+ io-page-xen shared-memory-ring shared-memory-ring-lwt mirage-block-xen
16+ xen-evtchn xen-gnt mirage-xen)
17+ (wrapped false))
18+
19+ (library
20+ (name mirage_block_xen_back)
21+ (public_name mirage-block-xen.back)
22+ (modules Blkback Block_request)
23+ (libraries logs lwt cstruct ppx_cstruct io-page shared-memory-ring
24+ shared-memory-ring-lwt mirage-block-xen xen-evtchn xen-gnt xenstore
25+ xenstore.client mirage-block-lwt rresult)
26+ (wrapped false))
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments