summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorhealther <healther@users.noreply.github.com>2017-09-11 02:35:17 +0200
committerTodd Gamblin <tgamblin@llnl.gov>2017-09-10 14:35:17 -1000
commit1d3a8e034dfcaa391e7d0cb231f05e3625aa2adf (patch)
treefb12561881cc39c62e648f9038eb45096ab0ee8f /var
parentc077052664b0510430e53cda86fcfe0f5d870ced (diff)
downloadspack-1d3a8e034dfcaa391e7d0cb231f05e3625aa2adf.tar.gz
spack-1d3a8e034dfcaa391e7d0cb231f05e3625aa2adf.tar.bz2
spack-1d3a8e034dfcaa391e7d0cb231f05e3625aa2adf.tar.xz
spack-1d3a8e034dfcaa391e7d0cb231f05e3625aa2adf.zip
add package py-line-profiler (#5291)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-line-profiler/package.py39
1 files changed, 39 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-line-profiler/package.py b/var/spack/repos/builtin/packages/py-line-profiler/package.py
new file mode 100644
index 0000000000..8c337e4794
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-line-profiler/package.py
@@ -0,0 +1,39 @@
+##############################################################################
+# Copyright (c) 2013-2016, Lawrence Livermore National Security, LLC.
+# Produced at the Lawrence Livermore National Laboratory.
+#
+# This file is part of Spack.
+# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
+# LLNL-CODE-647188
+#
+# For details, see https://github.com/llnl/spack
+# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License (as
+# published by the Free Software Foundation) version 2.1, February 1999.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
+# conditions of the GNU Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+##############################################################################
+from spack import *
+
+
+class PyLineProfiler(PythonPackage):
+ """Line-by-line profiler."""
+
+ homepage = "https://github.com/rkern/line_profiler"
+ url = "https://pypi.io/packages/source/l/line_profiler/line_profiler-2.0.tar.gz"
+
+ version('2.0', 'fc93c6bcfac3b7cb1912cb28836d7ee6')
+
+ depends_on('python@2.5:')
+ depends_on('py-setuptools', type='build')
+ depends_on('py-cython', type='build')
+ depends_on('py-ipython@0.13:', type=('build', 'run'))