this repo has no description
1opam-version: "2.0"
2synopsis: "Git plugin for OCurrent"
3description: """\
4OCurrent provides an OCaml eDSL for writing CI/CD pipelines.
5
6This package provides primitives for interacting with Git.
7It can pull from remote repositories, or monitor local ones for changes."""
8maintainer: "Mark Elvers <mark.elvers@tunbury.org>"
9authors: [
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]
37license: "Apache-2.0"
38homepage: "https://github.com/ocurrent/ocurrent"
39doc: "https://ocurrent.github.io/ocurrent/"
40bug-reports: "https://github.com/ocurrent/ocurrent/issues"
41depends: [
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]
64build: [
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]
78dev-repo: "git+https://github.com/ocurrent/ocurrent.git"
79url {
80 src:
81 "https://github.com/ocurrent/ocurrent/releases/download/v0.7.0/ocurrent-0.7.0.tbz"
82 checksum: [
83 "md5=8377008ef5ad00fdf74681c6d07e5d23"
84 "sha512=2948497aef5dde1228adbd1c27f4d5dff59d66393774a69bf2c8078a47c85b82320a103450802ed62bc81cebd9e7354557adf2d471553040a983f53e4f43d5ef"
85 ]
86}
87x-maintenance-intent: ["(latest)"]