From eb0561735dd8b71c83b8bc31f3f0fb7d81388511 Mon Sep 17 00:00:00 2001 From: Roman Briskine Date: Tue, 26 Nov 2019 18:22:31 +0000 Subject: Update Mathematica recipe (#13679) * Add licensing; replace url with url_for_version; create .spack dir during installation; symlink wolframscript; generate spec.yaml if missing * Reverted url change, .spack directory creation, and spec.yaml generation * Fix formatting issues --- var/spack/repos/builtin/packages/mathematica/package.py | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/var/spack/repos/builtin/packages/mathematica/package.py b/var/spack/repos/builtin/packages/mathematica/package.py index c86d98fa75..4fc25436ae 100644 --- a/var/spack/repos/builtin/packages/mathematica/package.py +++ b/var/spack/repos/builtin/packages/mathematica/package.py @@ -20,12 +20,26 @@ class Mathematica(Package): homepage = "https://www.wolfram.com/mathematica/" url = 'file://{0}/Mathematica_12.0.0_LINUX.sh'.format(os.getcwd()) - version('12.0.0', sha256='b9fb71e1afcc1d72c200196ffa434512d208fa2920e207878433f504e58ae9d7', + version('12.0.0', + sha256='b9fb71e1afcc1d72c200196ffa434512d208fa2920e207878433f504e58ae9d7', expand=False) + # Licensing + license_required = True + license_comment = '#' + license_files = ['Configuration/Licensing/mathpass'] + license_url = 'https://reference.wolfram.com/language/tutorial/RegistrationAndPasswords.html#857035062' + def install(self, spec, prefix): sh = which('sh') sh(self.stage.archive_file, '--', '-auto', '-verbose', '-targetdir={0}'.format(prefix), '-execdir={0}'.format(prefix.bin), '-selinux=y') + # This is what most people would use on a cluster but the installer + # does not symlink it + ws_link_path = os.path.join(prefix.bin, 'wolframscript') + if not os.path.exists(ws_link_path): + ln = which('ln') + ws_path = os.path.join(prefix, 'Executables', 'wolframscript') + ln('-s', ws_path, ws_link_path) -- cgit v1.2.3-70-g09d2