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.1/ocurrent-0.7.1.tbz" 82 checksum: [ 83 "md5=8a60e0b0860f6353c0e001d8d74a88ca" 84 "sha512=fddde66e3390afa4d46e2d121f2b510358ef853b81b691dbf482b0cfc8f56b21f5a0c43618e1818e6378b8897eca5811af7a995b42e1cb955647727cad877e05" 85 ] 86} 87x-maintenance-intent: ["(latest)"]