forked from ocaml/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ocaml#26302 from Artamus/opam-publish-git_split.0.0.1
Package git_split.0.0.1
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
synopsis: "A tool to split a git commit into multiple" | ||
description: | ||
"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." | ||
maintainer: ["Markus Loide <[email protected]>"] | ||
authors: ["Markus Loide <[email protected]>"] | ||
license: "Apache-2.0" | ||
homepage: "https://github.com/Artamus/git-split" | ||
bug-reports: "https://github.com/Artamus/git-split/issues" | ||
depends: [ | ||
"ocaml" {>= "4.13"} | ||
"dune" {>= "3.15"} | ||
"re" | ||
"notty" | ||
"feather" {>= "0.3.0"} | ||
"ppx_deriving" | ||
"alcotest" {with-test} | ||
"odoc" {with-doc} | ||
] | ||
conflicts: [ | ||
"result" {< "1.5"} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/Artamus/git-split.git" | ||
url { | ||
src: "https://github.com/Artamus/git-split/archive/refs/tags/0.0.1.tar.gz" | ||
checksum: [ | ||
"md5=c2ae0a22df057de6dbef09886c8efd2f" | ||
"sha512=fc753a4b06e8bc3c8be373a5b8108801532371a664b813d8373da3f4270f74f066e9c46437c0ac4c7b2a1c3ad0fff0309a8e51a273e980f7dbe190dfe8bcef78" | ||
] | ||
} |