Skip to content

Commit cd50f8d

Browse files
committed
[new release] merge-fmt (0.4)
CHANGES: - Add support of dune formatter. (hhugo/merge-fmt#3)
1 parent f7c62d8 commit cd50f8d

File tree

1 file changed

+45
-0
lines changed
  • packages/merge-fmt/merge-fmt.0.4

1 file changed

+45
-0
lines changed
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
opam-version: "2.0"
2+
synopsis: "Git mergetool leveraging code formatters"
3+
description:
4+
"`merge-fmt` is a small wrapper on top git commands to help resolve conflicts by leveraging code formatters."
5+
maintainer: ["[email protected]"]
6+
authors: ["Hugo Heuzard"]
7+
license: "MIT"
8+
homepage: "https://github.com/hhugo/merge-fmt"
9+
doc: "https://hhugo.github.io/merge-fmt/"
10+
bug-reports: "https://github.com/hhugo/merge-fmt/issues"
11+
depends: [
12+
"dune" {>= "3.0"}
13+
"ocaml" {>= "4.8"}
14+
"cmdliner" {>= "1.1.0"}
15+
"base"
16+
"stdio"
17+
"ppx_expect" {with-test}
18+
"core_unix" {with-test}
19+
"ocamlformat" {= "0.27.0" & with-test}
20+
"odoc" {with-doc}
21+
]
22+
build: [
23+
["dune" "subst"] {dev}
24+
[
25+
"dune"
26+
"build"
27+
"-p"
28+
name
29+
"-j"
30+
jobs
31+
"@install"
32+
"@runtest" {with-test}
33+
"@doc" {with-doc}
34+
]
35+
]
36+
dev-repo: "git+https://github.com/hhugo/merge-fmt.git"
37+
url {
38+
src:
39+
"https://github.com/hhugo/merge-fmt/releases/download/0.4/merge-fmt-0.4.tbz"
40+
checksum: [
41+
"sha256=48f104bf49166e055a6221d8875107e3b3de60a9a1f7bed96363830a99a3ac58"
42+
"sha512=cfd5bca5bd0813085e0cd4443907086079f4d5c165b582ea0cc88adbf60a8f3237b31a72141f3c72d557f7215af6b5cba9b9f04298e62a76b56936432c975106"
43+
]
44+
}
45+
x-commit-hash: "75fe62161292f8ce41d186e99d696957abdc7760"

0 commit comments

Comments
 (0)