this repo has no description
0
fork

Configure Feed

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

Merge pull request #19802 from icristescu/release-irmin-2.8.0

[new release] irmin, et. al. (2.8.0)

authored by

Thomas Gazagnaire and committed by
GitHub
d1ad14ba fe83888b

+693
+56
packages/irmin-bench/irmin-bench.2.8.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "thomas@gazagnaire.org" 3 + authors: ["Thomas Gazagnaire"] 4 + license: "ISC" 5 + homepage: "https://github.com/mirage/irmin" 6 + bug-reports: "https://github.com/mirage/irmin/issues" 7 + dev-repo: "git+https://github.com/mirage/irmin.git" 8 + doc: "https://mirage.github.io/irmin/" 9 + 10 + build: [ 11 + ["dune" "subst"] {dev} 12 + ["dune" "build" "-p" name "-j" jobs] 13 + ] 14 + 15 + depends: [ 16 + "dune" {>= "2.7.0"} 17 + "irmin-pack" {= version} 18 + "irmin-layers" {= version} 19 + "irmin-test" {= version} 20 + "cmdliner" 21 + "logs" 22 + "lwt" {>= "5.3.0"} 23 + "ppx_deriving_yojson" 24 + "yojson" 25 + "memtrace" {>= "0.1.2"} 26 + "repr" {>= "0.3.0"} 27 + "ppx_repr" 28 + "re" {>= "1.9.0"} 29 + "fmt" 30 + "uuidm" 31 + "progress" {>="0.2.1"} 32 + "fpath" {with-test} 33 + "bentov" {with-test} 34 + "mtime" {with-test} 35 + "ppx_deriving" {with-test} 36 + "alcotest" {with-test} 37 + "rusage" 38 + "uutf" {with-test} 39 + "uucp" {with-test} 40 + "printbox" {with-test} 41 + ] 42 + 43 + synopsis: "Irmin benchmarking suite" 44 + description: """ 45 + `irmin-bench` provides access to the Irmin suite for benchmarking storage backend 46 + implementations. 47 + """ 48 + url { 49 + src: 50 + "https://github.com/mirage/irmin/releases/download/2.8.0/irmin-2.8.0.tbz" 51 + checksum: [ 52 + "sha256=652aa550ba01cb174310f8d46f3c484619e216b2f954e1f478c144cf42804b57" 53 + "sha512=d1a25bd025530a5d5b6ad86e9b41146d8c406da81998740df984d9b45047917a8d1a5330eb0b195ee5a2d25769a62bfde5b8c4389f9296ac25333791272e22de" 54 + ] 55 + } 56 + x-commit-hash: "e95b0fc693fbabad4be52a398e120d645c8e8f94"
+35
packages/irmin-chunk/irmin-chunk.2.8.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "thomas@gazagnaire.org" 3 + authors: ["Mounir Nasr Allah" "Thomas Gazagnaire"] 4 + license: "ISC" 5 + homepage: "https://github.com/mirage/irmin" 6 + bug-reports: "https://github.com/mirage/irmin/issues" 7 + dev-repo: "git+https://github.com/mirage/irmin.git" 8 + 9 + build: [ 10 + ["dune" "subst"] {dev} 11 + ["dune" "build" "-p" name "-j" jobs] 12 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 13 + ] 14 + 15 + depends: [ 16 + "ocaml" {>= "4.02.3"} 17 + "dune" {>= "2.7.0"} 18 + "irmin" {= version} 19 + "fmt" 20 + "logs" 21 + "lwt" {>= "5.3.0"} 22 + "irmin-test" {with-test & = version} 23 + "alcotest" {with-test} 24 + ] 25 + 26 + synopsis: "Irmin backend which allow to store values into chunks" 27 + url { 28 + src: 29 + "https://github.com/mirage/irmin/releases/download/2.8.0/irmin-2.8.0.tbz" 30 + checksum: [ 31 + "sha256=652aa550ba01cb174310f8d46f3c484619e216b2f954e1f478c144cf42804b57" 32 + "sha512=d1a25bd025530a5d5b6ad86e9b41146d8c406da81998740df984d9b45047917a8d1a5330eb0b195ee5a2d25769a62bfde5b8c4389f9296ac25333791272e22de" 33 + ] 34 + } 35 + x-commit-hash: "e95b0fc693fbabad4be52a398e120d645c8e8f94"
+43
packages/irmin-containers/irmin-containers.2.8.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "thomas@gazagnaire.org" 3 + authors: ["KC Sivaramakrishnan" "Anirudh Sunder Raj"] 4 + license: "ISC" 5 + homepage: "https://github.com/mirage/irmin" 6 + bug-reports: "https://github.com/mirage/irmin/issues" 7 + dev-repo: "git+https://github.com/mirage/irmin.git" 8 + doc: "https://mirage.github.io/irmin/" 9 + 10 + build: [ 11 + ["dune" "subst"] {dev} 12 + ["dune" "build" "-p" name "-j" jobs] 13 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 14 + ] 15 + 16 + depends: [ 17 + "ocaml" {>= "4.03.0"} 18 + "dune" {>= "2.7.0"} 19 + "irmin" {= version} 20 + "irmin-unix" {= version} 21 + "irmin-git" {= version} 22 + "ppx_irmin" {= version} 23 + "lwt" {>= "5.3.0"} 24 + "mtime" 25 + "alcotest" {with-test} 26 + "alcotest-lwt" {with-test} 27 + ] 28 + 29 + synopsis: "Mergeable Irmin data structures" 30 + description: """ 31 + A collection of simple, ready-to-use mergeable data structures built using 32 + Irmin. Each data structure works with an arbitrary Irmin backend and is 33 + customisable in a variety of ways. 34 + """ 35 + url { 36 + src: 37 + "https://github.com/mirage/irmin/releases/download/2.8.0/irmin-2.8.0.tbz" 38 + checksum: [ 39 + "sha256=652aa550ba01cb174310f8d46f3c484619e216b2f954e1f478c144cf42804b57" 40 + "sha512=d1a25bd025530a5d5b6ad86e9b41146d8c406da81998740df984d9b45047917a8d1a5330eb0b195ee5a2d25769a62bfde5b8c4389f9296ac25333791272e22de" 41 + ] 42 + } 43 + x-commit-hash: "e95b0fc693fbabad4be52a398e120d645c8e8f94"
+36
packages/irmin-fs/irmin-fs.2.8.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "thomas@gazagnaire.org" 3 + authors: ["Thomas Gazagnaire" "Thomas Leonard"] 4 + license: "ISC" 5 + homepage: "https://github.com/mirage/irmin" 6 + bug-reports: "https://github.com/mirage/irmin/issues" 7 + dev-repo: "git+https://github.com/mirage/irmin.git" 8 + doc: "https://mirage.github.io/irmin/" 9 + 10 + build: [ 11 + ["dune" "subst"] {dev} 12 + ["dune" "build" "-p" name "-j" jobs] 13 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 14 + ] 15 + 16 + depends: [ 17 + "ocaml" {>= "4.03.0"} 18 + "dune" {>= "2.7.0"} 19 + "irmin" {= version} 20 + "astring" 21 + "logs" 22 + "lwt" {>= "5.3.0"} 23 + "irmin-test" {with-test & = version} 24 + "alcotest" {with-test} 25 + ] 26 + 27 + synopsis: "Generic file-system backend for Irmin" 28 + url { 29 + src: 30 + "https://github.com/mirage/irmin/releases/download/2.8.0/irmin-2.8.0.tbz" 31 + checksum: [ 32 + "sha256=652aa550ba01cb174310f8d46f3c484619e216b2f954e1f478c144cf42804b57" 33 + "sha512=d1a25bd025530a5d5b6ad86e9b41146d8c406da81998740df984d9b45047917a8d1a5330eb0b195ee5a2d25769a62bfde5b8c4389f9296ac25333791272e22de" 34 + ] 35 + } 36 + x-commit-hash: "e95b0fc693fbabad4be52a398e120d645c8e8f94"
+51
packages/irmin-git/irmin-git.2.8.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "thomas@gazagnaire.org" 3 + authors: ["Thomas Gazagnaire" "Thomas Leonard"] 4 + license: "ISC" 5 + homepage: "https://github.com/mirage/irmin" 6 + bug-reports: "https://github.com/mirage/irmin/issues" 7 + dev-repo: "git+https://github.com/mirage/irmin.git" 8 + doc: "https://mirage.github.io/irmin/" 9 + 10 + build: [ 11 + ["dune" "subst"] {dev} 12 + ["dune" "build" "-p" name "-j" jobs] 13 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 14 + ] 15 + 16 + depends: [ 17 + "ocaml" {>= "4.02.3"} 18 + "dune" {>= "2.7.0"} 19 + "irmin" {= version} 20 + "ppx_irmin" {= version} 21 + "git" {>= "3.5.0"} 22 + "digestif" {>= "0.9.0"} 23 + "cstruct" 24 + "fmt" 25 + "astring" 26 + "fpath" 27 + "logs" 28 + "lwt" {>= "5.3.0"} 29 + "uri" 30 + "git-cohttp-unix" {with-test} 31 + "irmin-test" {with-test & = version} 32 + "git-unix" {with-test} 33 + "mtime" {with-test & >= "1.0.0"} 34 + "alcotest" {with-test} 35 + ] 36 + available: arch != "arm32" & arch != "x86_32" & arch != "s390x" 37 + 38 + synopsis: "Git backend for Irmin" 39 + description: """ 40 + `Irmin_git` expose a bi-directional bridge between Git repositories and 41 + Irmin stores. 42 + """ 43 + url { 44 + src: 45 + "https://github.com/mirage/irmin/releases/download/2.8.0/irmin-2.8.0.tbz" 46 + checksum: [ 47 + "sha256=652aa550ba01cb174310f8d46f3c484619e216b2f954e1f478c144cf42804b57" 48 + "sha512=d1a25bd025530a5d5b6ad86e9b41146d8c406da81998740df984d9b45047917a8d1a5330eb0b195ee5a2d25769a62bfde5b8c4389f9296ac25333791272e22de" 49 + ] 50 + } 51 + x-commit-hash: "e95b0fc693fbabad4be52a398e120d645c8e8f94"
+45
packages/irmin-graphql/irmin-graphql.2.8.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "Andreas Garnaes <andreas.garnaes@gmail.com>" 3 + authors: "Andreas Garnaes <andreas.garnaes@gmail.com>" 4 + license: "ISC" 5 + homepage: "https://github.com/mirage/irmin" 6 + bug-reports: "https://github.com/mirage/irmin/issues" 7 + dev-repo: "git+https://github.com/mirage/irmin.git" 8 + doc: "https://mirage.github.io/irmin/" 9 + 10 + build: [ 11 + ["dune" "subst"] {dev} 12 + ["dune" "build" "-p" name "-j" jobs] 13 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 14 + ] 15 + 16 + depends: [ 17 + "ocaml" {>= "4.03.0"} 18 + "dune" {>= "2.7.0"} 19 + "irmin" {= version} 20 + "graphql" {>= "0.13.0"} 21 + "graphql-lwt" {>= "0.13.0"} 22 + "graphql-cohttp" {>= "0.13.0"} 23 + "graphql_parser" {>= "0.13.0"} 24 + "cohttp-lwt" 25 + "cohttp" 26 + "fmt" 27 + "lwt" {>= "5.3.0"} 28 + "alcotest-lwt" {with-test & >= "1.1.0"} 29 + "yojson" {with-test} 30 + "cohttp-lwt-unix" {with-test} 31 + "alcotest" {with-test & >= "1.2.3"} 32 + "logs" {with-test} 33 + ] 34 + 35 + 36 + synopsis: "GraphQL server for Irmin" 37 + url { 38 + src: 39 + "https://github.com/mirage/irmin/releases/download/2.8.0/irmin-2.8.0.tbz" 40 + checksum: [ 41 + "sha256=652aa550ba01cb174310f8d46f3c484619e216b2f954e1f478c144cf42804b57" 42 + "sha512=d1a25bd025530a5d5b6ad86e9b41146d8c406da81998740df984d9b45047917a8d1a5330eb0b195ee5a2d25769a62bfde5b8c4389f9296ac25333791272e22de" 43 + ] 44 + } 45 + x-commit-hash: "e95b0fc693fbabad4be52a398e120d645c8e8f94"
+46
packages/irmin-http/irmin-http.2.8.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "thomas@gazagnaire.org" 3 + authors: ["Thomas Gazagnaire" "Thomas Leonard"] 4 + license: "ISC" 5 + homepage: "https://github.com/mirage/irmin" 6 + bug-reports: "https://github.com/mirage/irmin/issues" 7 + dev-repo: "git+https://github.com/mirage/irmin.git" 8 + doc: "https://mirage.github.io/irmin/" 9 + 10 + build: [ 11 + ["dune" "subst"] {dev} 12 + ["dune" "build" "-p" name "-j" jobs] 13 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 14 + ] 15 + 16 + depends: [ 17 + "ocaml" {>= "4.02.3"} 18 + "dune" {>= "2.7.0"} 19 + "crunch" {>= "2.2.0"} 20 + "webmachine" {>= "0.6.0"} 21 + "irmin" {= version} 22 + "ppx_irmin" {= version} 23 + "cohttp-lwt" {>= "1.0.0"} 24 + "astring" 25 + "cohttp" 26 + "fmt" 27 + "jsonm" 28 + "logs" 29 + "lwt" {>= "5.3.0"} 30 + "uri" 31 + "irmin-git" {with-test & = version} 32 + "irmin-test" {with-test & = version} 33 + "git-unix" {with-test & >= "3.5.0"} 34 + "digestif" {with-test & >= "0.9.0"} 35 + ] 36 + 37 + synopsis: "HTTP client and server for Irmin" 38 + url { 39 + src: 40 + "https://github.com/mirage/irmin/releases/download/2.8.0/irmin-2.8.0.tbz" 41 + checksum: [ 42 + "sha256=652aa550ba01cb174310f8d46f3c484619e216b2f954e1f478c144cf42804b57" 43 + "sha512=d1a25bd025530a5d5b6ad86e9b41146d8c406da81998740df984d9b45047917a8d1a5330eb0b195ee5a2d25769a62bfde5b8c4389f9296ac25333791272e22de" 44 + ] 45 + } 46 + x-commit-hash: "e95b0fc693fbabad4be52a398e120d645c8e8f94"
+34
packages/irmin-layers/irmin-layers.2.8.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "thomas@gazagnaire.org" 3 + authors: ["Thomas Gazagnaire"] 4 + license: "ISC" 5 + homepage: "https://github.com/mirage/irmin" 6 + bug-reports: "https://github.com/mirage/irmin/issues" 7 + dev-repo: "git+https://github.com/mirage/irmin.git" 8 + doc: "https://mirage.github.io/irmin/" 9 + 10 + build: [ 11 + ["dune" "subst"] {dev} 12 + ["dune" "build" "-p" name "-j" jobs] 13 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 14 + ] 15 + 16 + depends: [ 17 + "ocaml" {>= "4.03.0"} 18 + "dune" {>= "2.7.0"} 19 + "mtime" {>= "1.0.0"} 20 + "irmin" {= version} 21 + "logs" 22 + "lwt" {>= "5.3.0"} 23 + ] 24 + 25 + synopsis: "Combine different Irmin stores into a single, layered store" 26 + url { 27 + src: 28 + "https://github.com/mirage/irmin/releases/download/2.8.0/irmin-2.8.0.tbz" 29 + checksum: [ 30 + "sha256=652aa550ba01cb174310f8d46f3c484619e216b2f954e1f478c144cf42804b57" 31 + "sha512=d1a25bd025530a5d5b6ad86e9b41146d8c406da81998740df984d9b45047917a8d1a5330eb0b195ee5a2d25769a62bfde5b8c4389f9296ac25333791272e22de" 32 + ] 33 + } 34 + x-commit-hash: "e95b0fc693fbabad4be52a398e120d645c8e8f94"
+37
packages/irmin-mirage-git/irmin-mirage-git.2.8.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "thomas@gazagnaire.org" 3 + authors: "Thomas Gazagnaire" 4 + license: "ISC" 5 + homepage: "https://github.com/mirage/irmin" 6 + bug-reports: "https://github.com/mirage/irmin/issues" 7 + dev-repo: "git+https://github.com/mirage/irmin.git" 8 + doc: "https://mirage.github.io/irmin/" 9 + 10 + build: [ 11 + ["dune" "subst"] {dev} 12 + ["dune" "build" "-p" name "-j" jobs] 13 + ] 14 + 15 + depends: [ 16 + "dune" {>= "2.7.0"} 17 + "irmin-mirage" {= version} 18 + "irmin-git" {= version} 19 + "mirage-kv" {>= "3.0.0"} 20 + "git-paf" {>= "3.5.0"} 21 + "fmt" 22 + "git" {>= "3.5.0"} 23 + "lwt" {>= "5.3.0"} 24 + "mirage-clock" 25 + "uri" 26 + ] 27 + 28 + synopsis: "MirageOS-compatible Irmin stores" 29 + url { 30 + src: 31 + "https://github.com/mirage/irmin/releases/download/2.8.0/irmin-2.8.0.tbz" 32 + checksum: [ 33 + "sha256=652aa550ba01cb174310f8d46f3c484619e216b2f954e1f478c144cf42804b57" 34 + "sha512=d1a25bd025530a5d5b6ad86e9b41146d8c406da81998740df984d9b45047917a8d1a5330eb0b195ee5a2d25769a62bfde5b8c4389f9296ac25333791272e22de" 35 + ] 36 + } 37 + x-commit-hash: "e95b0fc693fbabad4be52a398e120d645c8e8f94"
+35
packages/irmin-mirage-graphql/irmin-mirage-graphql.2.8.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "thomas@gazagnaire.org" 3 + authors: "Thomas Gazagnaire" 4 + license: "ISC" 5 + homepage: "https://github.com/mirage/irmin" 6 + bug-reports: "https://github.com/mirage/irmin/issues" 7 + dev-repo: "git+https://github.com/mirage/irmin.git" 8 + doc: "https://mirage.github.io/irmin/" 9 + 10 + build: [ 11 + ["dune" "subst"] {dev} 12 + ["dune" "build" "-p" name "-j" jobs] 13 + ] 14 + 15 + depends: [ 16 + "dune" {>= "2.7.0"} 17 + "irmin-mirage" {= version} 18 + "irmin-graphql" {= version} 19 + "mirage-clock" 20 + "cohttp-lwt" 21 + "lwt" {>= "5.3.0"} 22 + "uri" 23 + "git" {>= "3.4.0"} 24 + ] 25 + 26 + synopsis: "MirageOS-compatible Irmin stores" 27 + url { 28 + src: 29 + "https://github.com/mirage/irmin/releases/download/2.8.0/irmin-2.8.0.tbz" 30 + checksum: [ 31 + "sha256=652aa550ba01cb174310f8d46f3c484619e216b2f954e1f478c144cf42804b57" 32 + "sha512=d1a25bd025530a5d5b6ad86e9b41146d8c406da81998740df984d9b45047917a8d1a5330eb0b195ee5a2d25769a62bfde5b8c4389f9296ac25333791272e22de" 33 + ] 34 + } 35 + x-commit-hash: "e95b0fc693fbabad4be52a398e120d645c8e8f94"
+32
packages/irmin-mirage/irmin-mirage.2.8.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "thomas@gazagnaire.org" 3 + authors: "Thomas Gazagnaire" 4 + license: "ISC" 5 + homepage: "https://github.com/mirage/irmin" 6 + bug-reports: "https://github.com/mirage/irmin/issues" 7 + dev-repo: "git+https://github.com/mirage/irmin.git" 8 + doc: "https://mirage.github.io/irmin/" 9 + 10 + build: [ 11 + ["dune" "subst"] {dev} 12 + ["dune" "build" "-p" name "-j" jobs] 13 + ] 14 + 15 + depends: [ 16 + "dune" {>= "2.7.0"} 17 + "irmin" {= version} 18 + "fmt" 19 + "ptime" 20 + "mirage-clock" {>= "3.0.0"} 21 + ] 22 + 23 + synopsis: "MirageOS-compatible Irmin stores" 24 + url { 25 + src: 26 + "https://github.com/mirage/irmin/releases/download/2.8.0/irmin-2.8.0.tbz" 27 + checksum: [ 28 + "sha256=652aa550ba01cb174310f8d46f3c484619e216b2f954e1f478c144cf42804b57" 29 + "sha512=d1a25bd025530a5d5b6ad86e9b41146d8c406da81998740df984d9b45047917a8d1a5330eb0b195ee5a2d25769a62bfde5b8c4389f9296ac25333791272e22de" 30 + ] 31 + } 32 + x-commit-hash: "e95b0fc693fbabad4be52a398e120d645c8e8f94"
+44
packages/irmin-pack/irmin-pack.2.8.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "thomas@gazagnaire.org" 3 + authors: ["Thomas Gazagnaire"] 4 + license: "ISC" 5 + homepage: "https://github.com/mirage/irmin" 6 + bug-reports: "https://github.com/mirage/irmin/issues" 7 + dev-repo: "git+https://github.com/mirage/irmin.git" 8 + 9 + build: [ 10 + ["dune" "subst"] {dev} 11 + ["dune" "build" "-p" name "-j" jobs] 12 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 13 + ] 14 + 15 + depends: [ 16 + "ocaml" {>= "4.08.0"} 17 + "dune" {>= "2.7.0"} 18 + "irmin" {= version} 19 + "irmin-layers" {= version} 20 + "ppx_irmin" {= version} 21 + "index" {>= "1.4.2"} 22 + "fmt" 23 + "logs" 24 + "lwt" {>= "5.3.0"} 25 + "mtime" 26 + "cmdliner" 27 + "optint" {>= "0.1.0"} 28 + "irmin-test" {with-test & = version} 29 + "alcotest-lwt" {with-test} 30 + "astring" {with-test} 31 + "fpath" {with-test} 32 + "alcotest" {with-test} 33 + ] 34 + 35 + synopsis: "Irmin backend which stores values in a pack file" 36 + url { 37 + src: 38 + "https://github.com/mirage/irmin/releases/download/2.8.0/irmin-2.8.0.tbz" 39 + checksum: [ 40 + "sha256=652aa550ba01cb174310f8d46f3c484619e216b2f954e1f478c144cf42804b57" 41 + "sha512=d1a25bd025530a5d5b6ad86e9b41146d8c406da81998740df984d9b45047917a8d1a5330eb0b195ee5a2d25769a62bfde5b8c4389f9296ac25333791272e22de" 42 + ] 43 + } 44 + x-commit-hash: "e95b0fc693fbabad4be52a398e120d645c8e8f94"
+47
packages/irmin-test/irmin-test.2.8.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "thomas@gazagnaire.org" 3 + authors: ["Thomas Gazagnaire" "Thomas Leonard"] 4 + license: "ISC" 5 + homepage: "https://github.com/mirage/irmin" 6 + bug-reports: "https://github.com/mirage/irmin/issues" 7 + dev-repo: "git+https://github.com/mirage/irmin.git" 8 + doc: "https://mirage.github.io/irmin/" 9 + 10 + build: [ 11 + ["dune" "subst"] {dev} 12 + ["dune" "build" "-p" name "-j" jobs] 13 + ] 14 + 15 + depends: [ 16 + "irmin" {= version} 17 + "irmin-layers" {= version} 18 + "ppx_irmin" {= version} 19 + "ocaml" {>= "4.02.3"} 20 + "dune" {>= "2.7.0"} 21 + "alcotest" {>= "1.0.1"} 22 + "mtime" {>= "1.0.0"} 23 + "astring" 24 + "fmt" 25 + "jsonm" 26 + "logs" 27 + "lwt" {>= "5.3.0"} 28 + "metrics-unix" 29 + "ocaml-syntax-shims" 30 + "cmdliner" 31 + "metrics" {>= "0.2.0"} 32 + ] 33 + 34 + synopsis: "Irmin test suite" 35 + description: """ 36 + `irmin-test` provides access to the Irmin test suite for testing storage backend 37 + implementations. 38 + """ 39 + url { 40 + src: 41 + "https://github.com/mirage/irmin/releases/download/2.8.0/irmin-2.8.0.tbz" 42 + checksum: [ 43 + "sha256=652aa550ba01cb174310f8d46f3c484619e216b2f954e1f478c144cf42804b57" 44 + "sha512=d1a25bd025530a5d5b6ad86e9b41146d8c406da81998740df984d9b45047917a8d1a5330eb0b195ee5a2d25769a62bfde5b8c4389f9296ac25333791272e22de" 45 + ] 46 + } 47 + x-commit-hash: "e95b0fc693fbabad4be52a398e120d645c8e8f94"
+66
packages/irmin-unix/irmin-unix.2.8.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "thomas@gazagnaire.org" 3 + authors: ["Thomas Gazagnaire" "Thomas Leonard"] 4 + license: "ISC" 5 + homepage: "https://github.com/mirage/irmin" 6 + bug-reports: "https://github.com/mirage/irmin/issues" 7 + dev-repo: "git+https://github.com/mirage/irmin.git" 8 + doc: "https://mirage.github.io/irmin/" 9 + 10 + build: [ 11 + ["dune" "subst"] {dev} 12 + ["dune" "build" "-p" name "-j" jobs] 13 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 14 + ] 15 + 16 + available: arch != "arm32" & arch != "x86_32" 17 + 18 + depends: [ 19 + "ocaml" {>= "4.01.0"} 20 + "dune" {>= "2.7.0"} 21 + "irmin" {= version} 22 + "irmin-git" {= version} 23 + "irmin-http" {= version} 24 + "irmin-fs" {= version} 25 + "irmin-pack" {= version} 26 + "irmin-graphql" {= version} 27 + "irmin-layers" {= version} 28 + "git-unix" {>= "3.5.0"} 29 + "digestif" {>= "0.9.0"} 30 + "irmin-watcher" {>= "0.2.0"} 31 + "yaml" {>= "0.1.0"} 32 + "astring" 33 + "astring" 34 + "cohttp" 35 + "cohttp-lwt" 36 + "cohttp-lwt-unix" 37 + "conduit" 38 + "conduit-lwt" 39 + "conduit-lwt-unix" 40 + "logs" 41 + "uri" 42 + "cmdliner" 43 + "cohttp-lwt-unix" 44 + "fmt" 45 + "git" {>= "3.5.0"} 46 + "git-cohttp-unix" {>= "3.5.0"} 47 + "lwt" {>= "5.3.0"} 48 + "irmin-test" {with-test & = version} 49 + "alcotest" {with-test} 50 + ] 51 + 52 + synopsis: "Unix backends for Irmin" 53 + description: """ 54 + `Irmin_unix` defines Unix backends (including Git and HTTP) for Irmin, as well 55 + as a very simple CLI tool (called `irmin`) to manipulate and inspect Irmin 56 + stores. 57 + """ 58 + url { 59 + src: 60 + "https://github.com/mirage/irmin/releases/download/2.8.0/irmin-2.8.0.tbz" 61 + checksum: [ 62 + "sha256=652aa550ba01cb174310f8d46f3c484619e216b2f954e1f478c144cf42804b57" 63 + "sha512=d1a25bd025530a5d5b6ad86e9b41146d8c406da81998740df984d9b45047917a8d1a5330eb0b195ee5a2d25769a62bfde5b8c4389f9296ac25333791272e22de" 64 + ] 65 + } 66 + x-commit-hash: "e95b0fc693fbabad4be52a398e120d645c8e8f94"
+57
packages/irmin/irmin.2.8.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "thomas@gazagnaire.org" 3 + authors: ["Thomas Gazagnaire" "Thomas Leonard"] 4 + license: "ISC" 5 + homepage: "https://github.com/mirage/irmin" 6 + bug-reports: "https://github.com/mirage/irmin/issues" 7 + dev-repo: "git+https://github.com/mirage/irmin.git" 8 + doc: "https://mirage.github.io/irmin/" 9 + 10 + build: [ 11 + ["dune" "subst"] {dev} 12 + ["dune" "build" "-p" name "-j" jobs] 13 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 14 + ] 15 + 16 + depends: [ 17 + "ocaml" {>= "4.08.0"} 18 + "dune" {>= "2.7.0"} 19 + "repr" {>= "0.5.0"} 20 + "fmt" {>= "0.8.0"} 21 + "uri" {>= "1.3.12"} 22 + "uutf" 23 + "jsonm" {>= "1.0.0"} 24 + "lwt" {>= "5.3.0"} 25 + "digestif" {>= "0.9.0"} 26 + "ocamlgraph" 27 + "logs" {>= "0.5.0"} 28 + "bheap" {>= "2.0.0"} 29 + "astring" 30 + "ppx_irmin" {= version} 31 + "hex" {with-test} 32 + "alcotest" {>= "1.1.0" & with-test} 33 + "alcotest-lwt" {with-test} 34 + ] 35 + conflicts: [ 36 + "result" {< "1.5"} # Requires `Result = Stdlib.Result` 37 + ] 38 + synopsis: """ 39 + Irmin, a distributed database that follows the same design principles as Git 40 + """ 41 + description: """ 42 + Irmin is a library for persistent stores with built-in snapshot, 43 + branching and reverting mechanisms. It is designed to use a large 44 + variety of backends. Irmin is written in pure OCaml and does not 45 + depend on external C stubs; it aims to run everywhere, from Linux, 46 + to browsers and Xen unikernels. 47 + """ 48 + url { 49 + src: 50 + "https://github.com/mirage/irmin/releases/download/2.8.0/irmin-2.8.0.tbz" 51 + checksum: [ 52 + "sha256=652aa550ba01cb174310f8d46f3c484619e216b2f954e1f478c144cf42804b57" 53 + "sha512=d1a25bd025530a5d5b6ad86e9b41146d8c406da81998740df984d9b45047917a8d1a5330eb0b195ee5a2d25769a62bfde5b8c4389f9296ac25333791272e22de" 54 + ] 55 + } 56 + x-commit-hash: "e95b0fc693fbabad4be52a398e120d645c8e8f94" 57 + available: [ arch != "s390x" ]
+29
packages/ppx_irmin/ppx_irmin.2.8.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "Craig Ferguson <craig@tarides.com>" 3 + homepage: "https://github.com/mirage/irmin" 4 + bug-reports: "https://github.com/mirage/irmin/issues" 5 + license: "ISC" 6 + dev-repo: "git+https://github.com/mirage/irmin.git" 7 + 8 + build: [ 9 + ["dune" "subst"] {dev} 10 + ["dune" "build" "-p" name "-j" jobs] 11 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 12 + ] 13 + 14 + depends: [ 15 + "dune" {>= "2.7.0"} 16 + "ppx_repr" {>= "0.2.0"} 17 + ] 18 + 19 + synopsis: "PPX deriver for Irmin type representations" 20 + authors: "Craig Ferguson <craig@tarides.com>" 21 + url { 22 + src: 23 + "https://github.com/mirage/irmin/releases/download/2.8.0/irmin-2.8.0.tbz" 24 + checksum: [ 25 + "sha256=652aa550ba01cb174310f8d46f3c484619e216b2f954e1f478c144cf42804b57" 26 + "sha512=d1a25bd025530a5d5b6ad86e9b41146d8c406da81998740df984d9b45047917a8d1a5330eb0b195ee5a2d25769a62bfde5b8c4389f9296ac25333791272e22de" 27 + ] 28 + } 29 + x-commit-hash: "e95b0fc693fbabad4be52a398e120d645c8e8f94"