Update packages.yaml format references in packages (#19741)

This commit is contained in:
Adam J. Stewart 2020-11-05 08:44:00 -06:00 committed by GitHub
parent 619eb6c08b
commit 09ec3e9268
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 52 additions and 38 deletions

View file

@ -34,10 +34,10 @@ def fetcher(self):
packages:
apple-libunwind:
paths:
apple-libunwind@35.3: /usr
buildable: False
externals:
- spec: apple-libunwind@35.3
prefix: /usr
"""
raise InstallError(msg)

View file

@ -19,11 +19,12 @@ class Fca(Package):
# FCA needs to be added as an external package to SPACK. For this, the
# config file packages.yaml needs to be adjusted:
#
# packages:
# fca:
# version: [2.5.2431]
# paths:
# fca@2.5.2431: /opt/mellanox/fca (path to your FCA installation)
# buildable: False
# externals:
# - spec: fca@2.5.2431
# prefix: /opt/mellanox/fca (path to your FCA installation)
def install(self, spec, prefix):
raise InstallError(

View file

@ -19,11 +19,12 @@ class Hcoll(Package):
# HCOLL needs to be added as an external package to SPACK. For this, the
# config file packages.yaml needs to be adjusted:
#
# packages:
# hcoll:
# version: [3.9.1927]
# paths:
# hcoll@3.9.1927: /opt/mellanox/hcoll (path to your HCOLL installation)
# buildable: False
# externals:
# - spec: hcoll@3.9.1927
# prefix: /opt/mellanox/hcoll (path to your HCOLL installation)
def install(self, spec, prefix):
raise InstallError(

View file

@ -156,10 +156,12 @@ def macos_check(self):
packages:
jdk:
paths:
jdk@10.0.1_10: /path/to/jdk/Home
jdk@1.7.0_45-b18: /path/to/jdk/Home
buildable: False""".format(self.homepage)
buildable: False
externals:
- spec: jdk@10.0.1_10
prefix: /path/to/jdk/Home
- spec: jdk@1.7.0_45-b18
prefix: /path/to/jdk/Home""".format(self.homepage)
tty.die(msg)

View file

@ -17,11 +17,13 @@ class Lsf(Package):
# LSF needs to be added as an external package to SPACK. For this, the
# config file packages.yaml needs to be adjusted:
#
# packages:
# lsf:
# version: [10.1]
# paths:
# lsf@10.1: /usr/local/lsf/10.1 (path to your LSF installation)
# buildable: False
# externals:
# - spec: lsf@10.1
# prefix: /usr/local/lsf/10.1 (path to your LSF installation)
def install(self, spec, prefix):
raise InstallError(

View file

@ -27,11 +27,13 @@ def determine_version(cls, exe):
# Lustre is filesystem and needs to be installed on system.
# To have it as external package in SPACK, follow below:
# config file packages.yaml needs to be adjusted:
#
# packages:
# lustre:
# version: [2.12]
# paths:
# lustre@2.12: /usr (Usual Lustre library path)
# buildable: False
# externals:
# - spec: lustre@2.12
# prefix: /usr (Usual Lustre library path)
def install(self, spec, prefix):
raise InstallError(

View file

@ -76,9 +76,9 @@ def fetcher(self):
packages:
mpt:
paths:
mpt@2.20: /opt/
buildable: False
externals:
- spec: mpt@2.20
prefix: /opt
"""
raise InstallError(msg)

View file

@ -18,11 +18,13 @@ class Mxm(Package):
# MXM needs to be added as an external package to SPACK. For this, the
# config file packages.yaml needs to be adjusted:
#
# packages:
# mxm:
# version: [3.6.3104]
# paths:
# mxm@3.6.3104: /opt/mellanox/mxm (path to your MXM installation)
# buildable: False
# externals:
# - spec: mxm@3.6.3104
# prefix: /opt/mellanox/mxm (path to your MXM installation)
def install(self, spec, prefix):
raise InstallError(

View file

@ -57,9 +57,10 @@ def fetcher(self):
packages:
opengl:
paths:
opengl@4.5.0: /opt/opengl
buildable: False
externals:
- spec: opengl@4.5.0
prefix: /opt/opengl
In that case, /opt/opengl/ should contain these two folders:
@ -72,9 +73,10 @@ def fetcher(self):
packages:
opengl:
paths:
opengl@4.1: /usr/X11R6
buildable: False
externals:
- spec: opengl@4.1
prefix: /usr/X11R6
In that case, /usr/X11R6 should contain

View file

@ -31,9 +31,10 @@ def fetcher(self):
packages:
openglu:
paths:
openglu@1.3: /opt/opengl
buildable: False
externals:
- spec: openglu@1.3
prefix: /opt/opengl
In that case, /opt/opengl/ should contain these two folders:
@ -46,9 +47,10 @@ def fetcher(self):
packages:
openglu:
paths:
openglu@1.3: /usr/X11R6
buildable: False
externals:
- spec: openglu@1.3
prefix: /usr/X11R6
In that case, /usr/X11R6 should contain