Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion easybuild/framework/easyblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -717,9 +717,13 @@ def collect_exts_file_info(self, fetch_files=True, verify_checksums=True):

# if no sources are specified via 'sources', fall back to 'source_tmpl'
src_fn = ext_options.get('source_tmpl')
is_pypi_source = False
if src_fn is None:
# use default template for name of source file if none is specified
src_fn = '%(name)s-%(version)s.tar.gz'
if len(source_urls) == 1 and PYPI_PKG_URL_PATTERN in source_urls[0]:
# allow retrying with alternative download_filename
is_pypi_source = True
elif not isinstance(src_fn, str):
error_msg = "source_tmpl value must be a string! (found value of type '%s'): %s"
raise EasyBuildError(error_msg, type(src_fn).__name__, src_fn)
Expand All @@ -729,7 +733,17 @@ def collect_exts_file_info(self, fetch_files=True, verify_checksums=True):
if fetch_files:
src_path = self.obtain_file(src_fn, extension=True, urls=source_urls,
force_download=force_download,
download_instructions=download_instructions)
download_instructions=download_instructions,
warning_only=is_pypi_source)
if not src_path and is_pypi_source:
# retry with alternative download_filename
alt_name = resolve_template('%(name)s', template_values).replace("-", "_")
src_version = resolve_template('%(version)s', template_values)
alt_download_fn = f'{alt_name}-{src_version}.tar.gz'
src_path = self.obtain_file(src_fn, extension=True, urls=source_urls,
force_download=force_download,
download_instructions=download_instructions,
download_filename=alt_download_fn)
if src_path:
ext_src.update({'src': src_path})
else:
Expand Down