Skip to content

Commit c0081b8

Browse files
authored
Merge pull request #273 from djs55/release.0.1.0
Update CHANGES for a v0.1.0 release
2 parents 0bc671f + 8f62b62 commit c0081b8

File tree

5 files changed

+32
-5
lines changed

5 files changed

+32
-5
lines changed

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
### v0.1.0 (2017-08-17)
2+
3+
* use Mirage 3 interfaces
4+
* add support for ICMP ECHO_REQUESTS
5+
* add support for transparent HTTP/HTTPS proxying
6+

Makefile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,16 @@ clean:
6969
rm -f vpnkit.exe
7070
rm -f vpnkit.tgz
7171
rm -f src/bin/depends.ml
72+
73+
REPO=../../mirage/opam-repository
74+
PACKAGES=$(REPO)/packages
75+
# until we have https://github.com/ocaml/opam-publish/issues/38
76+
pkg-%:
77+
topkg opam pkg -n $*
78+
mkdir -p $(PACKAGES)/$*
79+
cp -r _build/$*.* $(PACKAGES)/$*/
80+
cd $(PACKAGES) && git add $*
81+
82+
PKGS=$(basename $(wildcard *.opam))
83+
opam-pkg:
84+
$(MAKE) $(PKGS:%=pkg-%)

pkg/pkg.ml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env ocaml
2+
#use "topfind"
3+
#require "topkg-jbuilder.auto"

vpnkit.descr

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
VPN-friendly networking devices for HyperKit
2+
3+
HyperKit is a hypervisor which runs on macOS using the "hypervisor.framework".
4+
VPNKit implements a virtual ethernet device for HyperKit VMs in a VPN-friendly
5+
way, by terminating and proxying all the TCP flows, caching and forwarding
6+
DNS requests etc. HyperKit and VPNKit are used in Docker for Mac and Windows.

vpnkit.opam

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ authors: [
1212
"Thomas Gazagnaire <[email protected]>"
1313
"Thomas Leonard <[email protected]>"
1414
]
15-
homepage: "https://github.com/docker/vpnkit"
16-
bug-reports: "https://github.com/docker/vpnkit/issues"
17-
dev-repo: "https://github.com/docker/vpnkit.git"
18-
doc: "https://docker.github.io/vpnkit/"
15+
homepage: "https://github.com/moby/vpnkit"
16+
bug-reports: "https://github.com/moby/vpnkit/issues"
17+
dev-repo: "https://github.com/moby/vpnkit.git"
18+
doc: "https://moby.github.io/vpnkit/"
1919

2020
build: [
2121
[make]
@@ -27,7 +27,6 @@ install: [make "install" "BINDIR=%{bin}%"]
2727
remove: [make "uninstall" "BINDIR=%{bin}%"]
2828

2929
depends: [
30-
"ocamlfind" {build}
3130
"jbuilder" {build}
3231
"alcotest" {test}
3332
"result"

0 commit comments

Comments
 (0)