oneapi licenses (#43451)

This commit is contained in:
Robert Cohn 2024-04-06 08:04:04 -04:00 committed by GitHub
parent 663e20fcc4
commit 54acda3f11
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View file

@ -14,7 +14,7 @@
from llnl.util.link_tree import LinkTree
from spack.build_environment import dso_suffix
from spack.directives import conflicts, variant
from spack.directives import conflicts, license, variant
from spack.package_base import InstallError
from spack.util.environment import EnvironmentModifications
from spack.util.executable import Executable
@ -26,6 +26,7 @@ class IntelOneApiPackage(Package):
"""Base class for Intel oneAPI packages."""
homepage = "https://software.intel.com/oneapi"
license("https://intel.ly/393CijO")
# oneAPI license does not allow mirroring outside of the
# organization (e.g. University/Company).

View file

@ -15,6 +15,9 @@ class IntelOneapiRuntime(Package):
homepage = "https://software.intel.com/content/www/us/en/develop/tools/oneapi.html"
has_code = False
license("https://intel.ly/393CijO")
maintainers("rscohn2")
tags = ["runtime"]