summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/dev-build-test-install-phases/package.py
blob: 72fe849ba38208a4a3fc3463010fef88bcfe6a1d (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
# 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 time import sleep


class DevBuildTestInstallPhases(Package):
    homepage = "example.com"
    url = "fake.com"

    version('0.0.0', sha256='0123456789abcdef0123456789abcdef')

    phases = ['one', 'two', 'three', 'install']

    def one(self, spec, prefix):
        sleep(1)
        print("One locomoco")

    def two(self, spec, prefix):
        sleep(2)
        print("Two locomoco")

    def three(self, spec, prefix):
        sleep(3)
        print("Three locomoco")

    def install(self, spec, prefix):
        print("install")