this repo has no description
1opam-version: "2.0" 2synopsis: "Release dune packages in opam" 3description: """ 4`dune-release` is a tool to streamline the release of Dune packages in 5[opam](https://opam.ocaml.org). It supports only projects be built 6with [Dune](https://github.com/ocaml/dune) and released on 7[GitHub](https://github.com).""" 8maintainer: "Thomas Gazagnaire <thomas@gazagnaire.org>" 9authors: ["Daniel Bünzli" "Thomas Gazagnaire"] 10license: "ISC" 11homepage: "https://github.com/samoht/dune-release" 12doc: "https://samoht.github.io/dune-release/" 13bug-reports: "https://github.com/samoht/dune-release/issues" 14depends: [ 15 "ocaml" {>= "4.06.0"} 16 "dune" 17 "fmt" {< "0.8.7"} 18 "bos" 19 "cmdliner" {< "1.1.0"} 20 "re" 21 "opam-format" 22 "rresult" 23 "logs" 24 "odoc" 25 "alcotest" {with-test} 26] 27build: ["dune" "build" "-p" name "-j" jobs] 28run-test: ["dune" "runtest" "-p" name "-j" jobs] {with-test} 29dev-repo: "git+https://github.com/samoht/dune-release.git" 30url { 31 src: 32 "https://github.com/samoht/dune-release/releases/download/1.0.0/dune-release-1.0.0.tbz" 33 checksum: [ 34 "sha256=68ef8c68eb02ec26bbbdc1a1eeab688b3aff247e17cf32cca2280abefa9b50b9" 35 "md5=7bceb7ca71e4d12862473c8cbd5c189d" 36 ] 37}