summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/git-test-commit/package.py
blob: cae030d4c1ab0cd7364d6b9c8e8c83454c31b04a (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
# Copyright 2013-2021 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 GitTestCommit(Package):
    """Mock package that tests installing specific commit"""
    homepage = "http://www.git-fetch-example.com"
    # git='to-be-filled-in-by-test'

    version('1.0', tag='v1.0')
    version('1.1', tag='v1.1')
    version('1.2', tag='1.2')  # not a typo
    version('2.0', tag='v2.0')

    def install(self, spec, prefix):
        assert spec.satisfies('@:0')
        mkdir(prefix.bin)

        # This will only exist for some second commit
        install('file.txt', prefix.bin)