
This commit either removes remaining md5 checksums, or it replaces them with sha256 checksums verified by fetching over https.
43 lines
1.6 KiB
Python
43 lines
1.6 KiB
Python
# 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 *
|
|
import os
|
|
|
|
|
|
class Nag(Package):
|
|
"""The NAG Fortran Compiler."""
|
|
homepage = "http://www.nag.com/nagware/np.asp"
|
|
|
|
version('6.2', sha256='e22f70f52949c4eb5526229c13920c924af5254d07a584cf54fefecd130fd29c')
|
|
version('6.1', sha256='32580e0004e6798abf1fa52f0070281b28abeb0da2387530a4cc41218e813c7c')
|
|
version('6.0', sha256='d5a326777a20303626b121da58522a122fcb1e3b4f2fcd657d9848e7b39fe7f8')
|
|
|
|
# Licensing
|
|
license_required = True
|
|
license_comment = '!'
|
|
license_files = ['lib/nag.key']
|
|
license_vars = ['NAG_KUSARI_FILE']
|
|
license_url = 'http://www.nag.com/doc/inun/np61/lin-mac/klicence.txt'
|
|
|
|
def url_for_version(self, version):
|
|
# TODO: url and checksum are architecture dependent
|
|
# TODO: We currently only support x86_64
|
|
url = 'https://www.nag.com/downloads/impl/npl6a{0}na_amd64.tgz'
|
|
return url.format(version.joined)
|
|
|
|
def install(self, spec, prefix):
|
|
# Set installation directories
|
|
os.environ['INSTALL_TO_BINDIR'] = prefix.bin
|
|
os.environ['INSTALL_TO_LIBDIR'] = prefix.lib
|
|
os.environ['INSTALL_TO_MANDIR'] = prefix + '/share/man/man'
|
|
|
|
# Run install script
|
|
os.system('./INSTALLU.sh')
|
|
|
|
def setup_environment(self, spack_env, run_env):
|
|
run_env.set('F77', join_path(self.prefix.bin, 'nagfor'))
|
|
run_env.set('FC', join_path(self.prefix.bin, 'nagfor'))
|