From d54674c305db8088111c0dc0ec7b42b1bced2846 Mon Sep 17 00:00:00 2001 From: Markus Loide Date: Tue, 30 Jul 2024 11:43:58 +0300 Subject: [PATCH] Package git_split.0.0.1 --- packages/git_split/git_split.0.0.1/opam | 45 +++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 packages/git_split/git_split.0.0.1/opam diff --git a/packages/git_split/git_split.0.0.1/opam b/packages/git_split/git_split.0.0.1/opam new file mode 100644 index 00000000000..5657654eda2 --- /dev/null +++ b/packages/git_split/git_split.0.0.1/opam @@ -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 "] +authors: ["Markus Loide "] +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" + ] +}