this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[new release] yaml and yaml-sexp (3.0.1) (#20647)

* [new release] yaml and yaml-sexp (3.0.1)

CHANGES:

* Remove dependency on Rresult (@maxtori avsm/ocaml-yaml#50).

* Update packages/yaml/yaml.3.0.1/opam

* Update packages/yaml/yaml.3.0.1/opam

This is where Ctypes.CArray.of_string was introduced

* Update packages/yaml-sexp/yaml-sexp.3.0.1/opam

* Update packages/yaml/yaml.3.0.1/opam

Co-authored-by: Marcello Seri <mseri@users.noreply.github.com>

authored by

Anil Madhavapeddy
Marcello Seri
and committed by
GitHub
dbc64c77 8e9dd637

+97
+44
packages/yaml-sexp/yaml-sexp.3.0.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Parse and generate YAML 1.1 files" 3 + description: "ocaml-yaml with sexp support" 4 + maintainer: "Anil Madhavapeddy <anil@recoil.org>" 5 + authors: [ 6 + "Anil Madhavapeddy <anil@recoil.org>" 7 + "Rizo Isrof <rizo@odis.io>" 8 + "Patrick Ferris" 9 + "favonia@gmail.com" 10 + "Alan J Hu <alanh@ccs.neu.edu>" 11 + ] 12 + license: "ISC" 13 + tags: ["org:mirage" "org:ocamllabs"] 14 + homepage: "https://github.com/avsm/ocaml-yaml" 15 + doc: "https://avsm.github.io/ocaml-yaml/" 16 + bug-reports: "https://github.com/avsm/ocaml-yaml/issues" 17 + depends: [ 18 + "dune" {>= "1.3"} 19 + "ppx_sexp_conv" {>= "v0.9.0"} 20 + "sexplib" 21 + "yaml" {= version} 22 + "mdx" {with-test} 23 + "alcotest" {with-test} 24 + "crowbar" {with-test} 25 + "junit_alcotest" {with-test} 26 + "ezjsonm" {with-test} 27 + "bos" {with-test} 28 + ] 29 + conflicts: [ "result" {< "1.5"} ] 30 + build: [ 31 + ["dune" "subst"] {dev} 32 + ["dune" "build" "-p" name "-j" jobs] 33 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 34 + ] 35 + dev-repo: "git+https://github.com/avsm/ocaml-yaml.git" 36 + url { 37 + src: 38 + "https://github.com/avsm/ocaml-yaml/releases/download/v3.0.1/yaml-3.0.1.tbz" 39 + checksum: [ 40 + "sha256=92ed1ba429559a14b6b45e170f3482191791f99ac5189a5f20612e15bfbdf695" 41 + "sha512=b5cd1724aefd049230c4c5e71ad047688c8f747d133572879f08c83bc6d1a29e5bae750115c232ecf58ee9ddee32ca9ac4471f40ff65cf81b785b03941401aca" 42 + ] 43 + } 44 + x-commit-hash: "342aa9c83d787df6574188bb6812bcb903c6e7b1"
+53
packages/yaml/yaml.3.0.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Parse and generate YAML 1.1/1.2 files" 3 + description: """\ 4 + This is an OCaml library to parse and generate the YAML file 5 + format. It is intended to interoperable with the [Ezjsonm](https://github.com/mirage/ezjsonm) 6 + JSON handling library, if the simple common subset of Yaml 7 + is used. Anchors and other advanced Yaml features are not 8 + implemented in the JSON compatibility layer. 9 + 10 + The [Yaml module docs](http://anil-code.recoil.org/ocaml-yaml/yaml/Yaml/index.html) are browseable online.""" 11 + maintainer: "Anil Madhavapeddy <anil@recoil.org>" 12 + authors: [ 13 + "Anil Madhavapeddy <anil@recoil.org>" 14 + "Rizo Isrof <rizo@odis.io>" 15 + "Patrick Ferris" 16 + "favonia@gmail.com" 17 + "Alan J Hu <alanh@ccs.neu.edu>" 18 + ] 19 + license: "ISC" 20 + tags: ["org:mirage" "org:ocamllabs"] 21 + homepage: "https://github.com/avsm/ocaml-yaml" 22 + doc: "https://avsm.github.io/ocaml-yaml/" 23 + bug-reports: "https://github.com/avsm/ocaml-yaml/issues" 24 + depends: [ 25 + "ocaml" {>= "4.08.0"} 26 + "dune" {>= "1.3"} 27 + "dune-configurator" 28 + "ctypes" {>= "0.14.0"} 29 + "bos" 30 + "fmt" {with-test} 31 + "logs" {with-test} 32 + "mdx" {with-test} 33 + "alcotest" {with-test} 34 + "crowbar" {with-test} 35 + "junit_alcotest" {with-test} 36 + "ezjsonm" {with-test} 37 + ] 38 + build: [ 39 + ["dune" "subst"] {dev} 40 + ["dune" "build" "-p" name "-j" jobs] 41 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 42 + ] 43 + conflicts: [ "result" {< "1.5"} ] 44 + dev-repo: "git+https://github.com/avsm/ocaml-yaml.git" 45 + url { 46 + src: 47 + "https://github.com/avsm/ocaml-yaml/releases/download/v3.0.1/yaml-3.0.1.tbz" 48 + checksum: [ 49 + "sha256=92ed1ba429559a14b6b45e170f3482191791f99ac5189a5f20612e15bfbdf695" 50 + "sha512=b5cd1724aefd049230c4c5e71ad047688c8f747d133572879f08c83bc6d1a29e5bae750115c232ecf58ee9ddee32ca9ac4471f40ff65cf81b785b03941401aca" 51 + ] 52 + } 53 + x-commit-hash: "342aa9c83d787df6574188bb6812bcb903c6e7b1"