summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/jemalloc
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2016-08-10 01:50:00 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2016-08-10 16:33:39 -0700
commit240f1fd2239552f37d0f8a8841496414b163ef10 (patch)
tree9bf142e5208ec715ae1ba0a556799276a77b27a6 /var/spack/repos/builtin/packages/jemalloc
parent867121ca68e436e95fe338b4ca80ab154dd6388a (diff)
downloadspack-240f1fd2239552f37d0f8a8841496414b163ef10.tar.gz
spack-240f1fd2239552f37d0f8a8841496414b163ef10.tar.bz2
spack-240f1fd2239552f37d0f8a8841496414b163ef10.tar.xz
spack-240f1fd2239552f37d0f8a8841496414b163ef10.zip
Spack packages now PEP8 compliant.
Diffstat (limited to 'var/spack/repos/builtin/packages/jemalloc')
-rw-r--r--var/spack/repos/builtin/packages/jemalloc/package.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/jemalloc/package.py b/var/spack/repos/builtin/packages/jemalloc/package.py
index a67754a513..f5a983b7a9 100644
--- a/var/spack/repos/builtin/packages/jemalloc/package.py
+++ b/var/spack/repos/builtin/packages/jemalloc/package.py
@@ -24,8 +24,10 @@
##############################################################################
from spack import *
+
class Jemalloc(Package):
- """jemalloc is a general purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support."""
+ """jemalloc is a general purpose malloc(3) implementation that emphasizes
+ fragmentation avoidance and scalable concurrency support."""
homepage = "http://www.canonware.com/jemalloc/"
url = "https://github.com/jemalloc/jemalloc/releases/download/4.0.4/jemalloc-4.0.4.tar.bz2"
@@ -36,7 +38,7 @@ class Jemalloc(Package):
variant('prof', default=False, description='Enable heap profiling')
def install(self, spec, prefix):
- configure_args = ['--prefix=%s' % prefix,]
+ configure_args = ['--prefix=%s' % prefix, ]
if '+stats' in spec:
configure_args.append('--enable-stats')