Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions easybuild/easyconfigs/q/Qt5/Qt5-5.10.1-foss-2018b.eb
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ dependencies = [
('libGLU', '9.0.0'),
('NSS', '3.39'),
('DBus', '1.13.6'),
('gperf', '3.1'),

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jhein32 We should apply this same fix in the other easyconfigs for Qt5 5.10.1?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I only had the issue in foss/2018b. I could build intel/2018a and foss/2018a without issues. Most likely I have an older version that doesn't force a webengine. gperf is only needed when the webengine is build - as noted in Slack, I had that failing and found a clear comment in the log: No gperf, no webengine.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, since you asked so nicely ;) I put a revised Qt 5.10.1 for foss/2018a.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I leave the intel/2018a config to be fixed once the webengine issues with intel have been fixed.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jhein32 I added gperf as a dep in #7010

]

# qtgamepad needs recent kernel/libevdev (fails on RHEL 6.x)
Expand Down
36 changes: 36 additions & 0 deletions easybuild/easyconfigs/q/Qt5/Qt5-5.11.2-foss-2018b.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
easyblock = 'EB_Qt'

name = 'Qt5'
version = '5.11.2'

homepage = 'http://qt.io/'
description = "Qt is a comprehensive cross-platform C++ application framework."

toolchain = {'name': 'foss', 'version': '2018b'}

source_urls = [
'http://download.qt.io/official_releases/qt/%(version_major_minor)s/%(version)s/single/',
'http://download.qt.io/archive/qt/%(version_major_minor)s/%(version)s/single/'
]
sources = ['qt-everywhere-src-%(version)s.tar.xz']
checksums = ['c6104b840b6caee596fa9a35bc5f57f67ed5a99d6a36497b6fe66f990a53ca81']

builddependencies = [('pkg-config', '0.29.2')]

dependencies = [
('GLib', '2.54.3'),
('libpng', '1.6.34'),
('X11', '20180604'),
('libGLU', '9.0.0'),
('NSS', '3.39'),
('DBus', '1.13.6'),
('gperf', '3.1'),
]

# qtgamepad needs recent kernel/libevdev (fails on RHEL 6.x)
configopts = '-skip qtgamepad'

# make sure QtWebEngine component is being built & installed
check_qtwebengine = True

moduleclass = 'devel'