summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/git-imerge/package.py
blob: 68954afad89b8cfa2f1e3ce0fff263c2c0c0e7b0 (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
# Copyright 2013-2019 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 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"

    version('1.1.0', '94a44dcbe5e764d75770a24517572a76')
    version('1.0.0', 'e5e69a22610828cc33bf2cbd31685438')

    depends_on('python@2.6:')
    depends_on('py-argparse', when='^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')