Skip to content

Commit 1c889fb

Browse files
Merge pull request #27596 from dbuenzli/b0-publish-fmt.0.10.0
Add: fmt.0.10.0
2 parents aa187e2 + 3578ab7 commit 1c889fb

File tree

1 file changed

+50
-0
lines changed
  • packages/fmt/fmt.0.10.0

1 file changed

+50
-0
lines changed

packages/fmt/fmt.0.10.0/opam

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
opam-version: "2.0"
2+
synopsis: "OCaml Format pretty-printer combinators"
3+
description: """\
4+
Fmt exposes combinators to devise `Format` pretty-printing functions.
5+
6+
Fmt depends only on the OCaml standard library. The optional `Fmt_tty`
7+
library that allows to setup formatters for terminal color output
8+
depends on the Unix library. The optional `Fmt_cli` library that
9+
provides command line support for Fmt depends on [`cmdliner`].
10+
11+
Fmt is distributed under the ISC license.
12+
13+
Home page: <http://erratique.ch/software/fmt>
14+
15+
[`cmdliner`]: http://erratique.ch/software/cmdliner"""
16+
maintainer: "Daniel Bünzli <daniel.buenzl [email protected]>"
17+
authors: "The fmt programmers"
18+
license: "ISC"
19+
tags: ["string" "format" "pretty-print" "org:erratique"]
20+
homepage: "https://erratique.ch/software/fmt"
21+
doc: "https://erratique.ch/software/fmt/doc/"
22+
bug-reports: "https://github.com/dbuenzli/fmt/issues"
23+
depends: [
24+
"ocaml" {>= "4.08.0"}
25+
"ocamlfind" {build}
26+
"ocamlbuild" {build}
27+
"topkg" {build & >= "1.0.3"}
28+
]
29+
depopts: ["base-unix" "cmdliner"]
30+
conflicts: [
31+
"cmdliner" {< "1.3.0"}
32+
]
33+
build: [
34+
"ocaml"
35+
"pkg/pkg.ml"
36+
"build"
37+
"--dev-pkg"
38+
"%{dev}%"
39+
"--with-base-unix"
40+
"%{base-unix:installed}%"
41+
"--with-cmdliner"
42+
"%{cmdliner:installed}%"
43+
]
44+
dev-repo: "git+https://erratique.ch/repos/fmt.git"
45+
url {
46+
src: "https://erratique.ch/software/fmt/releases/fmt-0.10.0.tbz"
47+
checksum:
48+
"sha512=26d7f2002f0f1d605c08129ec09d487a8c37d764b77370e56b869fd94fe6bc903f808159ab7b79e85c2e2b6263ee5fa7df66f9f9625bdf0e726e8a92a9056258"
49+
}
50+
x-maintenance-intent: ["(latest)"]

0 commit comments

Comments
 (0)