Skip to content
Merged
Changes from 1 commit
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
5 changes: 5 additions & 0 deletions easybuild/framework/easyconfig/templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,11 @@
'SOURCE_%s' % suffix: ('%(name)s-%(version)s.' + ext, "Source .%s bundle" % ext),
'SOURCELOWER_%s' % suffix: ('%(namelower)s-%(version)s.' + ext, "Source .%s bundle with lowercase name" % ext),
})
TEMPLATE_CONSTANTS.update({
'VERSION_%s' % suffix: ('%(version)s.' + ext, "Source filename <version>.%s common at github" % ext),
'VVERSION_%s' % suffix: ('v%(version)s.' + ext, "Source filename v<version>.%s common at github" % ext),
})

for pyver in ('py2.py3', 'py2', 'py3'):
if pyver == 'py2.py3':
desc = 'Python 2 & Python 3'
Expand Down
Loading