summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/scons/package.py
blob: a4209be174fc0889dc0aa21cc681c9581e498634 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 Scons(PythonPackage):
    """SCons is a software construction tool"""

    homepage = "http://scons.org"
    url      = "https://pypi.io/packages/source/s/scons/scons-3.0.1.tar.gz"

    version('3.0.4', sha256='72c0b56db84f40d3558f351918a0ab98cb4345e8696e879d3e271f4df4a5913c')
    version('3.0.1', 'b6a292e251b34b82c203b56cfa3968b3')
    version('2.5.1', '3eac81e5e8206304a9b4683c57665aa4')
    version('2.5.0', 'bda5530a70a41a7831d83c8b191c021e')

    # Python 3 support was added in SCons 3.0.0
    depends_on('python@:2', when='@:2', type=('build', 'run'))