summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/git-test-commit/package.py
blob: 5bdac9f39823225201cf3d79216d6fd9a4dff612 (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
# 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 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):
        # It is assumed for the test which installs this package, that it will
        # be using the earliest commit, which is contained in the range @:0
        assert spec.satisfies("@:0")
        mkdir(prefix.bin)

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