From 7dc5a6a452dbc6421083a23a9aca9b1fcdcdc6ea Mon Sep 17 00:00:00 2001 From: Easy Build Date: Fri, 23 Feb 2018 11:05:00 +0100 Subject: [PATCH] modified: p/PyQt/PyQt-4.12-Py-3.6.eb new file: p/PyQt5/PyQt5-5.10-Py-3.6.eb modified: v/VTune/VTune-2016_update1.eb modified: v/VTune/VTune-2017_update5.eb modified: v/VTune/VTune-2018_update1.eb deleted: v/VTune/VTune-2017_update2.eb deleted: v/VTune/VTune-2017_update4.eb deleted: v/VTune/VTune-2018.eb --- p/PyQt/PyQt-4.12-Py-3.6.eb | 2 +- p/PyQt5/PyQt5-5.10-Py-3.6.eb | 34 ++++++++++++++++++++++++++++++++++ v/VTune/VTune-2016_update1.eb | 3 +++ v/VTune/VTune-2017_update2.eb | 31 ------------------------------- v/VTune/VTune-2017_update4.eb | 28 ---------------------------- v/VTune/VTune-2017_update5.eb | 3 +++ v/VTune/VTune-2018.eb | 28 ---------------------------- v/VTune/VTune-2018_update1.eb | 3 +++ 8 files changed, 44 insertions(+), 88 deletions(-) create mode 100644 p/PyQt5/PyQt5-5.10-Py-3.6.eb delete mode 100644 v/VTune/VTune-2017_update2.eb delete mode 100644 v/VTune/VTune-2017_update4.eb delete mode 100644 v/VTune/VTune-2018.eb diff --git a/p/PyQt/PyQt-4.12-Py-3.6.eb b/p/PyQt/PyQt-4.12-Py-3.6.eb index 3e1d6175..26e8afb4 100644 --- a/p/PyQt/PyQt-4.12-Py-3.6.eb +++ b/p/PyQt/PyQt-4.12-Py-3.6.eb @@ -36,4 +36,4 @@ sanity_check_paths = { 'dirs': ['lib/python36/site-packages/%(name)s%(version_major)s'], } -moduleclass = 'vis' +moduleclass = 'python' diff --git a/p/PyQt5/PyQt5-5.10-Py-3.6.eb b/p/PyQt5/PyQt5-5.10-Py-3.6.eb new file mode 100644 index 00000000..3344064d --- /dev/null +++ b/p/PyQt5/PyQt5-5.10-Py-3.6.eb @@ -0,0 +1,34 @@ +# IT4Innovations 2018 + +easyblock = 'ConfigureMakePythonPackage' + +name = 'PyQt5' +version = '5.10' + +homepage = 'http://www.riverbankcomputing.co.uk/software/pyqt' +description = 'PyQt5 is a set of Python bindings for v5 of the Qt application framework from The Qt Company.' + +toolchain = {'name': 'Py', 'version': '3.6'} + +source_urls = ['http://sourceforge.net/projects/pyqt/files/PyQt5/PyQt-%(version)s'] +sources = ['%(name)s_gpl-%(version)s.tar.gz'] + +dependencies = [ + ('SIP', '4.19.6'), + ('Qt5', '5.8.0', '', ('GCC', '6.3.0-2.27')), +] + +configopts = "configure.py --confirm-license" +configopts += " --destdir=%(installdir)s/lib/python3.6/site-packages " +configopts += " --sipdir=%(installdir)s/share/sip/PyQt%(version_major)s" + +options = {'modulename': '%(name)s'} + +modextrapaths = {'PYTHONPATH': 'lib/python3.6/site-packages'} + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python3.6/site-packages/%(name)s'], +} + +moduleclass = 'python' diff --git a/v/VTune/VTune-2016_update1.eb b/v/VTune/VTune-2016_update1.eb index 722826d2..6b2a3ab4 100644 --- a/v/VTune/VTune-2016_update1.eb +++ b/v/VTune/VTune-2016_update1.eb @@ -23,6 +23,9 @@ postinstallcmds = [ 'mkdir %(installdir)s/modules', 'cd %(installdir)s/vtune_amplifier_xe/sepdk/src/ && ' './build-driver --install-dir=%(installdir)s/modules --non-interactive', + 'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/pax/insmod-pax -i', + 'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/vtsspp/insmod-vtsspp -i', + 'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/insmod-sep -i', ] moduleclass = 'tools' diff --git a/v/VTune/VTune-2017_update2.eb b/v/VTune/VTune-2017_update2.eb deleted file mode 100644 index 5fa30f35..00000000 --- a/v/VTune/VTune-2017_update2.eb +++ /dev/null @@ -1,31 +0,0 @@ -name = 'VTune' -version = '2017_update2' - -homepage = 'http://software.intel.com/en-us/intel-vtune-amplifier-xe' -description = """Intel VTune Amplifier XE is the premier performance profiler for C, C++, C#, Fortran, - Assembly and Java.""" - -checksums = ['1ef91898e107a1da015305def80091e4'] - -toolchain = {'name': 'dummy', 'version': ''} - -sources = ['vtune_amplifier_xe_%(version)s.tar.gz'] - -dontcreateinstalldir = 'True' - -# license file -license_file = '/apps/licenses/intel/license.lic' - -sanity_check_paths = { - 'files': [], - 'dirs': ['modules'], -} - -# Do necessary post-install steps to build VTune kernel modules -postinstallcmds = [ - 'mkdir %(installdir)s/modules', - 'cd %(installdir)s/vtune_amplifier_xe/sepdk/src/ && ' - './build-driver --install-dir=%(installdir)s/modules --non-interactive', -] - -moduleclass = 'tools' diff --git a/v/VTune/VTune-2017_update4.eb b/v/VTune/VTune-2017_update4.eb deleted file mode 100644 index 97a6a6ba..00000000 --- a/v/VTune/VTune-2017_update4.eb +++ /dev/null @@ -1,28 +0,0 @@ -name = 'VTune' -version = '2017_update4' - -homepage = 'http://software.intel.com/en-us/intel-vtune-amplifier-xe' -description = "Intel VTune Amplifier XE 2016 is the premier performance profiler for C, C++, C#, Fortran, Assembly and Java." - -toolchain = {'name': 'dummy', 'version': ''} - -sources = ['vtune_amplifier_xe_%(version)s.tar.gz'] - -dontcreateinstalldir = 'True' - -# license file -license_file = '/apps/licenses/intel/license.lic' - -sanity_check_paths = { - 'files': [], - 'dirs': ['vtune_amplifier_xe_2017.4.0.518798', 'modules'], -} - -# Do necessary post-install steps to build VTune kernel modules -postinstallcmds = [ - 'mkdir %(installdir)s/modules', - 'cd %(installdir)s/vtune_amplifier_xe/sepdk/src/ && ' - './build-driver --install-dir=%(installdir)s/modules --non-interactive', -] - -moduleclass = 'tools' diff --git a/v/VTune/VTune-2017_update5.eb b/v/VTune/VTune-2017_update5.eb index 0411c53c..8792e06f 100644 --- a/v/VTune/VTune-2017_update5.eb +++ b/v/VTune/VTune-2017_update5.eb @@ -23,6 +23,9 @@ postinstallcmds = [ 'mkdir %(installdir)s/modules', 'cd %(installdir)s/vtune_amplifier_xe/sepdk/src/ && ' './build-driver --install-dir=%(installdir)s/modules --non-interactive', + 'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/pax/insmod-pax -i', + 'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/vtsspp/insmod-vtsspp -i', + 'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/insmod-sep -i', ] moduleclass = 'tools' diff --git a/v/VTune/VTune-2018.eb b/v/VTune/VTune-2018.eb deleted file mode 100644 index 924d6792..00000000 --- a/v/VTune/VTune-2018.eb +++ /dev/null @@ -1,28 +0,0 @@ -name = 'VTune' -version = '2018' - -homepage = 'http://software.intel.com/en-us/intel-vtune-amplifier-xe' -description = "Intel VTune Amplifier XE 2016 is the premier performance profiler for C, C++, C#, Fortran, Assembly and Java." - -toolchain = {'name': 'dummy', 'version': ''} - -sources = ['vtune_amplifier_%(version)s.tar.gz'] - -dontcreateinstalldir = 'True' - -# license file -license_file = '/apps/licenses/intel/license.lic' - -sanity_check_paths = { - 'files': [], - 'dirs': ['vtune_amplifier_2018.0.2.525261', 'modules'], -} - -# Do necessary post-install steps to build VTune kernel modules -postinstallcmds = [ - 'mkdir %(installdir)s/modules', - 'cd %(installdir)s/vtune_amplifier/sepdk/src/ && ' - './build-driver --install-dir=%(installdir)s/modules --non-interactive', -] - -moduleclass = 'tools' diff --git a/v/VTune/VTune-2018_update1.eb b/v/VTune/VTune-2018_update1.eb index b33309d9..c564d67e 100644 --- a/v/VTune/VTune-2018_update1.eb +++ b/v/VTune/VTune-2018_update1.eb @@ -23,6 +23,9 @@ postinstallcmds = [ 'mkdir %(installdir)s/modules', 'cd %(installdir)s/vtune_amplifier/sepdk/src/ && ' './build-driver --install-dir=%(installdir)s/modules --non-interactive', + 'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/pax/insmod-pax -i', + 'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/vtsspp/insmod-vtsspp -i', + 'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/insmod-sep -i', ] moduleclass = 'tools'