diff options
author | Robert Cohn <rscohn2@gmail.com> | 2021-04-16 17:07:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-16 16:07:59 -0500 |
commit | 89e9e44bf25e595483fcb3b0af6188668bccbc7d (patch) | |
tree | 1dd3d3d366f4e4cef7fc02cdd76bee950a058be0 | |
parent | 546581aefe42cdf7811043e6a58739795bac7b72 (diff) | |
download | spack-89e9e44bf25e595483fcb3b0af6188668bccbc7d.tar.gz spack-89e9e44bf25e595483fcb3b0af6188668bccbc7d.tar.bz2 spack-89e9e44bf25e595483fcb3b0af6188668bccbc7d.tar.xz spack-89e9e44bf25e595483fcb3b0af6188668bccbc7d.zip |
add maintainers to legacy intel product pacakges (#23030)
-rw-r--r-- | var/spack/repos/builtin/packages/intel-parallel-studio/package.py | 2 | ||||
-rw-r--r-- | var/spack/repos/builtin/packages/intel/package.py | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/intel-parallel-studio/package.py b/var/spack/repos/builtin/packages/intel-parallel-studio/package.py index 450e4bb94e..9a1c68ba6a 100644 --- a/var/spack/repos/builtin/packages/intel-parallel-studio/package.py +++ b/var/spack/repos/builtin/packages/intel-parallel-studio/package.py @@ -11,6 +11,8 @@ class IntelParallelStudio(IntelPackage): homepage = "https://software.intel.com/en-us/intel-parallel-studio-xe" + maintainers = ['rscohn2', 'danvev'] + # As of 2016, the product comes in three "editions" that vary by scope. # # In Spack, select the edition via the version number in the spec, e.g.: diff --git a/var/spack/repos/builtin/packages/intel/package.py b/var/spack/repos/builtin/packages/intel/package.py index 081e604de2..bd118c1b38 100644 --- a/var/spack/repos/builtin/packages/intel/package.py +++ b/var/spack/repos/builtin/packages/intel/package.py @@ -12,6 +12,8 @@ class Intel(IntelPackage): homepage = "https://software.intel.com/en-us/intel-parallel-studio-xe" + maintainers = ['rscohn2', 'danvev'] + # Same as in ../intel-parallel-studio/package.py, Composer Edition, # but the version numbering in Spack differs. version('20.0.4', sha256='ac1efeff608a8c3a416e6dfe20364061e8abf62d35fbaacdffe3fc9676fc1aa3', url='http://registrationcenter-download.intel.com/akdlm/irc_nas/tec/17117/parallel_studio_xe_2020_update4_composer_edition.tgz') |