summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/git-url-top-level/package.py
blob: 94e9b4ff4190210bd307374e60e4612585cc9b7d (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# 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 GitUrlTopLevel(Package):
    """Mock package that top-level git and url attributes.

    This demonstrates how Spack infers fetch mechanisms from parameters
    to the ``version`` directive.

    """
    homepage = "http://www.git-fetch-example.com"

    git = 'https://example.com/some/git/repo'
    url = 'https://example.com/some/tarball-1.0.tar.gz'

    # These resolve to git fetchers
    version('develop', branch='develop')
    version('submodules', submodules=True)
    version('3.4', commit='abc34')
    version('3.3', branch='releases/v3.3', commit='abc33')
    version('3.2', branch='releases/v3.2')
    version('3.1', tag='v3.1', commit='abc31')
    version('3.0', tag='v3.0')

    # These resolve to URL fetchers
    version(
        '2.3', '0000000000000000000000000000000000000000000000000000000000000023',
        url='https://www.example.com/foo2.3.tar.gz',
    )
    version(
        '2.2',
        sha256='0000000000000000000000000000000000000000000000000000000000000022',
        url='https://www.example.com/foo2.2.tar.gz',
    )
    version(
        '2.1',
        sha256='0000000000000000000000000000000000000000000000000000000000000021',
    )
    version(
        '2.0',
        '0000000000000000000000000000000000000000000000000000000000000020',
    )

    # These result in a FetcherConflict b/c we can't tell what to use
    version(
        '1.3',
        sha256='f66bbef3ccb8b06542c57d69804c5b0aba72051f693c17761ad8525786d259fa',
        commit='abc13'
    )
    version(
        '1.2',
        sha512='f66bbef3ccb8b06542c57d69804c5b0aba72051f693c17761ad8525786d259fa'
        '9ed8f2e950a4fb8a4b936f33e689187784699357bc16e49f33dfcda8ab8b00e4',
        branch='releases/v1.2'
    )
    version('1.1', md5='00000000000000000000000000000011', tag='v1.1')
    version('1.0', '00000000000000000000000000000011', tag='abc123')