summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/easybuild/package.py
blob: e70b59d8226adb1861b473fe0857afce05483ab7 (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
# 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 import *


class Easybuild(PythonPackage):
    """EasyBuild is a software build and installation framework
    for (scientific) software on HPC systems.
    """

    homepage = 'https://easybuilders.github.io/easybuild/'
    pypi = 'easybuild/easybuild-4.0.0.tar.gz'
    maintainers = ['boegel']

    version('4.0.0', sha256='21bcc1048525ad6219667cc97a7421b5388068c670cabba356712e474896de40')
    version('3.1.2', sha256='a966a08e41d3557d7fd3dc5322180c006d27281d9ecc1b1fce1b4518c32664d4', deprecated=True)

    depends_on('python@2.6:2.8', when='@:3', type=('build', 'run'))
    depends_on('python@2.6:2.8,3.5:', when='@4:', type=('build', 'run'))
    # pip silently replaces distutils with setuptools
    depends_on('py-setuptools', type='build')

    for v in ['@4.0.0', '@3.1.2']:
        depends_on('py-easybuild-framework'   + v, when=v, type='run')
        depends_on('py-easybuild-easyblocks'  + v, when=v, type='run')
        depends_on('py-easybuild-easyconfigs' + v, when=v, type='run')