Skip to content

Commit 22def3f

Browse files
authored
Merge pull request #25 from hannesm/ipaddr3
ipaddr3 compatibility
2 parents 555deee + ba8b0bb commit 22def3f

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.travis.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ env:
88
global:
99
- PACKAGE="mirage-vnetif"
1010
matrix:
11-
- DISTRO="debian-stable" OCAML_VERSION="4.03"
1211
- DISTRO="debian-testing" OCAML_VERSION="4.04"
13-
- DISTRO="debian-unstable" OCAML_VERSION="4.04"
14-
- DISTRO="ubuntu-16.04" OCAML_VERSION="4.04"
15-
- DISTRO="alpine" OCAML_VERSION="4.04"
16-
- DISTRO="alpine" OCAML_VERSION="4.03"
12+
- DISTRO="debian-unstable" OCAML_VERSION="4.05"
13+
- DISTRO="ubuntu-16.04" OCAML_VERSION="4.06"
14+
- DISTRO="alpine" OCAML_VERSION="4.07"

mirage-vnetif.opam

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,32 @@
1-
opam-version: "1.2"
1+
opam-version: "2.0"
22
name: "mirage-vnetif"
33
maintainer: "Magnus Skjegstad <[email protected]>"
44
authors: "Magnus Skjegstad <[email protected]>"
55
homepage: "https://github.com/mirage/mirage-vnetif"
66
bug-reports: "https://github.com/mirage/mirage-vnetif/issues/"
7-
dev-repo: "https://github.com/mirage/mirage-vnetif.git"
7+
dev-repo: "git+https://github.com/mirage/mirage-vnetif.git"
88
doc: "https://docs.mirage.io/mirage-vnetif"
99
license: "ISC"
1010

1111
build: [
12-
["jbuilder" "subst"] {pinned}
12+
["jbuilder" "subst" "-p" name] {pinned}
1313
["jbuilder" "build" "-p" name "-j" jobs]
1414
]
1515

1616
depends: [
17+
"ocaml" {>= "4.04.2"}
1718
"jbuilder" {build & >="1.0+beta7"}
1819
"lwt"
1920
"mirage-time-lwt" {>= "1.0.0"}
2021
"mirage-clock-lwt" {>= "1.2.0"}
2122
"mirage-net-lwt" {>= "1.0.0"}
2223
"cstruct" {>="2.4.0"}
23-
"ipaddr"
24+
"ipaddr" {>= "3.0.0"}
25+
"macaddr"
2426
"io-page"
2527
"mirage-profile"
2628
"duration"
2729
"logs"
2830
]
2931
tags: ["org:mirage"]
30-
available: [ocaml-version >= "4.03.0"]
32+
synopsis: "Virtual network interface and software switch for Mirage"

src/jbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
(public_name mirage-vnetif)
55
(modules (basic_backend vnetif))
66
(wrapped false)
7-
(libraries (cstruct lwt mirage-clock-lwt ipaddr mirage-profile io-page duration result mirage-time-lwt mirage-net mirage-net-lwt logs))
7+
(libraries (cstruct lwt mirage-clock-lwt ipaddr macaddr mirage-profile io-page duration result mirage-time-lwt mirage-net mirage-net-lwt logs))
88
))

0 commit comments

Comments
 (0)