-
Notifications
You must be signed in to change notification settings - Fork 21
/
opam-publish.opam
34 lines (34 loc) · 1.08 KB
/
opam-publish.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
opam-version: "2.0"
version: "2.4.0"
maintainer: "Louis Gesbert <[email protected]>"
authors: [
"Louis Gesbert <[email protected]>"
"David Sheets <[email protected]>"
"Jeremie Dimino <[email protected]>"
]
homepage: "https://github.com/ocaml/opam-publish"
bug-reports: "https://github.com/ocaml/opam-publish/issues"
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
dev-repo: "git+https://github.com/ocaml/opam-publish.git"
build: [ "dune" "build" "-p" name "-j" jobs ]
depends: [
"cmdliner" {>= "1.1.0"}
"dune" {>= "1.0"}
"lwt_ssl"
"ocaml" {>= "4.03.0"}
"opam-core" {>= "2.2.0"}
"opam-format" {>= "2.2.0"}
"opam-state" {>= "2.2.0"}
"github" {>= "4.3.2"}
"github-unix" {>= "4.3.2"}
]
conflicts: [
"ssl" {= "0.5.6"}
]
flags: plugin
synopsis: "A tool to ease contributions to opam repositories"
description: """
opam-publish automates publishing packages to package repositories: it checks that the
opam file is complete using `opam lint`, verifies and adds the archive URL and its
checksum and files a GitHub pull request for merging it.
"""