Skip to content

Commit

Permalink
Merge pull request #8202 from rgrinberg/opam-publish/conduit.0.14.4
Browse files Browse the repository at this point in the history
conduit.0.14.4 - via opam-publish
  • Loading branch information
avsm committed Jan 4, 2017
2 parents 1117f9b + 9c1be9e commit 572b8e1
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 0 deletions.
15 changes: 15 additions & 0 deletions packages/conduit/conduit.0.14.4/descr
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Network connection library for TCP and SSL

The `conduit` library takes care of establishing and listening for TCP and
SSL/TLS connections for the Lwt and Async libraries.

The reason this library exists is to provide a degree of abstraction
from the precise SSL library used, since there are a variety of ways to bind to
a library (e.g. the C FFI, or the Ctypes library), as well as well as which
library is used (either OpenSSL or a native OCaml TLS implementation).

If you are using the `Lwt_unix` version of the library, you can set two
environment variables to control the behaviour of the library:

- `CONDUIT_DEBUG=1` will output debug information to standard error.
- `CONDUIT_TLS=native` will force the use of the pure OCaml TLS library.
56 changes: 56 additions & 0 deletions packages/conduit/conduit.0.14.4/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
opam-version: "1.2"
maintainer: "anil@recoil.org"
authors: [
"Anil Madhavapeddy" "Thomas Leonard" "Thomas Gazagnaire" "Rudi Grinberg"
]
homepage: "https://github.com/mirage/ocaml-conduit"
bug-reports: "https://github.com/mirage/ocaml-conduit/issues"
license: "ISC"
tags: "org:mirage"
dev-repo: "https://github.com/mirage/ocaml-conduit.git"
build: [
["./configure"]
[make]
]
install: [make "install"]
build-test: [
["./configure"]
[make "test"]
]
build-doc: [make "doc"]
remove: ["ocamlfind" "remove" "conduit"]
depends: [
"ocamlfind" {build}
"ocamlbuild" {build}
"ppx_driver" {build}
"ppx_optcomp" {build & >= "113.24.00"}
"ppx_sexp_conv" {build}
"sexplib"
"stringext"
"uri"
"logs" {>= "0.5.0"}
"cstruct" {>= "1.0.1"}
"ipaddr" {>= "2.5.0"}
]
depopts: [
"async"
"lwt"
"ssl"
"async_ssl"
"mirage-dns"
"vchan"
"launchd"
"tls"
"mirage-types-lwt"
]
conflicts: [
"lwt" {< "2.4.4"}
"async_ssl" {< "112.24.00"}
"async" {< "113.24.00"}
"mirage-types" {< "2.0.0"}
"dns" {< "0.10.0"}
"tls" {< "0.4.0"}
"vchan" {< "2.0.0"}
"nocrypto" {< "0.4.0"}
]
available: [ocaml-version >= "4.02.3"]
2 changes: 2 additions & 0 deletions packages/conduit/conduit.0.14.4/url
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
http: "https://github.com/mirage/ocaml-conduit/archive/v0.14.4.tar.gz"
checksum: "671bc66a25c05ff37d36fcb731b9c8eb"

0 comments on commit 572b8e1

Please sign in to comment.