Skip to content

Commit 2b34893

Browse files
authored
Merge pull request #26302 from Artamus/opam-publish-git_split.0.0.1
Package git_split.0.0.1
2 parents 0e22b40 + d54674c commit 2b34893

File tree

1 file changed

+45
-0
lines changed
  • packages/git_split/git_split.0.0.1

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+
# This file is generated by dune, edit dune-project instead
2+
opam-version: "2.0"
3+
synopsis: "A tool to split a git commit into multiple"
4+
description:
5+
"When one commit becomes too large and needs to be split up, the general git workflow that involves resetting the commit and then using interactive staging to generate multiple commits from it can be quite cumbersome. In addition to that, the git interactive staging tool's UX can be quite bad, therefore this tools aims to provide this functionality in a nicer way."
6+
maintainer: ["Markus Loide <[email protected]>"]
7+
authors: ["Markus Loide <[email protected]>"]
8+
license: "Apache-2.0"
9+
homepage: "https://github.com/Artamus/git-split"
10+
bug-reports: "https://github.com/Artamus/git-split/issues"
11+
depends: [
12+
"ocaml" {>= "4.13"}
13+
"dune" {>= "3.15"}
14+
"re"
15+
"notty"
16+
"feather" {>= "0.3.0"}
17+
"ppx_deriving"
18+
"alcotest" {with-test}
19+
"odoc" {with-doc}
20+
]
21+
conflicts: [
22+
"result" {< "1.5"}
23+
]
24+
build: [
25+
["dune" "subst"] {dev}
26+
[
27+
"dune"
28+
"build"
29+
"-p"
30+
name
31+
"-j"
32+
jobs
33+
"@install"
34+
"@runtest" {with-test}
35+
"@doc" {with-doc}
36+
]
37+
]
38+
dev-repo: "git+https://github.com/Artamus/git-split.git"
39+
url {
40+
src: "https://github.com/Artamus/git-split/archive/refs/tags/0.0.1.tar.gz"
41+
checksum: [
42+
"md5=c2ae0a22df057de6dbef09886c8efd2f"
43+
"sha512=fc753a4b06e8bc3c8be373a5b8108801532371a664b813d8373da3f4270f74f066e9c46437c0ac4c7b2a1c3ad0fff0309a8e51a273e980f7dbe190dfe8bcef78"
44+
]
45+
}

0 commit comments

Comments
 (0)