Skip to content

Commit c50a1c3

Browse files
author
Jon Ludlam
committed
Merge pull request xapi-project#4 from jonludlam/0.9.2-release
0.9.2 release
2 parents 0754ee7 + c4504e2 commit c50a1c3

File tree

9 files changed

+1657
-468
lines changed

9 files changed

+1657
-468
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
0.9.2 (4-Jun-2014):
2+
* Compatibility with stdext 0.11.0
3+
* Cope with two blktaps being installed (2.0/2.5)
4+
15
0.9.0 (29-May-2013):
26
* first public release
37

Makefile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# OASIS_START
2-
# DO NOT EDIT (digest: bc1e05bfc8b39b664f29dae8dbd3ebbb)
2+
# DO NOT EDIT (digest: a3c674b4239234cbbe53afe090018954)
33

44
SETUP = ocaml setup.ml
55

@@ -12,7 +12,7 @@ doc: setup.data build
1212
test: setup.data build
1313
$(SETUP) -test $(TESTFLAGS)
1414

15-
all:
15+
all:
1616
$(SETUP) -all $(ALLFLAGS)
1717

1818
install: setup.data
@@ -24,15 +24,18 @@ uninstall: setup.data
2424
reinstall: setup.data
2525
$(SETUP) -reinstall $(REINSTALLFLAGS)
2626

27-
clean:
27+
clean:
2828
$(SETUP) -clean $(CLEANFLAGS)
2929

30-
distclean:
30+
distclean:
3131
$(SETUP) -distclean $(DISTCLEANFLAGS)
3232

3333
setup.data:
3434
$(SETUP) -configure $(CONFIGUREFLAGS)
3535

36+
configure:
37+
$(SETUP) -configure $(CONFIGUREFLAGS)
38+
3639
.PHONY: build doc test all install uninstall reinstall clean distclean configure
3740

3841
# OASIS_STOP

_oasis

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
OASISFormat: 0.3
22
Name: tapctl
3-
Version: 0.1
3+
Version: 0.9.2
44
Synopsis: Tapdisk control utility
55
License: LGPL-2.1 with OCaml linking exception
66
Authors: various

_tags

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# OASIS_START
2-
# DO NOT EDIT (digest: 87a323d81a6d07b7d0bb052314d59405)
3-
# Ignore VCS directories, you can use the same kind of rule outside
4-
# OASIS_START/STOP if you want to exclude directories that contains
2+
# DO NOT EDIT (digest: f4caa3a96bd617ffdc4972e8cd97a5ca)
3+
# Ignore VCS directories, you can use the same kind of rule outside
4+
# OASIS_START/STOP if you want to exclude directories that contains
55
# useless stuff for the build process
66
<**/.svn>: -traverse
77
<**/.svn>: not_hygienic
@@ -15,10 +15,10 @@
1515
"_darcs": not_hygienic
1616
# Library tapctl
1717
"lib/tapctl.cmxs": use_tapctl
18+
<lib/*.ml{,i}>: pkg_forkexec
1819
<lib/*.ml{,i}>: pkg_rpclib
1920
<lib/*.ml{,i}>: pkg_rpclib.syntax
20-
<lib/*.ml{,i}>: pkg_threads
2121
<lib/*.ml{,i}>: pkg_stdext
22-
<lib/*.ml{,i}>: pkg_forkexec
22+
<lib/*.ml{,i}>: pkg_threads
2323
# OASIS_STOP
2424
<lib/*.ml{,i}>: syntax_camlp4o

configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/bin/sh
22

33
# OASIS_START
4-
# DO NOT EDIT (digest: 425187ed8bfdbdd207fd76392dd243a7)
4+
# DO NOT EDIT (digest: dc86c2ad450f91ca10c931b6045d0499)
55
set -e
66

77
FST=true
8-
for i in "$@"; do
8+
for i in "$@"; do
99
if $FST; then
1010
set --
1111
FST=false

lib/META

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# OASIS_START
2-
# DO NOT EDIT (digest: b970eafed337d0a174e656e455f6e50a)
3-
version = "0.1"
2+
# DO NOT EDIT (digest: 0cd8318d6a165cb5fd99bd3735ec3bcc)
3+
version = "0.9.2"
44
description = "Tapdisk control utility"
55
requires = "rpclib rpclib.syntax threads stdext forkexec"
66
archive(byte) = "tapctl.cma"

lib/tapctl.mldylib

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# OASIS_START
2+
# DO NOT EDIT (digest: e6577cbd83d564579b6c73be9cfedd77)
3+
Tapctl
4+
# OASIS_STOP

0 commit comments

Comments
 (0)