From e69efded329ebbcf5ccf74ef137dc1a80bd4b4a6 Mon Sep 17 00:00:00 2001 From: Matthias Wolf Date: Thu, 10 Oct 2019 11:34:50 +0200 Subject: py-line-profiler: add 2.1.2, re-run cython if needed (#13102) * py-line-profiler: add 2.1.2, re-run cython if needed See rkern/line_profiler#166. * Update var/spack/repos/builtin/packages/py-line-profiler/package.py Co-Authored-By: Adam J. Stewart --- .../repos/builtin/packages/py-line-profiler/package.py | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/var/spack/repos/builtin/packages/py-line-profiler/package.py b/var/spack/repos/builtin/packages/py-line-profiler/package.py index 4276a89c4d..2399602e77 100644 --- a/var/spack/repos/builtin/packages/py-line-profiler/package.py +++ b/var/spack/repos/builtin/packages/py-line-profiler/package.py @@ -3,6 +3,8 @@ # # SPDX-License-Identifier: (Apache-2.0 OR MIT) +import os + from spack import * @@ -12,9 +14,20 @@ class PyLineProfiler(PythonPackage): homepage = "https://github.com/rkern/line_profiler" url = "https://pypi.io/packages/source/l/line_profiler/line_profiler-2.0.tar.gz" + version('2.1.2', sha256='efa66e9e3045aa7cb1dd4bf0106e07dec9f80bc781a993fbaf8162a36c20af5c') version('2.0', 'fc93c6bcfac3b7cb1912cb28836d7ee6') - depends_on('python@2.5:') + depends_on('python@2.5:', type=('build', 'run')) depends_on('py-setuptools', type='build') depends_on('py-cython', type='build') depends_on('py-ipython@0.13:', type=('build', 'run')) + + # See https://github.com/rkern/line_profiler/issues/166 + @run_before('build') + @when('^python@3.7:') + def fix_cython(self): + cython = self.spec['py-cython'].command + for root, _, files in os.walk('.'): + for fn in files: + if fn.endswith('.pyx'): + cython(os.path.join(root, fn)) -- cgit v1.2.3-60-g2f50