summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGeorge Hartzell <hartzell@alerce.com>2016-08-04 15:10:45 -0400
committerGeorge Hartzell <hartzell@alerce.com>2016-08-06 16:27:40 -0400
commit6a62a6b693f020bb221902c9049afdb947492708 (patch)
tree5223632ce4caaf3c3d6cb757149a8cacf6ed069f /var
parenta07a0ef54b43089eb608c0b464db2e2f5f79c115 (diff)
downloadspack-6a62a6b693f020bb221902c9049afdb947492708.tar.gz
spack-6a62a6b693f020bb221902c9049afdb947492708.tar.bz2
spack-6a62a6b693f020bb221902c9049afdb947492708.tar.xz
spack-6a62a6b693f020bb221902c9049afdb947492708.zip
Flake8 whitespace cleanup
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/bpp-core/package.py3
-rw-r--r--var/spack/repos/builtin/packages/bpp-phyl/package.py3
-rw-r--r--var/spack/repos/builtin/packages/bpp-seq/package.py3
-rw-r--r--var/spack/repos/builtin/packages/exonerate/package.py3
4 files changed, 8 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/bpp-core/package.py b/var/spack/repos/builtin/packages/bpp-core/package.py
index 0a10914726..987fd964b9 100644
--- a/var/spack/repos/builtin/packages/bpp-core/package.py
+++ b/var/spack/repos/builtin/packages/bpp-core/package.py
@@ -36,6 +36,7 @@ class BppCore(Package):
depends_on('cmake')
def install(self, spec, prefix):
- cmake('-DCMAKE_INSTALL_PREFIX=%s' % prefix, '-DBUILD_TESTING=FALSE', '.')
+ cmake('-DCMAKE_INSTALL_PREFIX=%s' % prefix,
+ '-DBUILD_TESTING=FALSE', '.')
make()
make('install')
diff --git a/var/spack/repos/builtin/packages/bpp-phyl/package.py b/var/spack/repos/builtin/packages/bpp-phyl/package.py
index 2240f7bd2f..c50f71385a 100644
--- a/var/spack/repos/builtin/packages/bpp-phyl/package.py
+++ b/var/spack/repos/builtin/packages/bpp-phyl/package.py
@@ -38,6 +38,7 @@ class BppPhyl(Package):
depends_on('bpp-seq')
def install(self, spec, prefix):
- cmake('-DCMAKE_INSTALL_PREFIX=%s' % prefix, '-DBUILD_TESTING=FALSE', '.')
+ cmake('-DCMAKE_INSTALL_PREFIX=%s' % prefix,
+ '-DBUILD_TESTING=FALSE', '.')
make()
make('install')
diff --git a/var/spack/repos/builtin/packages/bpp-seq/package.py b/var/spack/repos/builtin/packages/bpp-seq/package.py
index 398fda528e..dff26b3308 100644
--- a/var/spack/repos/builtin/packages/bpp-seq/package.py
+++ b/var/spack/repos/builtin/packages/bpp-seq/package.py
@@ -37,6 +37,7 @@ class BppSeq(Package):
depends_on('bpp-core')
def install(self, spec, prefix):
- cmake('-DCMAKE_INSTALL_PREFIX=%s' % prefix, '-DBUILD_TESTING=FALSE', '.')
+ cmake('-DCMAKE_INSTALL_PREFIX=%s' % prefix,
+ '-DBUILD_TESTING=FALSE', '.')
make()
make('install')
diff --git a/var/spack/repos/builtin/packages/exonerate/package.py b/var/spack/repos/builtin/packages/exonerate/package.py
index dcc20af2f9..7921e64058 100644
--- a/var/spack/repos/builtin/packages/exonerate/package.py
+++ b/var/spack/repos/builtin/packages/exonerate/package.py
@@ -39,6 +39,7 @@ class Exonerate(Package):
parallel = False
def install(self, spec, prefix):
- configure('--prefix={0}'.format(prefix), '--disable-debug', '--disable-dependency-tracking')
+ configure('--prefix={0}'.format(prefix), '--disable-debug',
+ '--disable-dependency-tracking')
make()
make('install')