summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/git-imerge/package.py
blob: 430e4b89f8a7f29daeeb753af94863a0af7df09a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack.package import *


class GitImerge(MakefilePackage):
    """git-imerge: Incremental merge & rebase for git

    Perform a merge between two branches incrementally. If
    conflicts are encountered, figure out exactly which pairs of
    commits conflict, and present the user with one pairwise
    conflict at a time for resolution.

    git-imerge has two primary design goals:

    * Reduce the pain of resolving merge conflicts to its
      unavoidable minimum, by finding and presenting the smallest
      possible conflicts: those between the changes introduced by
      one commit from each branch.

    * Allow a merge to be saved, tested, interrupted, published,
      and collaborated on while it is in progress."""

    homepage = "https://github.com/mhagger/git-imerge"
    url = "https://github.com/mhagger/git-imerge/archive/v1.1.0.tar.gz"

    license("GPL-2.0-or-later")

    version("1.1.0", sha256="62692f43591cc7d861689c60b68c55d7b10c7a201c1026096a7efc771df2ca28")
    version("1.0.0", sha256="2ef3a49a6d54c4248ef2541efc3c860824fc8295a7226760f24f0bb2c5dd41f2")

    depends_on("python@2.6:")
    depends_on("git")

    # Package copies a Python script and bash-completion files, so
    # there's no need to "build" anything.
    def build(self, spec, prefix):
        pass

    def install(self, spec, prefix):
        make("DESTDIR={0}".format(prefix), "PREFIX=", "install")