Skip to content

Commit

Permalink
Merge pull request #273 from djs55/release.0.1.0
Browse files Browse the repository at this point in the history
Update CHANGES for a v0.1.0 release
  • Loading branch information
djs55 authored Aug 17, 2017
2 parents 0bc671f + 8f62b62 commit c0081b8
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
### v0.1.0 (2017-08-17)

* use Mirage 3 interfaces
* add support for ICMP ECHO_REQUESTS
* add support for transparent HTTP/HTTPS proxying

13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,16 @@ clean:
rm -f vpnkit.exe
rm -f vpnkit.tgz
rm -f src/bin/depends.ml

REPO=../../mirage/opam-repository
PACKAGES=$(REPO)/packages
# until we have https://github.com/ocaml/opam-publish/issues/38
pkg-%:
topkg opam pkg -n $*
mkdir -p $(PACKAGES)/$*
cp -r _build/$*.* $(PACKAGES)/$*/
cd $(PACKAGES) && git add $*

PKGS=$(basename $(wildcard *.opam))
opam-pkg:
$(MAKE) $(PKGS:%=pkg-%)
3 changes: 3 additions & 0 deletions pkg/pkg.ml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env ocaml
#use "topfind"
#require "topkg-jbuilder.auto"
6 changes: 6 additions & 0 deletions vpnkit.descr
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
VPN-friendly networking devices for HyperKit

HyperKit is a hypervisor which runs on macOS using the "hypervisor.framework".
VPNKit implements a virtual ethernet device for HyperKit VMs in a VPN-friendly
way, by terminating and proxying all the TCP flows, caching and forwarding
DNS requests etc. HyperKit and VPNKit are used in Docker for Mac and Windows.
9 changes: 4 additions & 5 deletions vpnkit.opam
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ authors: [
"Thomas Gazagnaire <[email protected]>"
"Thomas Leonard <[email protected]>"
]
homepage: "https://github.com/docker/vpnkit"
bug-reports: "https://github.com/docker/vpnkit/issues"
dev-repo: "https://github.com/docker/vpnkit.git"
doc: "https://docker.github.io/vpnkit/"
homepage: "https://github.com/moby/vpnkit"
bug-reports: "https://github.com/moby/vpnkit/issues"
dev-repo: "https://github.com/moby/vpnkit.git"
doc: "https://moby.github.io/vpnkit/"

build: [
[make]
Expand All @@ -27,7 +27,6 @@ install: [make "install" "BINDIR=%{bin}%"]
remove: [make "uninstall" "BINDIR=%{bin}%"]

depends: [
"ocamlfind" {build}
"jbuilder" {build}
"alcotest" {test}
"result"
Expand Down

0 comments on commit c0081b8

Please sign in to comment.