-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
53 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
(library | ||
(name uri) | ||
(public_name uri) | ||
(wrapped (transition "Please switch to using Uri.Re instead of Uri_re")) | ||
(modules uri uri_re) | ||
(libraries re.posix stringext)) | ||
(name uri) | ||
(public_name uri) | ||
(wrapped (transition "Please switch to using Uri.Re instead of Uri_re")) | ||
(modules uri uri_re) | ||
(libraries re.posix stringext)) | ||
|
||
(library | ||
(name uri_sexp) | ||
(public_name uri.sexp) | ||
(modules uri_sexp) | ||
(preprocess (pps ppx_sexp_conv)) | ||
(libraries sexplib0 uri)) | ||
(name uri_sexp) | ||
(public_name uri-sexp) | ||
(modules uri_sexp) | ||
(preprocess (pps ppx_sexp_conv)) | ||
(libraries sexplib0 uri)) | ||
|
||
(library | ||
(name uri_top) | ||
(public_name uri.top) | ||
(modules uri_top) | ||
(libraries uri compiler-libs)) | ||
(name uri_top) | ||
(public_name uri.top) | ||
(modules uri_top) | ||
(libraries uri compiler-libs)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
opam-version: "2.0" | ||
maintainer: "anil@recoil.org" | ||
authors: ["Anil Madhavapeddy" "David Sheets" "Rudi Grinberg"] | ||
license: "ISC" | ||
tags: ["url" "uri" "org:mirage" "org:xapi-project"] | ||
homepage: "https://github.com/mirage/ocaml-uri" | ||
bug-reports: "https://github.com/mirage/ocaml-uri/issues" | ||
dev-repo: "git+https://github.com/mirage/ocaml-uri.git" | ||
doc: "https://mirage.github.io/ocaml-uri/" | ||
synopsis: "An RFC3986 URI/URL parsing library" | ||
description: """ | ||
ocaml-uri with sexp support | ||
""" | ||
depends: [ | ||
"uri" | ||
"dune" {build & >= "1.2.0"} | ||
"ppx_sexp_conv" {build & >= "v0.9.0"} | ||
"sexplib0" | ||
] | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters