this repo has no description
0
fork

Configure Feed

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

10 packages from ocurrent/ocurrent at 0.7.1

+824
+94
packages/current/current.0.7.1/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: "Mark Elvers <mark.elvers@tunbury.org>" 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 + "Ben Andrew <benmandrew@gmail.com>" 35 + "Gargi Sharma <gs051095@gmail.com>" 36 + "Jonathan Coates <git@squiddev.cc>" 37 + "Jules Aguillon <juloo.dsi@gmail.com>" 38 + "Magnus Skjegstad <magnus@skjegstad.com>" 39 + "Shon Feder <shon.feder@gmail.com>" 40 + "smolck <46855713+smolck@users.noreply.github.com>" 41 + "tatchi <corentin.leruth@gmail.com>" 42 + ] 43 + license: "Apache-2.0" 44 + homepage: "https://github.com/ocurrent/ocurrent" 45 + doc: "https://ocurrent.github.io/ocurrent/" 46 + bug-reports: "https://github.com/ocurrent/ocurrent/issues" 47 + depends: [ 48 + "dune" {>= "3.3"} 49 + "ocaml" {>= "4.12.0"} 50 + "astring" {>= "0.8.5"} 51 + "bos" 52 + "cmdliner" {>= "1.1.0"} 53 + "conf-libev" {os != "win32"} 54 + "current_incr" {>= "0.6.1"} 55 + "duration" 56 + "fmt" {>= "0.8.9"} 57 + "fpath" {>= "0.7.3"} 58 + "logs" {>= "0.7.0"} 59 + "lwt" {>= "5.7"} 60 + "lwt-dllist" 61 + "ppx_deriving" 62 + "prometheus" 63 + "re" {>= "1.9.0"} 64 + "result" {>= "1.5"} 65 + "sqlite3" 66 + "alcotest" {with-test & >= "1.2.0"} 67 + "alcotest-lwt" {with-test & >= "1.2.0"} 68 + "prometheus-app" {with-test & >= "1.2"} 69 + "odoc" {with-doc} 70 + ] 71 + build: [ 72 + ["dune" "subst"] {dev} 73 + [ 74 + "dune" 75 + "build" 76 + "-p" 77 + name 78 + "-j" 79 + jobs 80 + "@install" 81 + "@runtest" {with-test} 82 + "@doc" {with-doc} 83 + ] 84 + ] 85 + dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 86 + url { 87 + src: 88 + "https://github.com/ocurrent/ocurrent/releases/download/v0.7.1/ocurrent-0.7.1.tbz" 89 + checksum: [ 90 + "md5=8a60e0b0860f6353c0e001d8d74a88ca" 91 + "sha512=fddde66e3390afa4d46e2d121f2b510358ef853b81b691dbf482b0cfc8f56b21f5a0c43618e1818e6378b8897eca5811af7a995b42e1cb955647727cad877e05" 92 + ] 93 + } 94 + x-maintenance-intent: ["(latest)"]
+83
packages/current_docker/current_docker.0.7.1/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: "Mark Elvers <mark.elvers@tunbury.org>" 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 + "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 + "current_git" {= version} 46 + "ocaml" {>= "4.12.0"} 47 + "astring" {>= "0.8.5"} 48 + "bos" {>= "0.2.0"} 49 + "duration" {>= "0.1.3"} 50 + "fmt" {>= "0.8.9"} 51 + "fpath" {>= "0.7.3"} 52 + "logs" {>= "0.7.0"} 53 + "lwt" {>= "5.7"} 54 + "ppx_deriving" 55 + "ppx_deriving_yojson" {>= "3.5.1"} 56 + "result" {>= "1.5"} 57 + "yojson" 58 + "odoc" {with-doc} 59 + ] 60 + build: [ 61 + ["dune" "subst"] {dev} 62 + [ 63 + "dune" 64 + "build" 65 + "-p" 66 + name 67 + "-j" 68 + jobs 69 + "@install" 70 + "@runtest" {with-test} 71 + "@doc" {with-doc} 72 + ] 73 + ] 74 + dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 75 + url { 76 + src: 77 + "https://github.com/ocurrent/ocurrent/releases/download/v0.7.1/ocurrent-0.7.1.tbz" 78 + checksum: [ 79 + "md5=8a60e0b0860f6353c0e001d8d74a88ca" 80 + "sha512=fddde66e3390afa4d46e2d121f2b510358ef853b81b691dbf482b0cfc8f56b21f5a0c43618e1818e6378b8897eca5811af7a995b42e1cb955647727cad877e05" 81 + ] 82 + } 83 + x-maintenance-intent: ["(latest)"]
+98
packages/current_examples/current_examples.0.7.1/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: "Mark Elvers <mark.elvers@tunbury.org>" 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 + "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 + "current_docker" {= version} 46 + "current_git" {= version} 47 + "current_github" {= version} 48 + "current_gitlab" {= version} 49 + "current_rpc" {= version} 50 + "current_web" {= version} 51 + "current_ssh" {= version} 52 + "ocaml" {>= "4.12.0"} 53 + "capnp-rpc" {>= "1.2.3"} 54 + "capnp-rpc-lwt" {>= "1.2.3"} 55 + "capnp-rpc-net" {>= "1.2.3"} 56 + "capnp-rpc-unix" {>= "1.2.3"} 57 + "cmdliner" {>= "1.1.0"} 58 + "duration" 59 + "dockerfile" {>= "7.0.0"} 60 + "fmt" {>= "0.8.9"} 61 + "fpath" {>= "0.7.3"} 62 + "logs" {>= "0.7.0"} 63 + "lwt" {>= "5.7"} 64 + "ppx_deriving" {>= "5.1"} 65 + "ppx_deriving_yojson" {>= "3.6.1"} 66 + "prometheus" {>= "0.7"} 67 + "prometheus-app" {>= "1.2"} 68 + "result" {>= "1.5"} 69 + "routes" {>= "2.0.0"} 70 + "uri" {>= "4.0.0"} 71 + "yojson" {>= "1.7.0"} 72 + "mdx" {with-test} 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.7.1/ocurrent-0.7.1.tbz" 93 + checksum: [ 94 + "md5=8a60e0b0860f6353c0e001d8d74a88ca" 95 + "sha512=fddde66e3390afa4d46e2d121f2b510358ef853b81b691dbf482b0cfc8f56b21f5a0c43618e1818e6378b8897eca5811af7a995b42e1cb955647727cad877e05" 96 + ] 97 + } 98 + x-maintenance-intent: ["(latest)"]
+87
packages/current_git/current_git.0.7.1/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: "Mark Elvers <mark.elvers@tunbury.org>" 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 + "Ben Andrew <benmandrew@gmail.com>" 29 + "Gargi Sharma <gs051095@gmail.com>" 30 + "Jonathan Coates <git@squiddev.cc>" 31 + "Jules Aguillon <juloo.dsi@gmail.com>" 32 + "Magnus Skjegstad <magnus@skjegstad.com>" 33 + "Shon Feder <shon.feder@gmail.com>" 34 + "smolck <46855713+smolck@users.noreply.github.com>" 35 + "tatchi <corentin.leruth@gmail.com>" 36 + ] 37 + license: "Apache-2.0" 38 + homepage: "https://github.com/ocurrent/ocurrent" 39 + doc: "https://ocurrent.github.io/ocurrent/" 40 + bug-reports: "https://github.com/ocurrent/ocurrent/issues" 41 + depends: [ 42 + "dune" {>= "3.3"} 43 + "current" {= version} 44 + "ocaml" {>= "4.12.0"} 45 + "astring" {>= "0.8.5"} 46 + "bos" {>= "0.2.0"} 47 + "conf-git" 48 + "cstruct" {>= "6.0.0"} 49 + "fmt" {>= "0.8.9"} 50 + "fpath" {>= "0.7.3"} 51 + "irmin-watcher" 52 + "logs" {>= "0.7.0"} 53 + "lwt" {>= "5.7"} 54 + "mirage-crypto" {>= "0.8.0" & < "1.0.0"} 55 + "ppx_deriving" 56 + "ppx_deriving_yojson" {>= "3.5.1"} 57 + "result" {>= "1.5"} 58 + "yojson" 59 + "mdx" {with-test} 60 + "alcotest" {with-test & >= "1.2.0"} 61 + "alcotest-lwt" {with-test & >= "1.2.0"} 62 + "odoc" {with-doc} 63 + ] 64 + build: [ 65 + ["dune" "subst"] {dev} 66 + [ 67 + "dune" 68 + "build" 69 + "-p" 70 + name 71 + "-j" 72 + jobs 73 + "@install" 74 + "@runtest" {with-test} 75 + "@doc" {with-doc} 76 + ] 77 + ] 78 + dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 79 + url { 80 + src: 81 + "https://github.com/ocurrent/ocurrent/releases/download/v0.7.1/ocurrent-0.7.1.tbz" 82 + checksum: [ 83 + "md5=8a60e0b0860f6353c0e001d8d74a88ca" 84 + "sha512=fddde66e3390afa4d46e2d121f2b510358ef853b81b691dbf482b0cfc8f56b21f5a0c43618e1818e6378b8897eca5811af7a995b42e1cb955647727cad877e05" 85 + ] 86 + } 87 + x-maintenance-intent: ["(latest)"]
+97
packages/current_github/current_github.0.7.1/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: "Mark Elvers <mark.elvers@tunbury.org>" 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 + "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 + "current_web" {= version} 48 + "ocaml" {>= "4.12.0"} 49 + "astring" {>= "0.8.5"} 50 + "base64" {>= "3.4.0"} 51 + "cmdliner" {>= "1.1.0"} 52 + "cohttp-lwt-unix" {>= "6.0.0"} 53 + "cstruct" {>= "5.2.0"} 54 + "duration" 55 + "fmt" {>= "0.8.9"} 56 + "github-unix" {>= "4.4.0"} 57 + "hex" {>= "1.4.0"} 58 + "logs" {>= "0.7.0"} 59 + "lwt" {>= "5.7"} 60 + "mirage-crypto" {< "1.0.0"} 61 + "mirage-crypto-pk" {< "1.0.0"} 62 + "ppx_deriving_yojson" {>= "3.6.1"} 63 + "prometheus" {>= "0.7"} 64 + "ptime" 65 + "result" {>= "1.5"} 66 + "rresult" {>= "0.6.0"} 67 + "tls-lwt" {>= "0.16.0"} 68 + "tyxml" {>= "4.6.0"} 69 + "uri" {>= "4.0.0"} 70 + "x509" {>= "0.10.0"} 71 + "yojson" 72 + "odoc" {with-doc} 73 + ] 74 + build: [ 75 + ["dune" "subst"] {dev} 76 + [ 77 + "dune" 78 + "build" 79 + "-p" 80 + name 81 + "-j" 82 + jobs 83 + "@install" 84 + "@runtest" {with-test} 85 + "@doc" {with-doc} 86 + ] 87 + ] 88 + dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 89 + url { 90 + src: 91 + "https://github.com/ocurrent/ocurrent/releases/download/v0.7.1/ocurrent-0.7.1.tbz" 92 + checksum: [ 93 + "md5=8a60e0b0860f6353c0e001d8d74a88ca" 94 + "sha512=fddde66e3390afa4d46e2d121f2b510358ef853b81b691dbf482b0cfc8f56b21f5a0c43618e1818e6378b8897eca5811af7a995b42e1cb955647727cad877e05" 95 + ] 96 + } 97 + x-maintenance-intent: ["(latest)"]
+59
packages/current_gitlab/current_gitlab.0.7.1/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" {>= "6.0.0"} 24 + "fmt" {>= "0.8.9"} 25 + "gitlab-unix" {>= "0.1.8"} 26 + "logs" {>= "0.7.0"} 27 + "lwt" {>= "5.7"} 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.7.1/ocurrent-0.7.1.tbz" 54 + checksum: [ 55 + "md5=8a60e0b0860f6353c0e001d8d74a88ca" 56 + "sha512=fddde66e3390afa4d46e2d121f2b510358ef853b81b691dbf482b0cfc8f56b21f5a0c43618e1818e6378b8897eca5811af7a995b42e1cb955647727cad877e05" 57 + ] 58 + } 59 + x-maintenance-intent: ["(latest)"]
+81
packages/current_rpc/current_rpc.0.7.1/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: "Mark Elvers <mark.elvers@tunbury.org>" 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 + "Ben Andrew <benmandrew@gmail.com>" 29 + "Gargi Sharma <gs051095@gmail.com>" 30 + "Jonathan Coates <git@squiddev.cc>" 31 + "Jules Aguillon <juloo.dsi@gmail.com>" 32 + "Magnus Skjegstad <magnus@skjegstad.com>" 33 + "Shon Feder <shon.feder@gmail.com>" 34 + "smolck <46855713+smolck@users.noreply.github.com>" 35 + "tatchi <corentin.leruth@gmail.com>" 36 + ] 37 + license: "Apache-2.0" 38 + homepage: "https://github.com/ocurrent/ocurrent" 39 + doc: "https://ocurrent.github.io/ocurrent/" 40 + bug-reports: "https://github.com/ocurrent/ocurrent/issues" 41 + depends: [ 42 + "dune" {>= "3.3"} 43 + "ocaml" {>= "4.12.0"} 44 + "capnp" {>= "3.4.0"} 45 + "capnp-rpc" {>= "1.2.3"} 46 + "capnp-rpc-lwt" {>= "1.2.3"} 47 + "fmt" {>= "0.8.9"} 48 + "fpath" 49 + "logs" {>= "0.7.0"} 50 + "lwt" {>= "5.7"} 51 + "result" {>= "1.5"} 52 + "stdint" {>= "0.7.0"} 53 + "odoc" {with-doc} 54 + ] 55 + conflicts: [ 56 + "x509" {= "0.11.0"} 57 + ] 58 + build: [ 59 + ["dune" "subst"] {dev} 60 + [ 61 + "dune" 62 + "build" 63 + "-p" 64 + name 65 + "-j" 66 + jobs 67 + "@install" 68 + "@runtest" {with-test} 69 + "@doc" {with-doc} 70 + ] 71 + ] 72 + dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 73 + url { 74 + src: 75 + "https://github.com/ocurrent/ocurrent/releases/download/v0.7.1/ocurrent-0.7.1.tbz" 76 + checksum: [ 77 + "md5=8a60e0b0860f6353c0e001d8d74a88ca" 78 + "sha512=fddde66e3390afa4d46e2d121f2b510358ef853b81b691dbf482b0cfc8f56b21f5a0c43618e1818e6378b8897eca5811af7a995b42e1cb955647727cad877e05" 79 + ] 80 + } 81 + x-maintenance-intent: ["(latest)"]
+77
packages/current_slack/current_slack.0.7.1/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: "Mark Elvers <mark.elvers@tunbury.org>" 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 + "Ben Andrew <benmandrew@gmail.com>" 29 + "Gargi Sharma <gs051095@gmail.com>" 30 + "Jonathan Coates <git@squiddev.cc>" 31 + "Jules Aguillon <juloo.dsi@gmail.com>" 32 + "Magnus Skjegstad <magnus@skjegstad.com>" 33 + "Shon Feder <shon.feder@gmail.com>" 34 + "smolck <46855713+smolck@users.noreply.github.com>" 35 + "tatchi <corentin.leruth@gmail.com>" 36 + ] 37 + license: "Apache-2.0" 38 + homepage: "https://github.com/ocurrent/ocurrent" 39 + doc: "https://ocurrent.github.io/ocurrent/" 40 + bug-reports: "https://github.com/ocurrent/ocurrent/issues" 41 + depends: [ 42 + "dune" {>= "3.3"} 43 + "current" {= version} 44 + "ocaml" {>= "4.12.0"} 45 + "cohttp-lwt-unix" {>= "6.0.0"} 46 + "fmt" {>= "0.8.9"} 47 + "logs" {>= "0.7.0"} 48 + "lwt" {>= "5.7"} 49 + "tls-lwt" {>= "0.16.0"} 50 + "uri" {>= "4.0.0"} 51 + "yojson" 52 + "odoc" {with-doc} 53 + ] 54 + build: [ 55 + ["dune" "subst"] {dev} 56 + [ 57 + "dune" 58 + "build" 59 + "-p" 60 + name 61 + "-j" 62 + jobs 63 + "@install" 64 + "@runtest" {with-test} 65 + "@doc" {with-doc} 66 + ] 67 + ] 68 + dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 69 + url { 70 + src: 71 + "https://github.com/ocurrent/ocurrent/releases/download/v0.7.1/ocurrent-0.7.1.tbz" 72 + checksum: [ 73 + "md5=8a60e0b0860f6353c0e001d8d74a88ca" 74 + "sha512=fddde66e3390afa4d46e2d121f2b510358ef853b81b691dbf482b0cfc8f56b21f5a0c43618e1818e6378b8897eca5811af7a995b42e1cb955647727cad877e05" 75 + ] 76 + } 77 + x-maintenance-intent: ["(latest)"]
+43
packages/current_ssh/current_ssh.0.7.1/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.7.1/ocurrent-0.7.1.tbz" 38 + checksum: [ 39 + "md5=8a60e0b0860f6353c0e001d8d74a88ca" 40 + "sha512=fddde66e3390afa4d46e2d121f2b510358ef853b81b691dbf482b0cfc8f56b21f5a0c43618e1818e6378b8897eca5811af7a995b42e1cb955647727cad877e05" 41 + ] 42 + } 43 + x-maintenance-intent: ["(latest)"]
+105
packages/current_web/current_web.0.7.1/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: "Mark Elvers <mark.elvers@tunbury.org>" 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 + "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 + "crunch" {build & >= "3.3.0"} 45 + "current" {= version} 46 + "ocaml" {>= "4.12.0"} 47 + "ansi" {>= "0.5.0"} 48 + "astring" {>= "0.8.5"} 49 + "base64" 50 + "bos" 51 + "cmdliner" {>= "1.1.0"} 52 + "cohttp-lwt-unix" {>= "6.0.0"} 53 + "conduit-lwt-unix" {>= "2.2.2"} 54 + "conf-graphviz" 55 + "cstruct" {>= "5.2.0"} 56 + "csv" {>= "2.4"} 57 + "fmt" {>= "0.8.9"} 58 + "fpath" {>= "0.7.3"} 59 + "logs" {>= "0.7.0"} 60 + "lwt" {>= "5.7"} 61 + "mirage-crypto" {>= "0.8.7" & < "1.0.0"} 62 + "mirage-crypto-rng" {>= "0.11.0" & < "1.0.0"} 63 + "mirage-crypto-rng-lwt" {>= "0.11.0" & < "1.0.0"} 64 + "multipart_form-lwt" {>= "0.4.0"} 65 + "ppx_deriving" {>= "5.1"} 66 + "ppx_deriving_yojson" {>= "3.5.1"} 67 + "ppx_sexp_conv" {>= "v0.14.1"} 68 + "prometheus" {>= "0.7"} 69 + "prometheus-app" {>= "1.2"} 70 + "re" {>= "1.9.0"} 71 + "result" {>= "1.5"} 72 + "routes" {>= "2.0.0"} 73 + "session" 74 + "session-cohttp-lwt" 75 + "sexplib" {>= "v0.14.0"} 76 + "sqlite3" {>= "5.0.2"} 77 + "tyxml" {>= "4.6.0"} 78 + "uri" {>= "4.0.0"} 79 + "yojson" {>= "1.7.0"} 80 + "odoc" {with-doc} 81 + ] 82 + build: [ 83 + ["dune" "subst"] {dev} 84 + [ 85 + "dune" 86 + "build" 87 + "-p" 88 + name 89 + "-j" 90 + jobs 91 + "@install" 92 + "@runtest" {with-test} 93 + "@doc" {with-doc} 94 + ] 95 + ] 96 + dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 97 + url { 98 + src: 99 + "https://github.com/ocurrent/ocurrent/releases/download/v0.7.1/ocurrent-0.7.1.tbz" 100 + checksum: [ 101 + "md5=8a60e0b0860f6353c0e001d8d74a88ca" 102 + "sha512=fddde66e3390afa4d46e2d121f2b510358ef853b81b691dbf482b0cfc8f56b21f5a0c43618e1818e6378b8897eca5811af7a995b42e1cb955647727cad877e05" 103 + ] 104 + } 105 + x-maintenance-intent: ["(latest)"]