this repo has no description
0
fork

Configure Feed

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

Merge pull request #21155 from dinosaure/release-rfc1951-v1.4.3

[new release] rfc1951 and decompress (1.4.3)

authored by

Calascibetta Romain and committed by
GitHub
edb978a6 be889368

+82 -7
+41
packages/decompress/decompress.1.4.3/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 + "cmdliner" {>= "1.1.0"} 22 + "optint" {>= "0.1.0"} 23 + "checkseum" {>= "0.2.0"} 24 + "bigstringaf" {with-test} 25 + "alcotest" {with-test} 26 + "ctypes" {with-test & >= "0.18.0"} 27 + "fmt" {with-test & >= "0.8.7"} 28 + "camlzip" {>= "1.10" & with-test} 29 + "base64" {>= "3.0.0" & with-test} 30 + "crowbar" {with-test & >= "0.2"} 31 + "rresult" {with-test} 32 + ] 33 + url { 34 + src: 35 + "https://github.com/mirage/decompress/releases/download/v1.4.3/decompress-1.4.3.tbz" 36 + checksum: [ 37 + "sha256=b22254ae5eb7747452267fc976a3a0ba408c5afdae0896cac4068b4d79ed5a3d" 38 + "sha512=96f62147f4e0548bb7c4680c4f9d7492a2b4a9e15bc100447b16842e3d1b43ed902fdef03907e1416c174a0586428e515f2deef53ed04098a0443a535938dd6d" 39 + ] 40 + } 41 + x-commit-hash: "058efcbb01c0c198f54cc38f34df3c8a82f37e9b"
+1 -1
packages/git/git.3.4.0/opam
··· 24 24 "bigstringaf" {< "0.9.0"} 25 25 "bigarray-compat" 26 26 "optint" 27 - "decompress" {>= "1.4.0"} 27 + "decompress" {>= "1.4.0" & < "1.4.3"} 28 28 "logs" 29 29 "lwt" 30 30 "mimic"
+1 -1
packages/git/git.3.5.0/opam
··· 24 24 "bigstringaf" {< "0.9.0"} 25 25 "bigarray-compat" 26 26 "optint" 27 - "decompress" {>= "1.4.0"} 27 + "decompress" {>= "1.4.0" & < "1.4.3"} 28 28 "logs" 29 29 "lwt" 30 30 "mimic"
+1 -1
packages/git/git.3.6.0/opam
··· 24 24 "bigstringaf" {< "0.9.0"} 25 25 "bigarray-compat" 26 26 "optint" 27 - "decompress" {>= "1.4.0"} 27 + "decompress" {>= "1.4.0" & < "1.4.3"} 28 28 "logs" 29 29 "lwt" 30 30 "mimic"
+1 -1
packages/git/git.3.7.0/opam
··· 24 24 "bigstringaf" {< "0.9.0"} 25 25 "bigarray-compat" 26 26 "optint" 27 - "decompress" {>= "1.4.0"} 27 + "decompress" {>= "1.4.0" & < "1.4.3"} 28 28 "logs" 29 29 "lwt" 30 30 "mimic" {>= "0.0.4"}
+1 -1
packages/git/git.3.7.1/opam
··· 24 24 "bigstringaf" {< "0.9.0"} 25 25 "bigarray-compat" 26 26 "optint" 27 - "decompress" {>= "1.4.0"} 27 + "decompress" {>= "1.4.0" & < "1.4.3"} 28 28 "logs" 29 29 "lwt" 30 30 "mimic" {>= "0.0.4"}
+1 -1
packages/git/git.3.8.0/opam
··· 24 24 "bigstringaf" {< "0.9.0"} 25 25 "bigarray-compat" 26 26 "optint" 27 - "decompress" {>= "1.4.0"} 27 + "decompress" {>= "1.4.0" & < "1.4.3"} 28 28 "logs" 29 29 "lwt" 30 30 "mimic" {>= "0.0.4"}
+1 -1
packages/git/git.3.9.0/opam
··· 24 24 "bigstringaf" {< "0.9.0"} 25 25 "bigarray-compat" 26 26 "optint" 27 - "decompress" {>= "1.4.0"} 27 + "decompress" {>= "1.4.0" & < "1.4.3"} 28 28 "logs" 29 29 "lwt" 30 30 "mimic" {>= "0.0.4"}
+34
packages/rfc1951/rfc1951.1.4.3/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 + "checkseum" 23 + "optint" 24 + "ctypes" {with-test & >= "0.18.0"} 25 + ] 26 + url { 27 + src: 28 + "https://github.com/mirage/decompress/releases/download/v1.4.3/decompress-1.4.3.tbz" 29 + checksum: [ 30 + "sha256=b22254ae5eb7747452267fc976a3a0ba408c5afdae0896cac4068b4d79ed5a3d" 31 + "sha512=96f62147f4e0548bb7c4680c4f9d7492a2b4a9e15bc100447b16842e3d1b43ed902fdef03907e1416c174a0586428e515f2deef53ed04098a0443a535938dd6d" 32 + ] 33 + } 34 + x-commit-hash: "058efcbb01c0c198f54cc38f34df3c8a82f37e9b"