summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Lee <lee218@llnl.gov>2016-05-15 08:19:55 -0700
committerGreg Lee <lee218@llnl.gov>2016-05-15 08:19:55 -0700
commitc2ca5f44b4091821fbda36ce2dce77af3e4087f5 (patch)
tree9387dfb5d74bb00e12e2cf54edbacccebafe3a01
parente3cd0a67d020b73e5fdc6cfeb4ee874d49f2c305 (diff)
downloadspack-c2ca5f44b4091821fbda36ce2dce77af3e4087f5.tar.gz
spack-c2ca5f44b4091821fbda36ce2dce77af3e4087f5.tar.bz2
spack-c2ca5f44b4091821fbda36ce2dce77af3e4087f5.tar.xz
spack-c2ca5f44b4091821fbda36ce2dce77af3e4087f5.zip
flake8 fixes
-rw-r--r--var/spack/repos/builtin/packages/intel-parallel-studio/package.py77
-rw-r--r--var/spack/repos/builtin/packages/intel/package.py23
2 files changed, 50 insertions, 50 deletions
diff --git a/var/spack/repos/builtin/packages/intel-parallel-studio/package.py b/var/spack/repos/builtin/packages/intel-parallel-studio/package.py
index db6cc888dd..a176af101d 100644
--- a/var/spack/repos/builtin/packages/intel-parallel-studio/package.py
+++ b/var/spack/repos/builtin/packages/intel-parallel-studio/package.py
@@ -2,7 +2,8 @@ from spack import *
import os
import re
-from spack.pkg.builtin.intel import IntelInstaller, filter_pick, get_all_components
+from spack.pkg.builtin.intel import IntelInstaller, filter_pick, \
+ get_all_components
class IntelParallelStudio(IntelInstaller):
@@ -16,28 +17,28 @@ class IntelParallelStudio(IntelInstaller):
# TODO: can also try the online installer (will download files on demand)
version('composer.2016.2', '1133fb831312eb519f7da897fec223fa',
- url="file://%s/parallel_studio_xe_2016_composer_edition_update2.tgz"
+ url="file://%s/parallel_studio_xe_2016_composer_edition_update2.tgz" # NOQA: ignore=E501
% os.getcwd())
version('professional.2016.2', '70be832f2d34c9bf596a5e99d5f2d832',
- url="file://%s/parallel_studio_xe_2016_update2.tgz" % os.getcwd())
+ url="file://%s/parallel_studio_xe_2016_update2.tgz" % os.getcwd()) # NOQA: ignore=E501
version('cluster.2016.2', '70be832f2d34c9bf596a5e99d5f2d832',
- url="file://%s/parallel_studio_xe_2016_update2.tgz" % os.getcwd())
+ url="file://%s/parallel_studio_xe_2016_update2.tgz" % os.getcwd()) # NOQA: ignore=E501
version('composer.2016.3', '3208eeabee951fc27579177b593cefe9',
- url="file://%s/parallel_studio_xe_2016_composer_edition_update3.tgz"
+ url="file://%s/parallel_studio_xe_2016_composer_edition_update3.tgz" # NOQA: ignore=E501
% os.getcwd())
version('professional.2016.3', 'eda19bb0d0d19709197ede58f13443f3',
- url="file://%s/parallel_studio_xe_2016_update3.tgz" % os.getcwd())
+ url="file://%s/parallel_studio_xe_2016_update3.tgz" % os.getcwd()) # NOQA: ignore=E501
version('cluster.2016.3', 'eda19bb0d0d19709197ede58f13443f3',
- url="file://%s/parallel_studio_xe_2016_update3.tgz" % os.getcwd())
+ url="file://%s/parallel_studio_xe_2016_update3.tgz" % os.getcwd()) # NOQA: ignore=E501
variant('rpath', default=True, description="Add rpath to .cfg files")
variant('all', default=False,
- description="Install all files associated with the requested edition")
+ description="Install all files with the requested edition")
variant('mpi', default=True,
- description="Install the Intel MPI library and ITAC tool")
+ description="Install the Intel MPI library and ITAC tool")
variant('mkl', default=True, description="Install the Intel MKL library")
variant('daal',
- default=True, description="Install the Intel DAAL libraries")
+ default=True, description="Install the Intel DAAL libraries")
variant('ipp', default=True, description="Install the Intel IPP libraries")
variant('tools', default=True, description="""Install the Intel Advisor,\
VTune Amplifier, and Inspector tools""")
@@ -59,19 +60,21 @@ VTune Amplifier, and Inspector tools""")
base_components = "ALL"
else:
all_components = get_all_components()
- base_components = filter_pick(all_components,
- re.compile('(comp|openmp|intel-tbb|icc|ifort|psxe|icsxe-pset)'
- ).search)
- mpi_components = filter_pick(all_components,
- re.compile('(icsxe|imb|mpi|itac|intel-tc|clck)').search)
- mkl_components = filter_pick(all_components,
- re.compile('(mkl)').search)
- daal_components = filter_pick(all_components,
- re.compile('(daal)').search)
- ipp_components = filter_pick(all_components,
- re.compile('(ipp)').search)
- tool_components = filter_pick(all_components,
- re.compile('(gdb|vtune|inspector|advisor)').search)
+ regex = '(comp|openmp|intel-tbb|icc|ifort|psxe|icsxe-pset)'
+ base_components = \
+ filter_pick(all_components, re.compile(regex).search)
+ regex = '(icsxe|imb|mpi|itac|intel-tc|clck)'
+ mpi_components = \
+ filter_pick(all_components, re.compile(regex).search)
+ mkl_components = \
+ filter_pick(all_components, re.compile('(mkl)').search)
+ daal_components = \
+ filter_pick(all_components, re.compile('(daal)').search)
+ ipp_components = \
+ filter_pick(all_components, re.compile('(ipp)').search)
+ regex = '(gdb|vtune|inspector|advisor)'
+ tool_components = \
+ filter_pick(all_components, re.compile(regex).search)
components = base_components
if not spec.satisfies('+all'):
@@ -83,8 +86,8 @@ VTune Amplifier, and Inspector tools""")
components += daal_components
if spec.satisfies('+ipp'):
components += ipp_components
- if spec.satisfies('+tools') and (spec.satisfies('@cluster') or\
- spec.satisfies('@professional')):
+ if spec.satisfies('+tools') and (spec.satisfies('@cluster') or
+ spec.satisfies('@professional')):
components += tool_components
self.intel_components = ';'.join(components)
@@ -93,14 +96,12 @@ VTune Amplifier, and Inspector tools""")
absbindir = os.path.dirname(os.path.realpath(os.path.join(
self.prefix.bin, "icc")))
abslibdir = os.path.dirname(os.path.realpath(os.path.join
- (self.prefix.lib, "intel64", "libimf.a")))
+ (self.prefix.lib, "intel64", "libimf.a")))
- relbindir = absbindir.strip(os.path.commonprefix([self.prefix,
- absbindir]))
os.symlink(self.global_license_file, os.path.join(absbindir,
- "license.lic"))
- if spec.satisfies('+tools') and (spec.satisfies('@cluster') or\
- spec.satisfies('@professional')):
+ "license.lic"))
+ if spec.satisfies('+tools') and (spec.satisfies('@cluster') or
+ spec.satisfies('@professional')):
os.mkdir(os.path.join(self.prefix, "inspector_xe/licenses"))
os.symlink(self.global_license_file, os.path.join(
self.prefix, "inspector_xe/licenses", "license.lic"))
@@ -111,17 +112,17 @@ VTune Amplifier, and Inspector tools""")
os.symlink(self.global_license_file, os.path.join(
self.prefix, "vtune_amplifier_xe/licenses", "license.lic"))
- if (spec.satisfies('+all') or spec.satisfies('+mpi')) and\
- spec.satisfies('@cluster'):
- os.symlink(self.global_license_file, os.path.join(
- self.prefix, "itac_latest", "license.lic"))
+ if (spec.satisfies('+all') or spec.satisfies('+mpi')) and \
+ spec.satisfies('@cluster'):
+ os.symlink(self.global_license_file, os.path.join(
+ self.prefix, "itac_latest", "license.lic"))
if spec.satisfies('+rpath'):
for compiler_command in ["icc", "icpc", "ifort"]:
- cfgfilename = os.path.join(absbindir, "%s.cfg" %\
- compiler_command)
+ cfgfilename = os.path.join(absbindir, "%s.cfg" %
+ compiler_command)
with open(cfgfilename, "w") as f:
f.write('-Xlinker -rpath -Xlinker %s\n' % abslibdir)
os.symlink(os.path.join(self.prefix.man, "common", "man1"),
- os.path.join(self.prefix.man, "man1"))
+ os.path.join(self.prefix.man, "man1"))
diff --git a/var/spack/repos/builtin/packages/intel/package.py b/var/spack/repos/builtin/packages/intel/package.py
index 2d6929fc73..ec3192380a 100644
--- a/var/spack/repos/builtin/packages/intel/package.py
+++ b/var/spack/repos/builtin/packages/intel/package.py
@@ -52,9 +52,9 @@ class IntelInstaller(Package):
# Remove the installation DB, otherwise it will try to install into
# location of other Intel builds
if os.path.exists(os.path.join(os.environ["HOME"], "intel",
- "intel_sdp_products.db")):
+ "intel_sdp_products.db")):
os.remove(os.path.join(os.environ["HOME"], "intel",
- "intel_sdp_products.db"))
+ "intel_sdp_products.db"))
if not hasattr(self, "intel_prefix"):
self.intel_prefix = self.prefix
@@ -71,7 +71,7 @@ ACTIVATION_TYPE=license_file
PHONEHOME_SEND_USAGE_DATA=no
CONTINUE_WITH_OPTIONAL_ERROR=yes
COMPONENTS=%s
-""" %(self.intel_prefix, self.global_license_file, self.intel_components))
+""" % (self.intel_prefix, self.global_license_file, self.intel_components))
install_script = which("install.sh")
install_script('--silent', silent_config_filename)
@@ -88,10 +88,10 @@ class Intel(IntelInstaller):
# TODO: can also try the online installer (will download files on demand)
version('16.0.2', '1133fb831312eb519f7da897fec223fa',
- url="file://%s/parallel_studio_xe_2016_composer_edition_update2.tgz"\
+ url="file://%s/parallel_studio_xe_2016_composer_edition_update2.tgz" # NOQA: ignore=E501
% os.getcwd())
version('16.0.3', '3208eeabee951fc27579177b593cefe9',
- url="file://%s/parallel_studio_xe_2016_composer_edition_update3.tgz"\
+ url="file://%s/parallel_studio_xe_2016_composer_edition_update3.tgz" # NOQA: ignore=E501
% os.getcwd())
variant('rpath', default=True, description="Add rpath to .cfg files")
@@ -99,9 +99,8 @@ class Intel(IntelInstaller):
def install(self, spec, prefix):
components = []
all_components = get_all_components()
- components = filter_pick(all_components,
- re.compile('(comp|openmp|intel-tbb|icc|ifort|psxe|icsxe-pset)'
- ).search)
+ regex = '(comp|openmp|intel-tbb|icc|ifort|psxe|icsxe-pset)'
+ components = filter_pick(all_components, re.compile(regex).search)
self.intel_components = ';'.join(components)
IntelInstaller.install(self, spec, prefix)
@@ -113,14 +112,14 @@ class Intel(IntelInstaller):
# symlink or copy?
os.symlink(self.global_license_file, os.path.join(absbindir,
- "license.lic"))
+ "license.lic"))
if spec.satisfies('+rpath'):
for compiler_command in ["icc", "icpc", "ifort"]:
- cfgfilename = os.path.join(absbindir, "%s.cfg" %\
- compiler_command)
+ cfgfilename = os.path.join(absbindir, "%s.cfg" %
+ compiler_command)
with open(cfgfilename, "w") as f:
f.write('-Xlinker -rpath -Xlinker %s\n' % abslibdir)
os.symlink(os.path.join(self.prefix.man, "common", "man1"),
- os.path.join(self.prefix.man, "man1"))
+ os.path.join(self.prefix.man, "man1"))