forked from ocaml/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ocaml#12129 from mirage/yaml-0.2.1
+yaml.0.2.1
- Loading branch information
Showing
5 changed files
with
43 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Parse and generate YAML 1.1 files | ||
|
||
This is an OCaml library to parse and generate the YAML file | ||
format. It is intended to interoperable with the [Ezjsonm](https://github.com/mirage/ezjsonm) | ||
JSON handling library, if the simple common subset of Yaml | ||
is used. Anchors and other advanced Yaml features are not | ||
implemented in the JSON compatibility layer. | ||
|
||
The [Yaml module docs](http://anil-code.recoil.org/ocaml-yaml/yaml/Yaml/index.html) are browseable online. |
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,30 @@ | ||
opam-version: "1.2" | ||
maintainer: "Anil Madhavapeddy <[email protected]>" | ||
authors: ["Anil Madhavapeddy <[email protected]>"] | ||
homepage: "https://github.com/avsm/ocaml-yaml" | ||
doc: "http://anil-code.github.io/ocaml-yaml" | ||
license: "ISC" | ||
dev-repo: "https://github.com/avsm/ocaml-yaml.git" | ||
bug-reports: "https://github.com/avsm/ocaml-yaml/issues" | ||
tags: ["org:mirage" "org:ocamllabs"] | ||
available: [ ocaml-version >= "4.06.0"] | ||
depends: [ | ||
"jbuilder" {build & >="1.0+beta17"} | ||
"configurator" | ||
"ctypes" {>="0.12.0"} | ||
"ppx_sexp_conv" {>="v0.9.0"} | ||
"sexplib" | ||
"rresult" | ||
"fmt" | ||
"logs" | ||
"bos" | ||
"alcotest" {test} | ||
"ezjsonm" {test} | ||
] | ||
build: [ | ||
["jbuilder" "subst"] {pinned} | ||
["jbuilder" "build" "-p" name "-j" jobs] | ||
] | ||
build-test: [ | ||
["jbuilder" "runtest" "-p" name] | ||
] |
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,2 @@ | ||
archive: "https://github.com/avsm/ocaml-yaml/releases/download/v0.2.1/yaml-0.2.1.tbz" | ||
checksum: "1955537158af5ad333ff6a7c6ff73f8f" |