summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/url-list-test/package.py
blob: f2cc0f4eaf2b78eff9054c5137dbdfb918c532cd (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
# Copyright 2013-2022 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)

import spack.paths
from spack import *


class UrlListTest(Package):
    """Mock package with url_list."""
    homepage = "http://www.url-list-example.com"

    web_data_path = join_path(spack.paths.test_path, 'data', 'web')
    url = 'file://' + web_data_path + '/foo-0.0.0.tar.gz'
    list_url = 'file://' + web_data_path + '/index.html'
    list_depth = 3

    version('0.0.0',   '00000000000000000000000000000000')
    version('1.0.0',   '00000000000000000000000000000100')
    version('3.0',     '00000000000000000000000000000030')
    version('4.5',     '00000000000000000000000000000450')
    version('2.0.0b2', '000000000000000000000000000200b2')
    version('3.0a1',   '000000000000000000000000000030a1')
    version('4.5-rc5', '000000000000000000000000000045c5')