15 lines
410 B
Python
15 lines
410 B
Python
# 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)
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class SvnTest(Package):
|
|
"""Mock package that uses svn for fetching."""
|
|
|
|
url = "http://www.example.com/svn-test-1.0.tar.gz"
|
|
|
|
version("svn", svn="to-be-filled-in-by-test")
|