this repo has no description
0
fork

Configure Feed

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

Merge pull request #19181 from dinosaure/release-rfc1951-v1.4.2

[new release] rfc1951 and decompress (1.4.2)

authored by

Marcello Seri and committed by
GitHub
efa82e2a c53d8c20

+78
+43
packages/decompress/decompress.1.4.2/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "Romain Calascibetta <romain.calascibetta@gmail.com>" 3 + authors: "Romain Calascibetta <romain.calascibetta@gmail.com>" 4 + homepage: "https://github.com/mirage/decompress" 5 + bug-reports: "https://github.com/mirage/decompress/issues" 6 + dev-repo: "git+https://github.com/mirage/decompress.git" 7 + doc: "https://mirage.github.io/decompress/" 8 + license: "MIT" 9 + synopsis: "Implementation of Zlib and GZip in OCaml" 10 + description: """Decompress is an implementation of Zlib and GZip in OCaml 11 + 12 + It provides a pure non-blocking interface to inflate and deflate data flow. 13 + """ 14 + 15 + build: [ "dune" "build" "-p" name "-j" jobs ] 16 + run-test: [ "dune" "runtest" "-p" name "-j" jobs ] 17 + 18 + depends: [ 19 + "ocaml" {>= "4.07.0"} 20 + "dune" {>= "2.8.0"} 21 + "base-bytes" 22 + "bigarray-compat" 23 + "cmdliner" {>= "1.0.0"} 24 + "optint" {>= "0.1.0"} 25 + "checkseum" {>= "0.3.2"} 26 + "bigstringaf" {with-test} 27 + "alcotest" {with-test} 28 + "ctypes" {with-test & >= "0.18.0"} 29 + "fmt" {with-test} 30 + "camlzip" {>= "1.10" & with-test} 31 + "base64" {>= "3.0.0" & with-test} 32 + "crowbar" {with-test & >= "0.2"} 33 + "rresult" {with-test} 34 + ] 35 + url { 36 + src: 37 + "https://github.com/mirage/decompress/releases/download/v1.4.2/decompress-v1.4.2.tbz" 38 + checksum: [ 39 + "sha256=822f125b46c87f4a902c334db8c86d4d5f33ebe978e93c40351a4d3269b95225" 40 + "sha512=9cb82615923a5fffc5c8dce1d9361a467e35e91092c25c98f5afda8f4226059c59eb695c55e63adf92d766c7747e15df186386bcaeb399497dd1ae5b024c09fa" 41 + ] 42 + } 43 + x-commit-hash: "e65836aa077ff120354a7de63cfea52095a7ebd3"
+35
packages/rfc1951/rfc1951.1.4.2/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "Romain Calascibetta <romain.calascibetta@gmail.com>" 3 + authors: "Romain Calascibetta <romain.calascibetta@gmail.com>" 4 + homepage: "https://github.com/mirage/decompress" 5 + bug-reports: "https://github.com/mirage/decompress/issues" 6 + dev-repo: "git+https://github.com/mirage/decompress.git" 7 + doc: "https://mirage.github.io/decompress/" 8 + license: "MIT" 9 + synopsis: "Implementation of RFC1951 in OCaml" 10 + description: """This package provide an implementation of RFC1951 in OCaml. 11 + 12 + We provide a pure non-blocking interface to inflate and deflate data flow. 13 + """ 14 + 15 + build: [ "dune" "build" "-p" name "-j" jobs ] 16 + run-test: [ "dune" "runtest" "-p" name "-j" jobs ] 17 + 18 + depends: [ 19 + "ocaml" {>= "4.07.0"} 20 + "dune" {>= "2.8"} 21 + "decompress" {= version} 22 + "bigarray-compat" 23 + "checkseum" 24 + "optint" 25 + "ctypes" {with-test & >= "0.18.0"} 26 + ] 27 + url { 28 + src: 29 + "https://github.com/mirage/decompress/releases/download/v1.4.2/decompress-v1.4.2.tbz" 30 + checksum: [ 31 + "sha256=822f125b46c87f4a902c334db8c86d4d5f33ebe978e93c40351a4d3269b95225" 32 + "sha512=9cb82615923a5fffc5c8dce1d9361a467e35e91092c25c98f5afda8f4226059c59eb695c55e63adf92d766c7747e15df186386bcaeb399497dd1ae5b024c09fa" 33 + ] 34 + } 35 + x-commit-hash: "e65836aa077ff120354a7de63cfea52095a7ebd3"