From eb60c858a0c959d6ad200324cc34d91e27d74ad3 Mon Sep 17 00:00:00 2001 From: Jen Herting Date: Mon, 25 Jan 2021 23:34:10 -0500 Subject: New package: py-intel-openmp (#20748) * [py-intel-openmp] created template * [py-intel-openmp] is wheel * [py-intel-openmp] fixed version for linux * [py-intel-openmp] removed fixmes, added homepage and description * [py-intel-openmp] added macos support * [py-intel-openmp] style fix --- .../builtin/packages/py-intel-openmp/package.py | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 var/spack/repos/builtin/packages/py-intel-openmp/package.py diff --git a/var/spack/repos/builtin/packages/py-intel-openmp/package.py b/var/spack/repos/builtin/packages/py-intel-openmp/package.py new file mode 100644 index 0000000000..5c304fcec1 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-intel-openmp/package.py @@ -0,0 +1,36 @@ +# Copyright 2013-2020 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) + +import sys +from spack import * + + +class PyIntelOpenmp(Package): + """Intel OpenMP* Runtime Library x86_64 dynamic libraries + for macOS*. Intel OpenMP* Runtime Library provides OpenMP + API specification support in Intel C Compiler, Intel C++ + Compiler and Intel Fortran Compiler. It helps to improve + performance by creating multithreaded software using shared + memory and running on multi-core processor systems.""" + + homepage = "https://pypi.org/project/intel-openmp/" + + if sys.platform.startswith('linux'): + version('2021.1.2', + url='https://pypi.io/packages/py2.py3/i/intel-openmp/intel_openmp-2021.1.2-py2.py3-none-manylinux1_x86_64.whl', + sha256='8796797ecae99f39b27065e4a7f1f435e2ca08afba654ca57a77a2717f864dca', + expand=False) + + if sys.platform.startswith('darwin'): + version('2021.1.2', + url='https://pypi.io/packages/py2.py3/i/intel-openmp/intel_openmp-2021.1.2-py2.py3-none-macosx_10_15_x86_64.whl', + sha256='2af893738b4b06cb0183746f2992169111031340b59c84a0fd4dec1ed66b80f2', + expand=False) + + depends_on('py-pip', type='build') + + def install(self, spec, prefix): + pip = which('pip') + pip('install', self.stage.archive_file, '--prefix={0}'.format(prefix)) -- cgit v1.2.3-60-g2f50