Skip to content
2 changes: 1 addition & 1 deletion easybuild/easyblocks/g/gromacs.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
from easybuild.framework.easyconfig import CUSTOM
from easybuild.tools.build_log import EasyBuildError, print_warning
from easybuild.tools.config import build_option
from easybuild.tools.filetools import download_file, extract_file, which
from easybuild.tools.filetools import which
from easybuild.tools.modules import get_software_libdir, get_software_root, get_software_version
from easybuild.tools.run import run_cmd
from easybuild.tools.toolchain.compiler import OPTARCH_GENERIC
Expand Down
3 changes: 2 additions & 1 deletion easybuild/easyblocks/i/impi.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ def install_step(self):
libfabric_src_tgz_fn = 'src.tgz'
if os.path.exists(os.path.join(libfabric_path, libfabric_src_tgz_fn)):
change_dir(libfabric_path)
extract_file(libfabric_src_tgz_fn, os.getcwd())
srcdir = extract_file(libfabric_src_tgz_fn, os.getcwd(), change_into_dir=False)
change_dir(srcdir)
libfabric_installpath = os.path.join(self.installdir, 'intel64', 'libfabric')

make = 'make'
Expand Down
6 changes: 3 additions & 3 deletions easybuild/easyblocks/n/namd.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def extra_options():
})
return extra

def __init__(self,*args,**kwargs):
def __init__(self, *args, **kwargs):
"""Custom easyblock constructor for NAMD, initialize class variables."""
super(EB_NAMD, self).__init__(*args, **kwargs)
self.namd_arch = None
Expand All @@ -63,7 +63,8 @@ def extract_step(self):
if len(self.charm_tarballs) != 1:
raise EasyBuildError("Expected to find exactly one tarball for Charm++, found: %s", self.charm_tarballs)

extract_file(self.charm_tarballs[0], os.getcwd())
srcdir = extract_file(self.charm_tarballs[0], os.getcwd(), change_into_dir=False)
change_dir(srcdir)

def configure_step(self):
"""Custom configure step for NAMD, we build charm++ first (if required)."""
Expand Down Expand Up @@ -98,7 +99,6 @@ def configure_step(self):
self.namd_arch = '%s-%s' % (self.cfg['namd_basearch'], namd_comp)
self.log.info("Completed NAMD target architecture: %s" % self.namd_arch)


tup = (self.cfg['charm_arch'], self.cfg['charm_opts'], self.cfg['parallel'], os.environ['CXXFLAGS'])
cmd = "./build charm++ %s %s --with-numa -j%s %s -DMPICH_IGNORE_CXX_SEEK" % tup
charm_subdir = '.'.join(os.path.basename(self.charm_tarballs[0]).split('.')[:-1])
Expand Down
16 changes: 9 additions & 7 deletions easybuild/easyblocks/p/python_meep.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

from easybuild.easyblocks.generic.pythonpackage import PythonPackage
from easybuild.tools.build_log import EasyBuildError
from easybuild.tools.filetools import extract_file, remove_dir
from easybuild.tools.filetools import change_dir, extract_file, remove_dir
from easybuild.tools.modules import get_software_root
from easybuild.tools.run import run_cmd

Expand Down Expand Up @@ -99,15 +99,17 @@ def install_step(self):

# unpack tarball to temporary directory
tmpdir = tempfile.mkdtemp()
srcdir = extract_file(tarball, tmpdir)
if not srcdir:
srcdir = extract_file(tarball, tmpdir, change_into_dir=False)
if srcdir:
change_dir(srcdir)
else:
raise EasyBuildError("Unpacking tarball %s failed?", tarball)

# locate site-packages dir to copy by diving into unpacked tarball
src = srcdir
while len(os.listdir(src)) == 1:
src = os.path.join(src, os.listdir(src)[0])
if not os.path.basename(src) =='site-packages':
if not os.path.basename(src) == 'site-packages':
raise EasyBuildError("Expected to find a site-packages path, but found something else: %s", src)

# copy contents of site-packages dir
Expand All @@ -122,9 +124,9 @@ def install_step(self):
def sanity_check_step(self):

custom_paths = {
'files':["site-packages/meep_mpi.py"],
'dirs':[]
}
'files': [os.path.join('site-packages', 'meep_mpi.py')],
'dirs': [],
}

self.options['modulename'] = 'meep_mpi'

Expand Down
8 changes: 4 additions & 4 deletions easybuild/easyblocks/r/rosetta.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,9 @@
import easybuild.tools.toolchain as toolchain
from easybuild.easyblocks.icc import get_icc_version
from easybuild.framework.easyblock import EasyBlock
from easybuild.framework.easyconfig import CUSTOM
from easybuild.tools.build_log import EasyBuildError
from easybuild.tools.filetools import extract_file, mkdir, write_file
from easybuild.tools.modules import get_software_root, get_software_version
from easybuild.tools.filetools import change_dir, extract_file, mkdir, write_file
from easybuild.tools.modules import get_software_version
from easybuild.tools.run import run_cmd
from easybuild.tools.systemtools import get_shared_lib_ext

Expand Down Expand Up @@ -75,7 +74,8 @@ def extract_step(self):
if not os.path.exists(self.srcdir):
src_tarball = os.path.join(prefix, 'rosetta%s_source.tgz' % self.version)
if os.path.isfile(src_tarball):
self.srcdir = extract_file(src_tarball, prefix)
self.srcdir = extract_file(src_tarball, prefix, change_into_dir=False)
change_dir(self.srcdir)
else:
raise EasyBuildError("Neither source directory '%s', nor source tarball '%s' found.",
self.srcdir, src_tarball)
Expand Down
4 changes: 2 additions & 2 deletions easybuild/easyblocks/v/vmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
@author: Kenneth Hoste (HPC-UGent)
"""
import os
import shutil

from distutils.version import LooseVersion
from easybuild.easyblocks.generic.configuremake import ConfigureMake
Expand Down Expand Up @@ -60,7 +59,8 @@ def extract_step(self):

if LooseVersion(self.version) >= LooseVersion("1.9.3"):
change_dir(self.surf_dir)
extract_file('surf.tar.Z', os.getcwd())
srcdir = extract_file('surf.tar.Z', os.getcwd(), change_into_dir=False)
change_dir(srcdir)

def configure_step(self):
"""
Expand Down
9 changes: 6 additions & 3 deletions easybuild/easyblocks/w/wien2k.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@
from easybuild.framework.easyblock import EasyBlock
from easybuild.framework.easyconfig import CUSTOM
from easybuild.tools.build_log import EasyBuildError
from easybuild.tools.filetools import apply_regex_substitutions, extract_file, mkdir, read_file, remove_dir, write_file
from easybuild.tools.filetools import apply_regex_substitutions, change_dir, extract_file, mkdir, read_file
from easybuild.tools.filetools import remove_dir, write_file
from easybuild.tools.modules import get_software_root, get_software_version
from easybuild.tools.run import run_cmd, run_cmd_qa

Expand Down Expand Up @@ -445,15 +446,17 @@ def run_wien2k_test(cmd_arg):

# unpack serial benchmark
serial_test_name = "test_case"
extract_file(testdata_paths['%s.tar.gz' % serial_test_name], tmpdir)
srcdir = extract_file(testdata_paths['%s.tar.gz' % serial_test_name], tmpdir, change_into_dir=False)
change_dir(srcdir)

# run serial benchmark
os.chdir(os.path.join(tmpdir, serial_test_name))
run_wien2k_test("-c")

# unpack parallel benchmark (in serial benchmark dir)
parallel_test_name = "mpi-benchmark"
extract_file(testdata_paths['%s.tar.gz' % parallel_test_name], tmpdir)
srcdir = extract_file(testdata_paths['%s.tar.gz' % parallel_test_name], tmpdir, change_into_dir=False)
change_dir(srcdir)

# run parallel benchmark
os.chdir(os.path.join(tmpdir, serial_test_name))
Expand Down
3 changes: 2 additions & 1 deletion easybuild/easyblocks/w/wps.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,8 @@ def run_wps_cmd(cmdname, mpi_cmd=True):

# unpack data
for path in testdata_paths:
extract_file(path, tmpdir)
srcdir = extract_file(path, tmpdir, change_into_dir=False)
change_dir(srcdir)

namelist_file = os.path.join(tmpdir, 'namelist.wps')

Expand Down