this repo has no description
0
fork

Configure Feed

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

Merge pull request #25181 from benmandrew/release-current-v0.6.6

[new release] current (10 packages) (0.6.6)

authored by

Marcello Seri and committed by
GitHub
2ff25bbe f0a37f5f

+832
+95
packages/current/current.0.6.6/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Pipeline language for keeping things up-to-date" 3 + description: """ 4 + OCurrent provides an OCaml eDSL for writing CI/CD pipelines. 5 + 6 + It is used in ocaml-ci (which provides CI for OCaml projects on GitHub), 7 + and in docker-base-images (a pipeline that builds Docker images for various 8 + Linux distributions, OCaml compiler versions and CPU types, and pushes them 9 + to Docker Hub). 10 + 11 + A pipeline is written much like you would write a one-shot sequential script, 12 + but OCurrent will automatically re-run steps when the inputs change, and will 13 + run steps in parallel where possible.""" 14 + maintainer: ["Tim McGilchrist <timmcgil@gmail.com>"] 15 + authors: [ 16 + "Thomas Leonard <talex5@gmail.com>" 17 + "Antonin Décimo <antonin@tarides.com>" 18 + "Tim McGilchrist <timmcgil@gmail.com>" 19 + "Craig Ferguson <me@craigfe.io>" 20 + "Etienne MARAIS <etienne@maiste.fr>" 21 + "Anil Madhavapeddy <anil@recoil.org>" 22 + "David Allsopp <david.allsopp@metastack.com>" 23 + "Ewan Mellor <ewan@tarides.com>" 24 + "Kate <kit.ty.kate@disroot.org>" 25 + "Mark Elvers <mark.elvers@tunbury.org>" 26 + "Puneeth Chaganti <punchagan@muse-amuse.in>" 27 + "Lucas Pluvinage <lucas@tarides.com>" 28 + "Navin Keswani <navin@novemberkilo.com>" 29 + "Thomas Gazagnaire <thomas@gazagnaire.org>" 30 + "Patrick Ferris <patrick@sirref.org>" 31 + "Arthur Wendling <art.wendling@gmail.com>" 32 + "Anurag Soni <anurag@sonianurag.com>" 33 + "Ambre Austen Suhamy <ambre@tarides.com>" 34 + "Hannes Mehnert <hannes@mehnert.org>" 35 + "Ben Andrew <benmandrew@gmail.com>" 36 + "Gargi Sharma <gs051095@gmail.com>" 37 + "Jonathan Coates <git@squiddev.cc>" 38 + "Jules Aguillon <juloo.dsi@gmail.com>" 39 + "Magnus Skjegstad <magnus@skjegstad.com>" 40 + "Shon Feder <shon.feder@gmail.com>" 41 + "smolck <46855713+smolck@users.noreply.github.com>" 42 + "tatchi <corentin.leruth@gmail.com>" 43 + ] 44 + license: "Apache-2.0" 45 + homepage: "https://github.com/ocurrent/ocurrent" 46 + doc: "https://ocurrent.github.io/ocurrent/" 47 + bug-reports: "https://github.com/ocurrent/ocurrent/issues" 48 + depends: [ 49 + "dune" {>= "3.3"} 50 + "ocaml" {>= "4.12.0"} 51 + "astring" {>= "0.8.5"} 52 + "bos" 53 + "cmdliner" {>= "1.1.0"} 54 + "conf-libev" {os != "win32"} 55 + "current_incr" {>= "0.6.1"} 56 + "duration" 57 + "fmt" {>= "0.8.9"} 58 + "fpath" {>= "0.7.3"} 59 + "logs" {>= "0.7.0"} 60 + "lwt" {>= "5.6.1"} 61 + "lwt-dllist" 62 + "ppx_deriving" 63 + "prometheus" 64 + "re" {>= "1.9.0"} 65 + "result" {>= "1.5"} 66 + "sqlite3" 67 + "alcotest" {with-test & >= "1.2.0"} 68 + "alcotest-lwt" {with-test & >= "1.2.0"} 69 + "prometheus-app" {with-test & >= "1.2"} 70 + "odoc" {with-doc} 71 + ] 72 + build: [ 73 + ["dune" "subst"] {dev} 74 + [ 75 + "dune" 76 + "build" 77 + "-p" 78 + name 79 + "-j" 80 + jobs 81 + "@install" 82 + "@runtest" {with-test} 83 + "@doc" {with-doc} 84 + ] 85 + ] 86 + dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 87 + url { 88 + src: 89 + "https://github.com/ocurrent/ocurrent/releases/download/v0.6.6/current-0.6.6.tbz" 90 + checksum: [ 91 + "sha256=2329288bcbb455a3b8997f15d0090474e42274935379bc00d12abd22dcbf9990" 92 + "sha512=27525c17c09fe90f2554701c60ef5d6f1d4b42f13f3c4245becbfecd0178f102739ec0a22732b2ed926510dd33d7d90a8f001df086e840279493182783d6c676" 93 + ] 94 + } 95 + x-commit-hash: "bfc886e78e6da9e47904d2dfc7e11ad604af735f"
+84
packages/current_docker/current_docker.0.6.6/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "OCurrent Docker plugin" 3 + description: """ 4 + OCurrent provides an OCaml eDSL for writing CI/CD pipelines. 5 + 6 + This package provides a plugin for interacting with Docker. 7 + It can pull, build, run and push images, and can coordinate 8 + multiple Docker Engine instances.""" 9 + maintainer: ["Tim McGilchrist <timmcgil@gmail.com>"] 10 + authors: [ 11 + "Thomas Leonard <talex5@gmail.com>" 12 + "Antonin Décimo <antonin@tarides.com>" 13 + "Tim McGilchrist <timmcgil@gmail.com>" 14 + "Craig Ferguson <me@craigfe.io>" 15 + "Etienne MARAIS <etienne@maiste.fr>" 16 + "Anil Madhavapeddy <anil@recoil.org>" 17 + "David Allsopp <david.allsopp@metastack.com>" 18 + "Ewan Mellor <ewan@tarides.com>" 19 + "Kate <kit.ty.kate@disroot.org>" 20 + "Mark Elvers <mark.elvers@tunbury.org>" 21 + "Puneeth Chaganti <punchagan@muse-amuse.in>" 22 + "Lucas Pluvinage <lucas@tarides.com>" 23 + "Navin Keswani <navin@novemberkilo.com>" 24 + "Thomas Gazagnaire <thomas@gazagnaire.org>" 25 + "Patrick Ferris <patrick@sirref.org>" 26 + "Arthur Wendling <art.wendling@gmail.com>" 27 + "Anurag Soni <anurag@sonianurag.com>" 28 + "Ambre Austen Suhamy <ambre@tarides.com>" 29 + "Hannes Mehnert <hannes@mehnert.org>" 30 + "Ben Andrew <benmandrew@gmail.com>" 31 + "Gargi Sharma <gs051095@gmail.com>" 32 + "Jonathan Coates <git@squiddev.cc>" 33 + "Jules Aguillon <juloo.dsi@gmail.com>" 34 + "Magnus Skjegstad <magnus@skjegstad.com>" 35 + "Shon Feder <shon.feder@gmail.com>" 36 + "smolck <46855713+smolck@users.noreply.github.com>" 37 + "tatchi <corentin.leruth@gmail.com>" 38 + ] 39 + license: "Apache-2.0" 40 + homepage: "https://github.com/ocurrent/ocurrent" 41 + doc: "https://ocurrent.github.io/ocurrent/" 42 + bug-reports: "https://github.com/ocurrent/ocurrent/issues" 43 + depends: [ 44 + "dune" {>= "3.3"} 45 + "current" {= version} 46 + "current_git" {= version} 47 + "ocaml" {>= "4.12.0"} 48 + "astring" {>= "0.8.5"} 49 + "bos" {>= "0.2.0"} 50 + "duration" {>= "0.1.3"} 51 + "fmt" {>= "0.8.9"} 52 + "fpath" {>= "0.7.3"} 53 + "logs" {>= "0.7.0"} 54 + "lwt" {>= "5.6.1"} 55 + "ppx_deriving" 56 + "ppx_deriving_yojson" {>= "3.5.1"} 57 + "result" {>= "1.5"} 58 + "yojson" 59 + "odoc" {with-doc} 60 + ] 61 + build: [ 62 + ["dune" "subst"] {dev} 63 + [ 64 + "dune" 65 + "build" 66 + "-p" 67 + name 68 + "-j" 69 + jobs 70 + "@install" 71 + "@runtest" {with-test} 72 + "@doc" {with-doc} 73 + ] 74 + ] 75 + dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 76 + url { 77 + src: 78 + "https://github.com/ocurrent/ocurrent/releases/download/v0.6.6/current-0.6.6.tbz" 79 + checksum: [ 80 + "sha256=2329288bcbb455a3b8997f15d0090474e42274935379bc00d12abd22dcbf9990" 81 + "sha512=27525c17c09fe90f2554701c60ef5d6f1d4b42f13f3c4245becbfecd0178f102739ec0a22732b2ed926510dd33d7d90a8f001df086e840279493182783d6c676" 82 + ] 83 + } 84 + x-commit-hash: "bfc886e78e6da9e47904d2dfc7e11ad604af735f"
+99
packages/current_examples/current_examples.0.6.6/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Example pipelines for OCurrent" 3 + description: """ 4 + OCurrent provides an OCaml eDSL for writing CI/CD pipelines. 5 + 6 + This package provides some example pipelines. 7 + It exists mainly to test the integration of various OCurrent 8 + plugins.""" 9 + maintainer: ["Tim McGilchrist <timmcgil@gmail.com>"] 10 + authors: [ 11 + "Thomas Leonard <talex5@gmail.com>" 12 + "Antonin Décimo <antonin@tarides.com>" 13 + "Tim McGilchrist <timmcgil@gmail.com>" 14 + "Craig Ferguson <me@craigfe.io>" 15 + "Etienne MARAIS <etienne@maiste.fr>" 16 + "Anil Madhavapeddy <anil@recoil.org>" 17 + "David Allsopp <david.allsopp@metastack.com>" 18 + "Ewan Mellor <ewan@tarides.com>" 19 + "Kate <kit.ty.kate@disroot.org>" 20 + "Mark Elvers <mark.elvers@tunbury.org>" 21 + "Puneeth Chaganti <punchagan@muse-amuse.in>" 22 + "Lucas Pluvinage <lucas@tarides.com>" 23 + "Navin Keswani <navin@novemberkilo.com>" 24 + "Thomas Gazagnaire <thomas@gazagnaire.org>" 25 + "Patrick Ferris <patrick@sirref.org>" 26 + "Arthur Wendling <art.wendling@gmail.com>" 27 + "Anurag Soni <anurag@sonianurag.com>" 28 + "Ambre Austen Suhamy <ambre@tarides.com>" 29 + "Hannes Mehnert <hannes@mehnert.org>" 30 + "Ben Andrew <benmandrew@gmail.com>" 31 + "Gargi Sharma <gs051095@gmail.com>" 32 + "Jonathan Coates <git@squiddev.cc>" 33 + "Jules Aguillon <juloo.dsi@gmail.com>" 34 + "Magnus Skjegstad <magnus@skjegstad.com>" 35 + "Shon Feder <shon.feder@gmail.com>" 36 + "smolck <46855713+smolck@users.noreply.github.com>" 37 + "tatchi <corentin.leruth@gmail.com>" 38 + ] 39 + license: "Apache-2.0" 40 + homepage: "https://github.com/ocurrent/ocurrent" 41 + doc: "https://ocurrent.github.io/ocurrent/" 42 + bug-reports: "https://github.com/ocurrent/ocurrent/issues" 43 + depends: [ 44 + "dune" {>= "3.3"} 45 + "current" {= version} 46 + "current_docker" {= version} 47 + "current_git" {= version} 48 + "current_github" {= version} 49 + "current_gitlab" {= version} 50 + "current_rpc" {= version} 51 + "current_web" {= version} 52 + "current_ssh" {= version} 53 + "ocaml" {>= "4.12.0"} 54 + "capnp-rpc" {>= "1.2.3"} 55 + "capnp-rpc-lwt" {>= "1.2.3"} 56 + "capnp-rpc-net" {>= "1.2.3"} 57 + "capnp-rpc-unix" {>= "1.2.3"} 58 + "cmdliner" {>= "1.1.0"} 59 + "duration" 60 + "dockerfile" {>= "7.0.0"} 61 + "fmt" {>= "0.8.9"} 62 + "fpath" {>= "0.7.3"} 63 + "logs" {>= "0.7.0"} 64 + "lwt" {>= "5.6.1"} 65 + "ppx_deriving" {>= "5.1"} 66 + "ppx_deriving_yojson" {>= "3.6.1"} 67 + "prometheus" {>= "0.7"} 68 + "prometheus-app" {>= "1.2"} 69 + "result" {>= "1.5"} 70 + "routes" {>= "2.0.0"} 71 + "uri" {>= "4.0.0"} 72 + "yojson" {>= "1.7.0"} 73 + "mdx" {with-test} 74 + "odoc" {with-doc} 75 + ] 76 + build: [ 77 + ["dune" "subst"] {dev} 78 + [ 79 + "dune" 80 + "build" 81 + "-p" 82 + name 83 + "-j" 84 + jobs 85 + "@install" 86 + "@runtest" {with-test} 87 + "@doc" {with-doc} 88 + ] 89 + ] 90 + dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 91 + url { 92 + src: 93 + "https://github.com/ocurrent/ocurrent/releases/download/v0.6.6/current-0.6.6.tbz" 94 + checksum: [ 95 + "sha256=2329288bcbb455a3b8997f15d0090474e42274935379bc00d12abd22dcbf9990" 96 + "sha512=27525c17c09fe90f2554701c60ef5d6f1d4b42f13f3c4245becbfecd0178f102739ec0a22732b2ed926510dd33d7d90a8f001df086e840279493182783d6c676" 97 + ] 98 + } 99 + x-commit-hash: "bfc886e78e6da9e47904d2dfc7e11ad604af735f"
+88
packages/current_git/current_git.0.6.6/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Git plugin for OCurrent" 3 + description: """ 4 + OCurrent provides an OCaml eDSL for writing CI/CD pipelines. 5 + 6 + This package provides primitives for interacting with Git. 7 + It can pull from remote repositories, or monitor local ones for changes.""" 8 + maintainer: ["Tim McGilchrist <timmcgil@gmail.com>"] 9 + authors: [ 10 + "Thomas Leonard <talex5@gmail.com>" 11 + "Antonin Décimo <antonin@tarides.com>" 12 + "Tim McGilchrist <timmcgil@gmail.com>" 13 + "Craig Ferguson <me@craigfe.io>" 14 + "Etienne MARAIS <etienne@maiste.fr>" 15 + "Anil Madhavapeddy <anil@recoil.org>" 16 + "David Allsopp <david.allsopp@metastack.com>" 17 + "Ewan Mellor <ewan@tarides.com>" 18 + "Kate <kit.ty.kate@disroot.org>" 19 + "Mark Elvers <mark.elvers@tunbury.org>" 20 + "Puneeth Chaganti <punchagan@muse-amuse.in>" 21 + "Lucas Pluvinage <lucas@tarides.com>" 22 + "Navin Keswani <navin@novemberkilo.com>" 23 + "Thomas Gazagnaire <thomas@gazagnaire.org>" 24 + "Patrick Ferris <patrick@sirref.org>" 25 + "Arthur Wendling <art.wendling@gmail.com>" 26 + "Anurag Soni <anurag@sonianurag.com>" 27 + "Ambre Austen Suhamy <ambre@tarides.com>" 28 + "Hannes Mehnert <hannes@mehnert.org>" 29 + "Ben Andrew <benmandrew@gmail.com>" 30 + "Gargi Sharma <gs051095@gmail.com>" 31 + "Jonathan Coates <git@squiddev.cc>" 32 + "Jules Aguillon <juloo.dsi@gmail.com>" 33 + "Magnus Skjegstad <magnus@skjegstad.com>" 34 + "Shon Feder <shon.feder@gmail.com>" 35 + "smolck <46855713+smolck@users.noreply.github.com>" 36 + "tatchi <corentin.leruth@gmail.com>" 37 + ] 38 + license: "Apache-2.0" 39 + homepage: "https://github.com/ocurrent/ocurrent" 40 + doc: "https://ocurrent.github.io/ocurrent/" 41 + bug-reports: "https://github.com/ocurrent/ocurrent/issues" 42 + depends: [ 43 + "dune" {>= "3.3"} 44 + "current" {= version} 45 + "ocaml" {>= "4.12.0"} 46 + "astring" {>= "0.8.5"} 47 + "bos" {>= "0.2.0"} 48 + "conf-git" 49 + "cstruct" {>= "6.0.0"} 50 + "fmt" {>= "0.8.9"} 51 + "fpath" {>= "0.7.3"} 52 + "irmin-watcher" 53 + "logs" {>= "0.7.0"} 54 + "lwt" {>= "5.6.1"} 55 + "mirage-crypto" {>= "0.8.0"} 56 + "ppx_deriving" 57 + "ppx_deriving_yojson" {>= "3.5.1"} 58 + "result" {>= "1.5"} 59 + "yojson" 60 + "mdx" {with-test} 61 + "alcotest" {with-test & >= "1.2.0"} 62 + "alcotest-lwt" {with-test & >= "1.2.0"} 63 + "odoc" {with-doc} 64 + ] 65 + build: [ 66 + ["dune" "subst"] {dev} 67 + [ 68 + "dune" 69 + "build" 70 + "-p" 71 + name 72 + "-j" 73 + jobs 74 + "@install" 75 + "@runtest" {with-test} 76 + "@doc" {with-doc} 77 + ] 78 + ] 79 + dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 80 + url { 81 + src: 82 + "https://github.com/ocurrent/ocurrent/releases/download/v0.6.6/current-0.6.6.tbz" 83 + checksum: [ 84 + "sha256=2329288bcbb455a3b8997f15d0090474e42274935379bc00d12abd22dcbf9990" 85 + "sha512=27525c17c09fe90f2554701c60ef5d6f1d4b42f13f3c4245becbfecd0178f102739ec0a22732b2ed926510dd33d7d90a8f001df086e840279493182783d6c676" 86 + ] 87 + } 88 + x-commit-hash: "bfc886e78e6da9e47904d2dfc7e11ad604af735f"
+98
packages/current_github/current_github.0.6.6/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "GitHub plugin for OCurrent" 3 + description: """ 4 + OCurrent provides an OCaml eDSL for writing CI/CD pipelines. 5 + 6 + This package provides primitives for interacting with GitHub. 7 + It can monitor and clone remote GitHub repositories, and can 8 + push GitHub status messages to show the results of testing 9 + PRs and branches.""" 10 + maintainer: ["Tim McGilchrist <timmcgil@gmail.com>"] 11 + authors: [ 12 + "Thomas Leonard <talex5@gmail.com>" 13 + "Antonin Décimo <antonin@tarides.com>" 14 + "Tim McGilchrist <timmcgil@gmail.com>" 15 + "Craig Ferguson <me@craigfe.io>" 16 + "Etienne MARAIS <etienne@maiste.fr>" 17 + "Anil Madhavapeddy <anil@recoil.org>" 18 + "David Allsopp <david.allsopp@metastack.com>" 19 + "Ewan Mellor <ewan@tarides.com>" 20 + "Kate <kit.ty.kate@disroot.org>" 21 + "Mark Elvers <mark.elvers@tunbury.org>" 22 + "Puneeth Chaganti <punchagan@muse-amuse.in>" 23 + "Lucas Pluvinage <lucas@tarides.com>" 24 + "Navin Keswani <navin@novemberkilo.com>" 25 + "Thomas Gazagnaire <thomas@gazagnaire.org>" 26 + "Patrick Ferris <patrick@sirref.org>" 27 + "Arthur Wendling <art.wendling@gmail.com>" 28 + "Anurag Soni <anurag@sonianurag.com>" 29 + "Ambre Austen Suhamy <ambre@tarides.com>" 30 + "Hannes Mehnert <hannes@mehnert.org>" 31 + "Ben Andrew <benmandrew@gmail.com>" 32 + "Gargi Sharma <gs051095@gmail.com>" 33 + "Jonathan Coates <git@squiddev.cc>" 34 + "Jules Aguillon <juloo.dsi@gmail.com>" 35 + "Magnus Skjegstad <magnus@skjegstad.com>" 36 + "Shon Feder <shon.feder@gmail.com>" 37 + "smolck <46855713+smolck@users.noreply.github.com>" 38 + "tatchi <corentin.leruth@gmail.com>" 39 + ] 40 + license: "Apache-2.0" 41 + homepage: "https://github.com/ocurrent/ocurrent" 42 + doc: "https://ocurrent.github.io/ocurrent/" 43 + bug-reports: "https://github.com/ocurrent/ocurrent/issues" 44 + depends: [ 45 + "dune" {>= "3.3"} 46 + "current" {= version} 47 + "current_git" {= version} 48 + "current_web" {= version} 49 + "ocaml" {>= "4.12.0"} 50 + "astring" {>= "0.8.5"} 51 + "base64" {>= "3.4.0"} 52 + "cmdliner" {>= "1.1.0"} 53 + "cohttp-lwt-unix" {>= "4.0.0"} 54 + "cstruct" {>= "5.2.0"} 55 + "duration" 56 + "fmt" {>= "0.8.9"} 57 + "github-unix" {>= "4.4.0"} 58 + "hex" {>= "1.4.0"} 59 + "logs" {>= "0.7.0"} 60 + "lwt" {>= "5.6.1"} 61 + "mirage-crypto" 62 + "mirage-crypto-pk" 63 + "ppx_deriving_yojson" {>= "3.6.1"} 64 + "prometheus" {>= "0.7"} 65 + "ptime" 66 + "result" {>= "1.5"} 67 + "rresult" {>= "0.6.0"} 68 + "tls-lwt" {>= "0.16.0"} 69 + "tyxml" {>= "4.6.0"} 70 + "uri" {>= "4.0.0"} 71 + "x509" {>= "0.10.0"} 72 + "yojson" 73 + "odoc" {with-doc} 74 + ] 75 + build: [ 76 + ["dune" "subst"] {dev} 77 + [ 78 + "dune" 79 + "build" 80 + "-p" 81 + name 82 + "-j" 83 + jobs 84 + "@install" 85 + "@runtest" {with-test} 86 + "@doc" {with-doc} 87 + ] 88 + ] 89 + dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 90 + url { 91 + src: 92 + "https://github.com/ocurrent/ocurrent/releases/download/v0.6.6/current-0.6.6.tbz" 93 + checksum: [ 94 + "sha256=2329288bcbb455a3b8997f15d0090474e42274935379bc00d12abd22dcbf9990" 95 + "sha512=27525c17c09fe90f2554701c60ef5d6f1d4b42f13f3c4245becbfecd0178f102739ec0a22732b2ed926510dd33d7d90a8f001df086e840279493182783d6c676" 96 + ] 97 + } 98 + x-commit-hash: "bfc886e78e6da9e47904d2dfc7e11ad604af735f"
+59
packages/current_gitlab/current_gitlab.0.6.6/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "GitLab plugin for OCurrent" 3 + description: """ 4 + OCurrent provides an OCaml eDSL for writing CI/CD pipelines. 5 + 6 + This package provides primitives for interacting with GitLab. 7 + It can monitor and clone remote GitLab repositories, and can 8 + push GitLab status messages to show the results of testing 9 + PRs and branches.""" 10 + maintainer: ["Tim McGilchrist <timmcgil@gmail.com>"] 11 + authors: ["Tim McGilchrist <timmcgil@gmail.com>"] 12 + license: "Apache-2.0" 13 + homepage: "https://github.com/ocurrent/ocurrent" 14 + doc: "https://ocurrent.github.io/ocurrent/" 15 + bug-reports: "https://github.com/ocurrent/ocurrent/issues" 16 + depends: [ 17 + "dune" {>= "3.3"} 18 + "current" {= version} 19 + "current_git" {= version} 20 + "current_web" {= version} 21 + "ocaml" {>= "4.12.0"} 22 + "cmdliner" {>= "1.1.0"} 23 + "cohttp-lwt-unix" {>= "4.0.0"} 24 + "fmt" {>= "0.8.9"} 25 + "gitlab-unix" {>= "0.1.8"} 26 + "logs" {>= "0.7.0"} 27 + "lwt" {>= "5.6.1"} 28 + "ppx_deriving_yojson" {>= "3.6.1"} 29 + "prometheus" {>= "0.7"} 30 + "ptime" 31 + "result" {>= "1.5"} 32 + "rresult" {>= "0.6.0"} 33 + "yojson" 34 + "odoc" {with-doc} 35 + ] 36 + build: [ 37 + ["dune" "subst"] {dev} 38 + [ 39 + "dune" 40 + "build" 41 + "-p" 42 + name 43 + "-j" 44 + jobs 45 + "@install" 46 + "@runtest" {with-test} 47 + "@doc" {with-doc} 48 + ] 49 + ] 50 + dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 51 + url { 52 + src: 53 + "https://github.com/ocurrent/ocurrent/releases/download/v0.6.6/current-0.6.6.tbz" 54 + checksum: [ 55 + "sha256=2329288bcbb455a3b8997f15d0090474e42274935379bc00d12abd22dcbf9990" 56 + "sha512=27525c17c09fe90f2554701c60ef5d6f1d4b42f13f3c4245becbfecd0178f102739ec0a22732b2ed926510dd33d7d90a8f001df086e840279493182783d6c676" 57 + ] 58 + } 59 + x-commit-hash: "bfc886e78e6da9e47904d2dfc7e11ad604af735f"
+82
packages/current_rpc/current_rpc.0.6.6/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Cap'n Proto RPC plugin for OCurrent" 3 + description: """ 4 + OCurrent provides an OCaml eDSL for writing CI/CD pipelines. 5 + 6 + This package provides a Cap'n Proto RPC interface, allowing 7 + an OCurrent engine to be controlled remotely.""" 8 + maintainer: ["Tim McGilchrist <timmcgil@gmail.com>"] 9 + authors: [ 10 + "Thomas Leonard <talex5@gmail.com>" 11 + "Antonin Décimo <antonin@tarides.com>" 12 + "Tim McGilchrist <timmcgil@gmail.com>" 13 + "Craig Ferguson <me@craigfe.io>" 14 + "Etienne MARAIS <etienne@maiste.fr>" 15 + "Anil Madhavapeddy <anil@recoil.org>" 16 + "David Allsopp <david.allsopp@metastack.com>" 17 + "Ewan Mellor <ewan@tarides.com>" 18 + "Kate <kit.ty.kate@disroot.org>" 19 + "Mark Elvers <mark.elvers@tunbury.org>" 20 + "Puneeth Chaganti <punchagan@muse-amuse.in>" 21 + "Lucas Pluvinage <lucas@tarides.com>" 22 + "Navin Keswani <navin@novemberkilo.com>" 23 + "Thomas Gazagnaire <thomas@gazagnaire.org>" 24 + "Patrick Ferris <patrick@sirref.org>" 25 + "Arthur Wendling <art.wendling@gmail.com>" 26 + "Anurag Soni <anurag@sonianurag.com>" 27 + "Ambre Austen Suhamy <ambre@tarides.com>" 28 + "Hannes Mehnert <hannes@mehnert.org>" 29 + "Ben Andrew <benmandrew@gmail.com>" 30 + "Gargi Sharma <gs051095@gmail.com>" 31 + "Jonathan Coates <git@squiddev.cc>" 32 + "Jules Aguillon <juloo.dsi@gmail.com>" 33 + "Magnus Skjegstad <magnus@skjegstad.com>" 34 + "Shon Feder <shon.feder@gmail.com>" 35 + "smolck <46855713+smolck@users.noreply.github.com>" 36 + "tatchi <corentin.leruth@gmail.com>" 37 + ] 38 + license: "Apache-2.0" 39 + homepage: "https://github.com/ocurrent/ocurrent" 40 + doc: "https://ocurrent.github.io/ocurrent/" 41 + bug-reports: "https://github.com/ocurrent/ocurrent/issues" 42 + depends: [ 43 + "dune" {>= "3.3"} 44 + "ocaml" {>= "4.12.0"} 45 + "capnp" {>= "3.4.0"} 46 + "capnp-rpc" {>= "1.2.3"} 47 + "capnp-rpc-lwt" {>= "1.2.3"} 48 + "fmt" {>= "0.8.9"} 49 + "fpath" 50 + "logs" {>= "0.7.0"} 51 + "lwt" {>= "5.6.1"} 52 + "result" {>= "1.5"} 53 + "stdint" {>= "0.7.0"} 54 + "odoc" {with-doc} 55 + ] 56 + conflicts: [ 57 + "x509" {= "0.11.0"} 58 + ] 59 + build: [ 60 + ["dune" "subst"] {dev} 61 + [ 62 + "dune" 63 + "build" 64 + "-p" 65 + name 66 + "-j" 67 + jobs 68 + "@install" 69 + "@runtest" {with-test} 70 + "@doc" {with-doc} 71 + ] 72 + ] 73 + dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 74 + url { 75 + src: 76 + "https://github.com/ocurrent/ocurrent/releases/download/v0.6.6/current-0.6.6.tbz" 77 + checksum: [ 78 + "sha256=2329288bcbb455a3b8997f15d0090474e42274935379bc00d12abd22dcbf9990" 79 + "sha512=27525c17c09fe90f2554701c60ef5d6f1d4b42f13f3c4245becbfecd0178f102739ec0a22732b2ed926510dd33d7d90a8f001df086e840279493182783d6c676" 80 + ] 81 + } 82 + x-commit-hash: "bfc886e78e6da9e47904d2dfc7e11ad604af735f"
+78
packages/current_slack/current_slack.0.6.6/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Slack plugin for OCurrent" 3 + description: """ 4 + OCurrent provides an OCaml eDSL for writing CI/CD pipelines. 5 + 6 + This package provides primitives for interacting with Slack. 7 + It can post messages to slack channels.""" 8 + maintainer: ["Tim McGilchrist <timmcgil@gmail.com>"] 9 + authors: [ 10 + "Thomas Leonard <talex5@gmail.com>" 11 + "Antonin Décimo <antonin@tarides.com>" 12 + "Tim McGilchrist <timmcgil@gmail.com>" 13 + "Craig Ferguson <me@craigfe.io>" 14 + "Etienne MARAIS <etienne@maiste.fr>" 15 + "Anil Madhavapeddy <anil@recoil.org>" 16 + "David Allsopp <david.allsopp@metastack.com>" 17 + "Ewan Mellor <ewan@tarides.com>" 18 + "Kate <kit.ty.kate@disroot.org>" 19 + "Mark Elvers <mark.elvers@tunbury.org>" 20 + "Puneeth Chaganti <punchagan@muse-amuse.in>" 21 + "Lucas Pluvinage <lucas@tarides.com>" 22 + "Navin Keswani <navin@novemberkilo.com>" 23 + "Thomas Gazagnaire <thomas@gazagnaire.org>" 24 + "Patrick Ferris <patrick@sirref.org>" 25 + "Arthur Wendling <art.wendling@gmail.com>" 26 + "Anurag Soni <anurag@sonianurag.com>" 27 + "Ambre Austen Suhamy <ambre@tarides.com>" 28 + "Hannes Mehnert <hannes@mehnert.org>" 29 + "Ben Andrew <benmandrew@gmail.com>" 30 + "Gargi Sharma <gs051095@gmail.com>" 31 + "Jonathan Coates <git@squiddev.cc>" 32 + "Jules Aguillon <juloo.dsi@gmail.com>" 33 + "Magnus Skjegstad <magnus@skjegstad.com>" 34 + "Shon Feder <shon.feder@gmail.com>" 35 + "smolck <46855713+smolck@users.noreply.github.com>" 36 + "tatchi <corentin.leruth@gmail.com>" 37 + ] 38 + license: "Apache-2.0" 39 + homepage: "https://github.com/ocurrent/ocurrent" 40 + doc: "https://ocurrent.github.io/ocurrent/" 41 + bug-reports: "https://github.com/ocurrent/ocurrent/issues" 42 + depends: [ 43 + "dune" {>= "3.3"} 44 + "current" {= version} 45 + "ocaml" {>= "4.12.0"} 46 + "cohttp-lwt-unix" {>= "4.0.0"} 47 + "fmt" {>= "0.8.9"} 48 + "logs" {>= "0.7.0"} 49 + "lwt" {>= "5.6.1"} 50 + "tls-lwt" {>= "0.16.0"} 51 + "uri" {>= "4.0.0"} 52 + "yojson" 53 + "odoc" {with-doc} 54 + ] 55 + build: [ 56 + ["dune" "subst"] {dev} 57 + [ 58 + "dune" 59 + "build" 60 + "-p" 61 + name 62 + "-j" 63 + jobs 64 + "@install" 65 + "@runtest" {with-test} 66 + "@doc" {with-doc} 67 + ] 68 + ] 69 + dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 70 + url { 71 + src: 72 + "https://github.com/ocurrent/ocurrent/releases/download/v0.6.6/current-0.6.6.tbz" 73 + checksum: [ 74 + "sha256=2329288bcbb455a3b8997f15d0090474e42274935379bc00d12abd22dcbf9990" 75 + "sha512=27525c17c09fe90f2554701c60ef5d6f1d4b42f13f3c4245becbfecd0178f102739ec0a22732b2ed926510dd33d7d90a8f001df086e840279493182783d6c676" 76 + ] 77 + } 78 + x-commit-hash: "bfc886e78e6da9e47904d2dfc7e11ad604af735f"
+43
packages/current_ssh/current_ssh.0.6.6/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "SSH plugin for OCurrent" 3 + description: """ 4 + OCurrent provides an OCaml eDSL for writing CI/CD pipelines. 5 + 6 + This package provides a plugin for running ssh commands.""" 7 + maintainer: ["Mark Elvers <mark.elvers@tunbury.org>"] 8 + authors: ["Mark Elvers <mark.elvers@tunbury.org>"] 9 + license: "Apache-2.0" 10 + homepage: "https://github.com/ocurrent/ocurrent" 11 + doc: "https://ocurrent.github.io/ocurrent/" 12 + bug-reports: "https://github.com/ocurrent/ocurrent/issues" 13 + depends: [ 14 + "dune" {>= "3.3"} 15 + "current" {= version} 16 + "ocaml" {>= "4.12.0"} 17 + "yojson" 18 + "odoc" {with-doc} 19 + ] 20 + build: [ 21 + ["dune" "subst"] {dev} 22 + [ 23 + "dune" 24 + "build" 25 + "-p" 26 + name 27 + "-j" 28 + jobs 29 + "@install" 30 + "@runtest" {with-test} 31 + "@doc" {with-doc} 32 + ] 33 + ] 34 + dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 35 + url { 36 + src: 37 + "https://github.com/ocurrent/ocurrent/releases/download/v0.6.6/current-0.6.6.tbz" 38 + checksum: [ 39 + "sha256=2329288bcbb455a3b8997f15d0090474e42274935379bc00d12abd22dcbf9990" 40 + "sha512=27525c17c09fe90f2554701c60ef5d6f1d4b42f13f3c4245becbfecd0178f102739ec0a22732b2ed926510dd33d7d90a8f001df086e840279493182783d6c676" 41 + ] 42 + } 43 + x-commit-hash: "bfc886e78e6da9e47904d2dfc7e11ad604af735f"
+106
packages/current_web/current_web.0.6.6/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Test web UI for OCurrent" 3 + description: """ 4 + OCurrent provides an OCaml eDSL for writing CI/CD pipelines. 5 + 6 + This package provides a basic web UI for service administrators. 7 + It shows the current pipeline visually and allows viewing job 8 + logs and configuring the log analyser.""" 9 + maintainer: ["Tim McGilchrist <timmcgil@gmail.com>"] 10 + authors: [ 11 + "Thomas Leonard <talex5@gmail.com>" 12 + "Antonin Décimo <antonin@tarides.com>" 13 + "Tim McGilchrist <timmcgil@gmail.com>" 14 + "Craig Ferguson <me@craigfe.io>" 15 + "Etienne MARAIS <etienne@maiste.fr>" 16 + "Anil Madhavapeddy <anil@recoil.org>" 17 + "David Allsopp <david.allsopp@metastack.com>" 18 + "Ewan Mellor <ewan@tarides.com>" 19 + "Kate <kit.ty.kate@disroot.org>" 20 + "Mark Elvers <mark.elvers@tunbury.org>" 21 + "Puneeth Chaganti <punchagan@muse-amuse.in>" 22 + "Lucas Pluvinage <lucas@tarides.com>" 23 + "Navin Keswani <navin@novemberkilo.com>" 24 + "Thomas Gazagnaire <thomas@gazagnaire.org>" 25 + "Patrick Ferris <patrick@sirref.org>" 26 + "Arthur Wendling <art.wendling@gmail.com>" 27 + "Anurag Soni <anurag@sonianurag.com>" 28 + "Ambre Austen Suhamy <ambre@tarides.com>" 29 + "Hannes Mehnert <hannes@mehnert.org>" 30 + "Ben Andrew <benmandrew@gmail.com>" 31 + "Gargi Sharma <gs051095@gmail.com>" 32 + "Jonathan Coates <git@squiddev.cc>" 33 + "Jules Aguillon <juloo.dsi@gmail.com>" 34 + "Magnus Skjegstad <magnus@skjegstad.com>" 35 + "Shon Feder <shon.feder@gmail.com>" 36 + "smolck <46855713+smolck@users.noreply.github.com>" 37 + "tatchi <corentin.leruth@gmail.com>" 38 + ] 39 + license: "Apache-2.0" 40 + homepage: "https://github.com/ocurrent/ocurrent" 41 + doc: "https://ocurrent.github.io/ocurrent/" 42 + bug-reports: "https://github.com/ocurrent/ocurrent/issues" 43 + depends: [ 44 + "dune" {>= "3.3"} 45 + "crunch" {build & >= "3.3.0"} 46 + "current" {= version} 47 + "ocaml" {>= "4.12.0"} 48 + "ansi" {>= "0.5.0"} 49 + "astring" {>= "0.8.5"} 50 + "base64" 51 + "bos" 52 + "cmdliner" {>= "1.1.0"} 53 + "cohttp-lwt-unix" {>= "4.0.0"} 54 + "conduit-lwt-unix" {>= "2.2.2"} 55 + "conf-graphviz" 56 + "cstruct" {>= "5.2.0"} 57 + "csv" {>= "2.4"} 58 + "fmt" {>= "0.8.9"} 59 + "fpath" {>= "0.7.3"} 60 + "logs" {>= "0.7.0"} 61 + "lwt" {>= "5.6.1"} 62 + "mirage-crypto" {>= "0.8.7"} 63 + "mirage-crypto-rng" {>= "0.11.0"} 64 + "mirage-crypto-rng-lwt" {>= "0.11.0"} 65 + "multipart_form-lwt" {>= "0.4.0"} 66 + "ppx_deriving" {>= "5.1"} 67 + "ppx_deriving_yojson" {>= "3.5.1"} 68 + "ppx_sexp_conv" {>= "v0.14.1"} 69 + "prometheus" {>= "0.7"} 70 + "prometheus-app" {>= "1.2"} 71 + "re" {>= "1.9.0"} 72 + "result" {>= "1.5"} 73 + "routes" {>= "2.0.0"} 74 + "session" 75 + "session-cohttp-lwt" 76 + "sexplib" {>= "v0.14.0"} 77 + "sqlite3" {>= "5.0.2"} 78 + "tyxml" {>= "4.6.0"} 79 + "uri" {>= "4.0.0"} 80 + "yojson" {>= "1.7.0"} 81 + "odoc" {with-doc} 82 + ] 83 + build: [ 84 + ["dune" "subst"] {dev} 85 + [ 86 + "dune" 87 + "build" 88 + "-p" 89 + name 90 + "-j" 91 + jobs 92 + "@install" 93 + "@runtest" {with-test} 94 + "@doc" {with-doc} 95 + ] 96 + ] 97 + dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 98 + url { 99 + src: 100 + "https://github.com/ocurrent/ocurrent/releases/download/v0.6.6/current-0.6.6.tbz" 101 + checksum: [ 102 + "sha256=2329288bcbb455a3b8997f15d0090474e42274935379bc00d12abd22dcbf9990" 103 + "sha512=27525c17c09fe90f2554701c60ef5d6f1d4b42f13f3c4245becbfecd0178f102739ec0a22732b2ed926510dd33d7d90a8f001df086e840279493182783d6c676" 104 + ] 105 + } 106 + x-commit-hash: "bfc886e78e6da9e47904d2dfc7e11ad604af735f"