this repo has no description
0
fork

Configure Feed

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

Merge pull request #26593 from reynir/release-tar-v3.1.2

[new release] tar (4 packages) (3.1.2)

authored by

Anil Madhavapeddy and committed by
GitHub
03dbf230 bb1cb588

+228
+53
packages/tar-eio/tar-eio.3.1.2/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Decode and encode tar format files using Eio" 3 + description: """ 4 + tar is a library to read and write tar files with an emphasis on 5 + streaming. This library uses Eio to provide a portable tar library. 6 + """ 7 + maintainer: ["Reynir Björnsson <reynir@reynir.dk>" "dave@recoil.org"] 8 + authors: [ 9 + "Dave Scott" 10 + "Thomas Gazagnaire" 11 + "David Allsopp" 12 + "Antonin Décimo" 13 + "Reynir Björnsson" 14 + "Hannes Mehnert" 15 + ] 16 + license: "ISC" 17 + tags: ["org:xapi-project" "org:mirage"] 18 + homepage: "https://github.com/mirage/ocaml-tar" 19 + doc: "https://mirage.github.io/ocaml-tar/" 20 + bug-reports: "https://github.com/mirage/ocaml-tar/issues" 21 + depends: [ 22 + "dune" {>= "2.9"} 23 + "ocaml" {>= "5.00.0"} 24 + "eio" {>= "1.1" & < "1.2"} 25 + "tar" {= version} 26 + "odoc" {with-doc} 27 + ] 28 + build: [ 29 + ["dune" "subst"] {dev} 30 + [ 31 + "dune" 32 + "build" 33 + "-p" 34 + name 35 + "-j" 36 + jobs 37 + "--promote-install-files=false" 38 + "@install" 39 + "@runtest" {with-test} 40 + "@doc" {with-doc} 41 + ] 42 + ["dune" "install" "-p" name "--create-install-files" name] 43 + ] 44 + dev-repo: "git+https://github.com/mirage/ocaml-tar.git" 45 + url { 46 + src: 47 + "https://github.com/mirage/ocaml-tar/releases/download/v3.1.2/tar-3.1.2.tbz" 48 + checksum: [ 49 + "sha256=85c79308a41d3d594b98cfe42eaee46b875855748eb0f0e48a9785042bed16a3" 50 + "sha512=fa1871d66f3588a08952a9de347af8be94535476be0ed31808996eb79eb13c2e31f8be543e3123e99178a927212e08eca13c4294cd6dcd596513856907cf2218" 51 + ] 52 + } 53 + x-commit-hash: "6e524cd9567eb4d24b636d1bc7bde0659f5c8719"
+68
packages/tar-mirage/tar-mirage.3.1.2/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Read and write tar format files via MirageOS interfaces" 3 + description: """ 4 + tar is a library to read and write tar files with an emphasis on 5 + streaming. This library is functorised over external OS dependencies 6 + to facilitate embedding within MirageOS. 7 + """ 8 + maintainer: ["Reynir Björnsson <reynir@reynir.dk>" "dave@recoil.org"] 9 + authors: [ 10 + "Dave Scott" 11 + "Thomas Gazagnaire" 12 + "David Allsopp" 13 + "Antonin Décimo" 14 + "Reynir Björnsson" 15 + "Hannes Mehnert" 16 + ] 17 + license: "ISC" 18 + tags: ["org:xapi-project" "org:mirage"] 19 + homepage: "https://github.com/mirage/ocaml-tar" 20 + doc: "https://mirage.github.io/ocaml-tar/" 21 + bug-reports: "https://github.com/mirage/ocaml-tar/issues" 22 + depends: [ 23 + "dune" {>= "2.9"} 24 + "ocaml" {>= "4.08.0"} 25 + "cstruct" {>= "6.0.0"} 26 + "lwt" {>= "5.6.0"} 27 + "mirage-block" {>= "2.0.0"} 28 + "mirage-clock" {>= "4.0.0"} 29 + "mirage-kv" {>= "6.0.0"} 30 + "optint" 31 + "ptime" 32 + "tar" {= version} 33 + "mirage-block-unix" {with-test & >= "2.13.0"} 34 + "mirage-clock-unix" {with-test & >= "4.0.0"} 35 + "alcotest" {>= "1.7.0" & with-test} 36 + "alcotest-lwt" {>= "1.7.0" & with-test} 37 + "tar-unix" {with-test & = version} 38 + "odoc" {with-doc} 39 + ] 40 + conflicts: [ 41 + "result" {< "1.5"} 42 + ] 43 + build: [ 44 + ["dune" "subst"] {dev} 45 + [ 46 + "dune" 47 + "build" 48 + "-p" 49 + name 50 + "-j" 51 + jobs 52 + "--promote-install-files=false" 53 + "@install" 54 + "@runtest" {with-test} 55 + "@doc" {with-doc} 56 + ] 57 + ["dune" "install" "-p" name "--create-install-files" name] 58 + ] 59 + dev-repo: "git+https://github.com/mirage/ocaml-tar.git" 60 + url { 61 + src: 62 + "https://github.com/mirage/ocaml-tar/releases/download/v3.1.2/tar-3.1.2.tbz" 63 + checksum: [ 64 + "sha256=85c79308a41d3d594b98cfe42eaee46b875855748eb0f0e48a9785042bed16a3" 65 + "sha512=fa1871d66f3588a08952a9de347af8be94535476be0ed31808996eb79eb13c2e31f8be543e3123e99178a927212e08eca13c4294cd6dcd596513856907cf2218" 66 + ] 67 + } 68 + x-commit-hash: "6e524cd9567eb4d24b636d1bc7bde0659f5c8719"
+53
packages/tar-unix/tar-unix.3.1.2/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Decode and encode tar format files from Unix" 3 + description: """ 4 + tar is a library to read and write tar files with an emphasis on 5 + streaming. This library provides a Unix or Windows compatible interface. 6 + """ 7 + maintainer: ["Reynir Björnsson <reynir@reynir.dk>" "dave@recoil.org"] 8 + authors: [ 9 + "Dave Scott" 10 + "Thomas Gazagnaire" 11 + "David Allsopp" 12 + "Antonin Décimo" 13 + "Reynir Björnsson" 14 + "Hannes Mehnert" 15 + ] 16 + license: "ISC" 17 + tags: ["org:xapi-project" "org:mirage"] 18 + homepage: "https://github.com/mirage/ocaml-tar" 19 + doc: "https://mirage.github.io/ocaml-tar/" 20 + bug-reports: "https://github.com/mirage/ocaml-tar/issues" 21 + depends: [ 22 + "dune" {>= "2.9"} 23 + "ocaml" {>= "4.08.0"} 24 + "lwt" {>= "5.7.0"} 25 + "tar" {= version} 26 + "odoc" {with-doc} 27 + ] 28 + build: [ 29 + ["dune" "subst"] {dev} 30 + [ 31 + "dune" 32 + "build" 33 + "-p" 34 + name 35 + "-j" 36 + jobs 37 + "--promote-install-files=false" 38 + "@install" 39 + "@runtest" {with-test} 40 + "@doc" {with-doc} 41 + ] 42 + ["dune" "install" "-p" name "--create-install-files" name] 43 + ] 44 + dev-repo: "git+https://github.com/mirage/ocaml-tar.git" 45 + url { 46 + src: 47 + "https://github.com/mirage/ocaml-tar/releases/download/v3.1.2/tar-3.1.2.tbz" 48 + checksum: [ 49 + "sha256=85c79308a41d3d594b98cfe42eaee46b875855748eb0f0e48a9785042bed16a3" 50 + "sha512=fa1871d66f3588a08952a9de347af8be94535476be0ed31808996eb79eb13c2e31f8be543e3123e99178a927212e08eca13c4294cd6dcd596513856907cf2218" 51 + ] 52 + } 53 + x-commit-hash: "6e524cd9567eb4d24b636d1bc7bde0659f5c8719"
+54
packages/tar/tar.3.1.2/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Decode and encode tar format files in pure OCaml" 3 + description: """ 4 + tar is a library to read and write tar files with an emphasis on 5 + streaming. 6 + 7 + This is pure OCaml code, no C bindings. 8 + """ 9 + maintainer: ["Reynir Björnsson <reynir@reynir.dk>" "dave@recoil.org"] 10 + authors: [ 11 + "Dave Scott" 12 + "Thomas Gazagnaire" 13 + "David Allsopp" 14 + "Antonin Décimo" 15 + "Reynir Björnsson" 16 + "Hannes Mehnert" 17 + ] 18 + license: "ISC" 19 + tags: ["org:xapi-project" "org:mirage"] 20 + homepage: "https://github.com/mirage/ocaml-tar" 21 + doc: "https://mirage.github.io/ocaml-tar/" 22 + bug-reports: "https://github.com/mirage/ocaml-tar/issues" 23 + depends: [ 24 + "dune" {>= "2.9"} 25 + "ocaml" {>= "4.08.0"} 26 + "decompress" {>= "1.5.1"} 27 + "odoc" {with-doc} 28 + ] 29 + build: [ 30 + ["dune" "subst"] {dev} 31 + [ 32 + "dune" 33 + "build" 34 + "-p" 35 + name 36 + "-j" 37 + jobs 38 + "--promote-install-files=false" 39 + "@install" 40 + "@runtest" {with-test} 41 + "@doc" {with-doc} 42 + ] 43 + ["dune" "install" "-p" name "--create-install-files" name] 44 + ] 45 + dev-repo: "git+https://github.com/mirage/ocaml-tar.git" 46 + url { 47 + src: 48 + "https://github.com/mirage/ocaml-tar/releases/download/v3.1.2/tar-3.1.2.tbz" 49 + checksum: [ 50 + "sha256=85c79308a41d3d594b98cfe42eaee46b875855748eb0f0e48a9785042bed16a3" 51 + "sha512=fa1871d66f3588a08952a9de347af8be94535476be0ed31808996eb79eb13c2e31f8be543e3123e99178a927212e08eca13c4294cd6dcd596513856907cf2218" 52 + ] 53 + } 54 + x-commit-hash: "6e524cd9567eb4d24b636d1bc7bde0659f5c8719"