Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,26 @@ script: bash -ex ./.travis-docker.sh
env:
global:
- EXTRA_REMOTES="https://github.com/mirage/mirage-dev.git"
- PINS="cohttp-top:. cohttp-async:. cohttp-lwt-unix:. cohttp-lwt-jsoo:. cohttp-lwt:. mirage-http:. cohttp:."
- PINS="cohttp-top:. cohttp-async:. cohttp-lwt-unix:. cohttp-lwt-jsoo:. cohttp-lwt:. cohttp-mirage:. cohttp:."
matrix:
- PACKAGE="cohttp" DISTRO="ubuntu-16.04" OCAML_VERSION="4.04.2"
- PACKAGE="cohttp-async" DISTRO="ubuntu-16.04" OCAML_VERSION="4.04.2"
- PACKAGE="cohttp-lwt-unix" DISTRO="ubuntu-16.04" OCAML_VERSION="4.04.2"
- PACKAGE="cohttp-lwt-jsoo" DISTRO="ubuntu-16.04" OCAML_VERSION="4.04.2"
- PACKAGE="cohttp-lwt" DISTRO="ubuntu-16.04" OCAML_VERSION="4.04.2"
- PACKAGE="mirage-http" DISTRO="ubuntu-16.04" OCAML_VERSION="4.04.2"
- PACKAGE="cohttp-mirage" DISTRO="ubuntu-16.04" OCAML_VERSION="4.04.2"
- PACKAGE="cohttp" DISTRO="alpine-3.5" OCAML_VERSION="4.03.0"
- PACKAGE="cohttp-async" DISTRO="alpine" OCAML_VERSION="4.03.0"
- PACKAGE="cohttp-lwt-unix" DISTRO="alpine" OCAML_VERSION="4.03.0"
- PACKAGE="cohttp-lwt-jsoo" DISTRO="alpine" OCAML_VERSION="4.03.0"
- PACKAGE="cohttp-lwt" DISTRO="alpine" OCAML_VERSION="4.03.0"
- PACKAGE="mirage-http" DISTRO="alpine" OCAML_VERSION="4.03.0"
- PACKAGE="cohttp-mirage" DISTRO="alpine" OCAML_VERSION="4.03.0"
- PACKAGE="cohttp" DISTRO="debian-unstable" OCAML_VERSION="4.03.0"
- PACKAGE="cohttp-async" DISTRO="debian-unstable" OCAML_VERSION="4.03.0"
- PACKAGE="cohttp-lwt-unix" DISTRO="debian-unstable" OCAML_VERSION="4.03.0"
- PACKAGE="cohttp-lwt-jsoo" DISTRO="debian-unstable" OCAML_VERSION="4.03.0"
- PACKAGE="cohttp-lwt" DISTRO="debian-unstable" OCAML_VERSION="4.03.0"
- PACKAGE="mirage-http" DISTRO="debian-unstable" OCAML_VERSION="4.03.0"
- PACKAGE="cohttp-mirage" DISTRO="debian-unstable" OCAML_VERSION="4.03.0"
notifications:
webhooks:
urls:
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ libraries:
library.
* `Cohttp_lwt` exposes an OS-independent Lwt interface, which is used
by the [Mirage](http://www.openmirage.org) interface
to generate standalone microkernels (see the [mirage-http](https://github.com/mirage/mirage-http)
repository).
to generate standalone microkernels use the cohttp-mirage subpackage.
* `Cohttp_lwt_xhr` compiles to a JavaScript module that maps the Cohttp
calls to XMLHTTPRequests. This is used to compile OCaml libraries like
the GitHub bindings to JavaScript and still run efficiently.
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion mirage-http/src/jbuild → cohttp-mirage/src/jbuild
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

(library
((name cohttp_mirage)
(public_name mirage-http)
(public_name cohttp-mirage)
(synopsis "Mirage backend for cohttp")
(wrapped false)
(libraries
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 1 addition & 2 deletions pkg/pkg.ml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ open Topkg

let () =
Topkg_jbuilder.describe
~name:"cohttp"
~change_logs:[ Pkg.std_file "CHANGES.md"
; Pkg.std_file "mirage-http-CHANGES.md" ]
; Pkg.std_file "cohttp-mirage-CHANGES.md" ]
()