summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/git-svn-top-level/package.py
blob: ac0189a980f3136cf3adcfa3b48a78ae058c68f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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 GitSvnTopLevel(Package):
    """Mock package that uses git for fetching."""
    homepage = "http://www.git-fetch-example.com"

    # can't have two VCS fetchers.
    git = 'https://example.com/some/git/repo'
    svn = 'https://example.com/some/svn/repo'

    version('2.0')

    def install(self, spec, prefix):
        pass