diff --git a/c/CASMcode/CASMcode-0.2.1-intel-2017a-Python-2.7.13.eb b/c/CASMcode/CASMcode-0.2.1-intel-2017a-Python-2.7.13.eb index 0d011925..32345389 100644 --- a/c/CASMcode/CASMcode-0.2.1-intel-2017a-Python-2.7.13.eb +++ b/c/CASMcode/CASMcode-0.2.1-intel-2017a-Python-2.7.13.eb @@ -25,7 +25,8 @@ patches = ['CASMcode.patch'] dependencies = [ ('Boost', '1.63.0', '-Python-2.7.13'), ('Python', '2.7.13', '', True), - ('SCons','3.0.0', '-Python-2.7.13'), +# ('SCons','3.0.0', '-Python-2.7.13'), # BUG + ('SCons','2.5.1', '-Python-2.7.13') ] configopts = '--with-boost=$EBROOTBOOST' diff --git a/s/SCons/SCons-2.5.1-intel-2017a-Python-2.7.13.eb b/s/SCons/SCons-2.5.1-intel-2017a-Python-2.7.13.eb new file mode 100644 index 00000000..6b320f7e --- /dev/null +++ b/s/SCons/SCons-2.5.1-intel-2017a-Python-2.7.13.eb @@ -0,0 +1,26 @@ +easyblock = 'PythonPackage' + +name = 'SCons' +version = '2.5.1' + +homepage = 'http://www.scons.org/' +description = "SCons is a software construction tool." + +toolchain = {'name': 'intel', 'version': '2017a'} + +sources = [SOURCELOWER_TAR_GZ] +source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s'] + +python = 'Python' +pyver = '2.7.13' +versionsuffix = '-%s-%s' % (python, pyver) +dependencies = [(python, pyver, '', True)] + +sanity_check_paths = { + 'files': ['bin/scons', 'bin/scons-time', 'bin/sconsign'], + 'dirs': ['lib/%(namelower)s-%(version)s/%(name)s'], +} + +options = {'modulename': False} + +moduleclass = 'devel'