Changed keyword argument 'recurse' to 'recursive'

This commit is contained in:
alalazo 2017-08-03 17:21:40 +02:00 committed by Todd Gamblin
parent efd2a95781
commit e72b69732e
17 changed files with 21 additions and 19 deletions

View file

@ -91,7 +91,7 @@ def libs(self):
libraries = ['libparpack'] + libraries
return find_libraries(
libraries, root=self.prefix, shared=True, recurse=True
libraries, root=self.prefix, shared=True, recursive=True
)
@when('@3.4.0:')

View file

@ -142,7 +142,7 @@ def libs(self):
to_find = ['liblapack'] + interfaces + ['libatlas']
shared = False
return find_libraries(
to_find, root=self.prefix, shared=shared, recurse=True
to_find, root=self.prefix, shared=shared, recursive=True
)
def install_test(self):

View file

@ -113,7 +113,7 @@ class Elemental(CMakePackage):
def libs(self):
shared = True if '+shared' in self.spec else False
return find_libraries(
'libEl', root=self.prefix, shared=shared, recurse=True
'libEl', root=self.prefix, shared=shared, recursive=True
)
@when('@0.87.6:')

View file

@ -57,7 +57,7 @@ def url_for_version(self, version):
def libs(self):
libname = 'libelpa_openmp' if '+openmp' in self.spec else 'libelpa'
return find_libraries(
libname, root=self.prefix, shared=True, recurse=True
libname, root=self.prefix, shared=True, recursive=True
)
build_directory = 'spack-build'

View file

@ -163,7 +163,7 @@ def libs(self):
libraries = query2libraries[key]
return find_libraries(
libraries, root=self.prefix, shared=shared, recurse=True
libraries, root=self.prefix, shared=shared, recursive=True
)
@run_before('configure')

View file

@ -70,7 +70,7 @@ def mpi_libs(self):
libraries = ['libmpicxx'] + libraries
return find_libraries(
libraries, root=mpi_root, shared=True, recurse=True
libraries, root=mpi_root, shared=True, recursive=True
)
@property
@ -78,7 +78,7 @@ def mpi_headers(self):
# recurse from self.prefix will find too many things for all the
# supported sub-architectures like 'mic'
mpi_root = self.prefix.compilers_and_libraries.linux.mpi.include64
return find_headers('mpi', root=mpi_root, recurse=False)
return find_headers('mpi', root=mpi_root, recursive=False)
def setup_dependent_environment(self, spack_env, run_env, dependent_spec):
spack_env.set('I_MPI_CC', spack_cc)

View file

@ -60,7 +60,7 @@ def libs(self):
libraries = ['libxcf90'] + libraries
return find_libraries(
libraries, root=self.prefix, shared=shared, recurse=True
libraries, root=self.prefix, shared=shared, recursive=True
)
def install(self, spec, prefix):

View file

@ -113,4 +113,4 @@ def install(self, spec, prefix):
@property
def libs(self):
return find_libraries(
['libncurses', 'libncursesw'], root=self.prefix, recurse=True)
['libncurses', 'libncursesw'], root=self.prefix, recursive=True)

View file

@ -46,5 +46,5 @@ def libs(self):
shared = 'shared' in query_parameters
return find_libraries(
libraries, root=self.prefix, shared=shared, recurse=True
libraries, root=self.prefix, shared=shared, recursive=True
)

View file

@ -97,7 +97,7 @@ def blas_libs(self):
key = tuple(sorted(query_parameters))
libraries = query2libraries[key]
return find_libraries(
libraries, root=self.prefix, shared=shared, recurse=True
libraries, root=self.prefix, shared=shared, recursive=True
)
@property
@ -120,7 +120,7 @@ def lapack_libs(self):
key = tuple(sorted(query_parameters))
libraries = query2libraries[key]
return find_libraries(
libraries, root=self.prefix, shared=shared, recurse=True
libraries, root=self.prefix, shared=shared, recursive=True
)
def install_one(self, spec, prefix, shared):

View file

@ -64,7 +64,7 @@ def scalapack_libs(self):
# for 'libnetlib-scalapack.<suffix>'
shared = True if '+shared' in self.spec else False
return find_libraries(
'libscalapack', root=self.prefix, shared=shared, recurse=True
'libscalapack', root=self.prefix, shared=shared, recursive=True
)
def cmake_args(self):

View file

@ -229,7 +229,7 @@ def libs(self):
libraries = ['libmpi_cxx'] + libraries
return find_libraries(
libraries, root=self.prefix, shared=True, recurse=True
libraries, root=self.prefix, shared=True, recursive=True
)
def setup_dependent_environment(self, spack_env, run_env, dependent_spec):

View file

@ -296,7 +296,7 @@ def setup_environment(self, spack_env, run_env):
# performance information
dyninst_libdir = find_libraries('libdyninstAPI_RT',
root=self.spec['dyninst'].prefix,
shared=True, recurse=True)
shared=True, recursive=True)
# Set Dyninst RT library path to support OSS loop resolution code
run_env.set('DYNINSTAPI_RT_LIB', dyninst_libdir)
@ -304,7 +304,7 @@ def setup_environment(self, spack_env, run_env):
# Find openspeedshop library path
oss_libdir = find_libraries('libopenss-framework',
root=self.spec['openspeedshop'].prefix,
shared=True, recurse=True)
shared=True, recursive=True)
run_env.prepend_path('LD_LIBRARY_PATH',
os.path.dirname(oss_libdir.joined()))

View file

@ -22,7 +22,9 @@
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##############################################################################
import os
import shutil
from spack import *

View file

@ -91,7 +91,7 @@ def libs(self):
libraries = ['libesmumps'] + libraries
scotchlibs = find_libraries(
libraries, root=self.prefix, recurse=True, shared=shared
libraries, root=self.prefix, recursive=True, shared=shared
)
if '+compression' in self.spec:
zlibs = self.spec['zlib'].libs

View file

@ -48,7 +48,7 @@ class Veclibfort(Package):
def libs(self):
shared = True if '+shared' in self.spec else False
return find_libraries(
'libvecLibFort', root=self.prefix, shared=shared, recurse=True
'libvecLibFort', root=self.prefix, shared=shared, recursive=True
)
def install(self, spec, prefix):

View file

@ -54,7 +54,7 @@ class Zlib(Package):
def libs(self):
shared = '+shared' in self.spec
return find_libraries(
['libz'], root=self.prefix, recurse=True, shared=shared
['libz'], root=self.prefix, recursive=True, shared=shared
)
def setup_environment(self, spack_env, run_env):