-
Notifications
You must be signed in to change notification settings - Fork 705
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10627 from boegel/fix_Mako_2016_2017
fix Mako easyconfigs using a 2016 & 2017 toolchain
- Loading branch information
Showing
9 changed files
with
146 additions
and
59 deletions.
There are no files selected for viewing
26 changes: 19 additions & 7 deletions
26
easybuild/easyconfigs/m/Mako/Mako-1.0.4-foss-2016b-Python-2.7.12.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,35 @@ | ||
easyblock = 'PythonPackage' | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'Mako' | ||
version = '1.0.4' | ||
versionsuffix = '-Python-%(pyver)s' | ||
|
||
homepage = 'http://www.makotemplates.org' | ||
homepage = 'https://www.makotemplates.org' | ||
description = """A super-fast templating language that borrows the best ideas from the existing templating languages""" | ||
|
||
toolchain = {'name': 'foss', 'version': '2016b'} | ||
|
||
source_urls = [PYPI_SOURCE] | ||
sources = [SOURCE_TAR_GZ] | ||
checksums = ['fed99dbe4d0ddb27a33ee4910d8708aca9ef1fe854e668387a9ab9a90cbf9059'] | ||
|
||
dependencies = [('Python', '2.7.12')] | ||
|
||
use_pip = True | ||
|
||
exts_default_options = {'source_urls': [PYPI_SOURCE]} | ||
|
||
exts_list = [ | ||
('MarkupSafe', '1.1.1', { | ||
'checksums': ['29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b'], | ||
}), | ||
(name, version, { | ||
'checksums': ['fed99dbe4d0ddb27a33ee4910d8708aca9ef1fe854e668387a9ab9a90cbf9059'], | ||
}), | ||
] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/mako-render'], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages/%(name)s-%(version)s-py%(pyshortver)s.egg'], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages/'], | ||
} | ||
|
||
# pip 8.1.2 (included with Python 2.7.12) doesn't support 'pip check' yet | ||
sanity_pip_check = False | ||
|
||
moduleclass = 'devel' |
25 changes: 19 additions & 6 deletions
25
easybuild/easyconfigs/m/Mako/Mako-1.0.4-intel-2016b-Python-2.7.12.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,35 @@ | ||
easyblock = 'PythonPackage' | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'Mako' | ||
version = '1.0.4' | ||
versionsuffix = '-Python-%(pyver)s' | ||
|
||
homepage = 'http://www.makotemplates.org' | ||
homepage = 'https://www.makotemplates.org' | ||
description = """A super-fast templating language that borrows the best ideas from the existing templating languages""" | ||
|
||
toolchain = {'name': 'intel', 'version': '2016b'} | ||
|
||
source_urls = [PYPI_SOURCE] | ||
sources = [SOURCE_TAR_GZ] | ||
|
||
dependencies = [('Python', '2.7.12')] | ||
|
||
use_pip = True | ||
|
||
exts_default_options = {'source_urls': [PYPI_SOURCE]} | ||
|
||
exts_list = [ | ||
('MarkupSafe', '1.1.1', { | ||
'checksums': ['29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b'], | ||
}), | ||
(name, version, { | ||
'checksums': ['fed99dbe4d0ddb27a33ee4910d8708aca9ef1fe854e668387a9ab9a90cbf9059'], | ||
}), | ||
] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/mako-render'], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages/%(name)s-%(version)s-py%(pyshortver)s.egg'], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages/'], | ||
} | ||
|
||
# pip 8.1.2 (included with Python 2.7.12) doesn't support 'pip check' yet | ||
sanity_pip_check = False | ||
|
||
moduleclass = 'devel' |
27 changes: 18 additions & 9 deletions
27
easybuild/easyconfigs/m/Mako/Mako-1.0.6-foss-2017a-Python-2.7.13.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,34 @@ | ||
easyblock = 'PythonPackage' | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'Mako' | ||
version = '1.0.6' | ||
versionsuffix = '-Python-%(pyver)s' | ||
|
||
homepage = 'http://www.makotemplates.org' | ||
homepage = 'https://www.makotemplates.org' | ||
description = """A super-fast templating language that borrows the best ideas from the existing templating languages""" | ||
|
||
toolchain = {'name': 'foss', 'version': '2017a'} | ||
|
||
source_urls = [PYPI_SOURCE] | ||
sources = [SOURCE_TAR_GZ] | ||
checksums = [ | ||
'48559ebd872a8e77f92005884b3d88ffae552812cdf17db6768e5c3be5ebbe0d', # Mako-1.0.6.tar.gz | ||
] | ||
|
||
dependencies = [('Python', '2.7.13')] | ||
|
||
use_pip = True | ||
|
||
exts_default_options = {'source_urls': [PYPI_SOURCE]} | ||
|
||
exts_list = [ | ||
('MarkupSafe', '1.1.1', { | ||
'checksums': ['29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b'], | ||
}), | ||
(name, version, { | ||
'checksums': ['48559ebd872a8e77f92005884b3d88ffae552812cdf17db6768e5c3be5ebbe0d'], | ||
}), | ||
] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/mako-render'], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages/%(name)s-%(version)s-py%(pyshortver)s.egg'], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages/'], | ||
} | ||
|
||
sanity_pip_check = True | ||
|
||
moduleclass = 'devel' |
24 changes: 18 additions & 6 deletions
24
easybuild/easyconfigs/m/Mako/Mako-1.0.6-intel-2017a-Python-2.7.13.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,34 @@ | ||
easyblock = 'PythonPackage' | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'Mako' | ||
version = '1.0.6' | ||
versionsuffix = '-Python-%(pyver)s' | ||
|
||
homepage = 'http://www.makotemplates.org' | ||
homepage = 'https://www.makotemplates.org' | ||
description = """A super-fast templating language that borrows the best ideas from the existing templating languages""" | ||
|
||
toolchain = {'name': 'intel', 'version': '2017a'} | ||
|
||
source_urls = [PYPI_SOURCE] | ||
sources = [SOURCE_TAR_GZ] | ||
|
||
dependencies = [('Python', '2.7.13')] | ||
|
||
use_pip = True | ||
|
||
exts_default_options = {'source_urls': [PYPI_SOURCE]} | ||
|
||
exts_list = [ | ||
('MarkupSafe', '1.1.1', { | ||
'checksums': ['29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b'], | ||
}), | ||
(name, version, { | ||
'checksums': ['48559ebd872a8e77f92005884b3d88ffae552812cdf17db6768e5c3be5ebbe0d'], | ||
}), | ||
] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/mako-render'], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages/%(name)s-%(version)s-py%(pyshortver)s.egg'], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages/'], | ||
} | ||
|
||
sanity_pip_check = True | ||
|
||
moduleclass = 'devel' |
25 changes: 18 additions & 7 deletions
25
easybuild/easyconfigs/m/Mako/Mako-1.0.7-foss-2017b-Python-2.7.14.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,34 @@ | ||
easyblock = 'PythonPackage' | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'Mako' | ||
version = '1.0.7' | ||
versionsuffix = '-Python-%(pyver)s' | ||
|
||
homepage = 'http://www.makotemplates.org' | ||
homepage = 'https://www.makotemplates.org' | ||
description = """A super-fast templating language that borrows the best ideas from the existing templating languages""" | ||
|
||
toolchain = {'name': 'foss', 'version': '2017b'} | ||
|
||
source_urls = [PYPI_SOURCE] | ||
sources = [SOURCE_TAR_GZ] | ||
checksums = ['4e02fde57bd4abb5ec400181e4c314f56ac3e49ba4fb8b0d50bba18cb27d25ae'] | ||
|
||
dependencies = [('Python', '2.7.14')] | ||
|
||
use_pip = True | ||
|
||
exts_default_options = {'source_urls': [PYPI_SOURCE]} | ||
|
||
exts_list = [ | ||
('MarkupSafe', '1.1.1', { | ||
'checksums': ['29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b'], | ||
}), | ||
(name, version, { | ||
'checksums': ['4e02fde57bd4abb5ec400181e4c314f56ac3e49ba4fb8b0d50bba18cb27d25ae'], | ||
}), | ||
] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/mako-render'], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages/%(name)s-%(version)s-py%(pyshortver)s.egg'], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages/'], | ||
} | ||
|
||
sanity_pip_check = True | ||
|
||
moduleclass = 'devel' |
24 changes: 16 additions & 8 deletions
24
easybuild/easyconfigs/m/Mako/Mako-1.0.7-fosscuda-2017b-Python-2.7.14.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,34 @@ | ||
easyblock = 'PythonPackage' | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'Mako' | ||
version = '1.0.7' | ||
versionsuffix = '-Python-%(pyver)s' | ||
|
||
homepage = 'http://www.makotemplates.org' | ||
homepage = 'https://www.makotemplates.org' | ||
description = """A super-fast templating language that borrows the best ideas from the existing templating languages""" | ||
|
||
toolchain = {'name': 'fosscuda', 'version': '2017b'} | ||
|
||
source_urls = [PYPI_SOURCE] | ||
sources = [SOURCE_TAR_GZ] | ||
checksums = ['4e02fde57bd4abb5ec400181e4c314f56ac3e49ba4fb8b0d50bba18cb27d25ae'] | ||
|
||
dependencies = [('Python', '2.7.14')] | ||
|
||
use_pip = True | ||
download_dep_fail = True | ||
|
||
exts_default_options = {'source_urls': [PYPI_SOURCE]} | ||
|
||
exts_list = [ | ||
('MarkupSafe', '1.1.1', { | ||
'checksums': ['29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b'], | ||
}), | ||
(name, version, { | ||
'checksums': ['4e02fde57bd4abb5ec400181e4c314f56ac3e49ba4fb8b0d50bba18cb27d25ae'], | ||
}), | ||
] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/mako-render'], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages/%(name)s-%(version)s-py%(pyshortver)s.egg-info'], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages/'], | ||
} | ||
|
||
sanity_pip_check = True | ||
|
||
moduleclass = 'devel' |
25 changes: 18 additions & 7 deletions
25
easybuild/easyconfigs/m/Mako/Mako-1.0.7-intel-2017b-Python-2.7.14.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,34 @@ | ||
easyblock = 'PythonPackage' | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'Mako' | ||
version = '1.0.7' | ||
versionsuffix = '-Python-%(pyver)s' | ||
|
||
homepage = 'http://www.makotemplates.org' | ||
homepage = 'https://www.makotemplates.org' | ||
description = """A super-fast templating language that borrows the best ideas from the existing templating languages""" | ||
|
||
toolchain = {'name': 'intel', 'version': '2017b'} | ||
|
||
source_urls = [PYPI_SOURCE] | ||
sources = [SOURCE_TAR_GZ] | ||
checksums = ['4e02fde57bd4abb5ec400181e4c314f56ac3e49ba4fb8b0d50bba18cb27d25ae'] | ||
|
||
dependencies = [('Python', '2.7.14')] | ||
|
||
use_pip = True | ||
|
||
exts_default_options = {'source_urls': [PYPI_SOURCE]} | ||
|
||
exts_list = [ | ||
('MarkupSafe', '1.1.1', { | ||
'checksums': ['29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b'], | ||
}), | ||
(name, version, { | ||
'checksums': ['4e02fde57bd4abb5ec400181e4c314f56ac3e49ba4fb8b0d50bba18cb27d25ae'], | ||
}), | ||
] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/mako-render'], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages/%(name)s-%(version)s-py%(pyshortver)s.egg'], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages/'], | ||
} | ||
|
||
sanity_pip_check = True | ||
|
||
moduleclass = 'devel' |
24 changes: 16 additions & 8 deletions
24
easybuild/easyconfigs/m/Mako/Mako-1.0.7-intelcuda-2017b-Python-2.7.14.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,34 @@ | ||
easyblock = 'PythonPackage' | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'Mako' | ||
version = '1.0.7' | ||
versionsuffix = '-Python-%(pyver)s' | ||
|
||
homepage = 'http://www.makotemplates.org' | ||
homepage = 'https://www.makotemplates.org' | ||
description = """A super-fast templating language that borrows the best ideas from the existing templating languages""" | ||
|
||
toolchain = {'name': 'intelcuda', 'version': '2017b'} | ||
|
||
source_urls = [PYPI_SOURCE] | ||
sources = [SOURCE_TAR_GZ] | ||
checksums = ['4e02fde57bd4abb5ec400181e4c314f56ac3e49ba4fb8b0d50bba18cb27d25ae'] | ||
|
||
dependencies = [('Python', '2.7.14')] | ||
|
||
use_pip = True | ||
download_dep_fail = True | ||
|
||
exts_default_options = {'source_urls': [PYPI_SOURCE]} | ||
|
||
exts_list = [ | ||
('MarkupSafe', '1.1.1', { | ||
'checksums': ['29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b'], | ||
}), | ||
(name, version, { | ||
'checksums': ['4e02fde57bd4abb5ec400181e4c314f56ac3e49ba4fb8b0d50bba18cb27d25ae'], | ||
}), | ||
] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/mako-render'], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages/%(name)s-%(version)s-py%(pyshortver)s.egg-info'], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages/'], | ||
} | ||
|
||
sanity_pip_check = True | ||
|
||
moduleclass = 'devel' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters