-
Notifications
You must be signed in to change notification settings - Fork 781
{devel}[GCCcore/6.4.0] Qt5 5.10.1 + deps #6335
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
easybuild/easyconfigs/l/libGLU/libGLU-9.0.0-GCCcore-6.4.0.eb
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| easyblock = 'ConfigureMake' | ||
|
|
||
| name = 'libGLU' | ||
| version = '9.0.0' | ||
|
|
||
| homepage = 'ftp://ftp.freedesktop.org/pub/mesa/glu/' | ||
| description = """The OpenGL Utility Library (GLU) is a computer graphics library for OpenGL. """ | ||
|
|
||
| toolchain = {'name': 'GCCcore', 'version': '6.4.0'} | ||
| toolchainopts = {'pic': True} | ||
|
|
||
| source_urls = ['ftp://ftp.freedesktop.org/pub/mesa/glu/'] | ||
| sources = ['glu-%(version)s.tar.bz2'] | ||
| checksums = ['1f7ad0d379a722fcbd303aa5650c6d7d5544fde83196b42a73d1193568a4df12'] | ||
|
|
||
| dependencies = [ | ||
| ('Mesa', '17.3.6'), | ||
| ] | ||
|
|
||
| builddependencies = [ | ||
| # use same binutils version that was used when building GCCcore | ||
| ('binutils', '2.28'), | ||
| ] | ||
|
|
||
| sanity_check_paths = { | ||
| 'files': ['lib/libGLU.%s' % SHLIB_EXT], | ||
| 'dirs': [], | ||
| } | ||
|
|
||
| moduleclass = 'vis' |
33 changes: 33 additions & 0 deletions
33
easybuild/easyconfigs/m/Mako/Mako-1.0.7-GCCcore-6.4.0-Python-2.7.14-bare.eb
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| easyblock = 'PythonPackage' | ||
|
|
||
| name = 'Mako' | ||
| version = '1.0.7' | ||
| versionsuffix = '-Python-%(pyver)s-bare' | ||
|
|
||
| homepage = 'http://www.makotemplates.org' | ||
| description = """A super-fast templating language that borrows the best ideas from the existing templating languages""" | ||
|
|
||
| toolchain = {'name': 'GCCcore', 'version': '6.4.0'} | ||
|
|
||
| source_urls = [PYPI_SOURCE] | ||
| sources = [SOURCE_TAR_GZ] | ||
| checksums = [ | ||
| '4e02fde57bd4abb5ec400181e4c314f56ac3e49ba4fb8b0d50bba18cb27d25ae', # Mako-1.0.7.tar.gz | ||
| ] | ||
|
|
||
| builddependencies = [ | ||
| # use same binutils version that was used when building GCCcore | ||
| ('binutils', '2.28'), | ||
| ] | ||
|
|
||
| dependencies = [ | ||
| ('Python', '2.7.14', '-bare'), | ||
| ('setuptools', '39.1.0', '-Python-2.7.14-bare'), | ||
| ] | ||
|
|
||
| sanity_check_paths = { | ||
| 'files': ['bin/mako-render'], | ||
| 'dirs': ['lib/python%(pyshortver)s/site-packages/%(name)s-%(version)s-py%(pyshortver)s.egg'], | ||
| } | ||
|
|
||
| moduleclass = 'devel' | ||
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,75 @@ | ||
| # Automatically converted from Mesa-17.2.4-intel-2017b.eb | ||
| # Original message: | ||
| # the purpose of the easyconfig is to build a Mesa for software rendering, | ||
| # not hardware rendering. This means you want at least SSE4.2. We build: | ||
| # - llvmpipe: the high-performance Gallium LLVM driver | ||
| # - swr: Intel's OpenSWR | ||
| # it will try to use the llvmpipe by default. It you want swr, do: | ||
| # GALLIUM_DRIVER=swr | ||
|
|
||
| easyblock = 'ConfigureMake' | ||
|
|
||
| name = 'Mesa' | ||
| version = '17.3.6' | ||
|
|
||
| homepage = 'http://www.mesa3d.org/' | ||
| description = """Mesa is an open-source implementation of the OpenGL specification - | ||
| a system for rendering interactive 3D graphics.""" | ||
|
|
||
| toolchain = {'name': 'GCCcore', 'version': '6.4.0'} | ||
| # swr detects and builds parts specific for AVX and AVX2. If we use | ||
| # -march, this always gets overwritten and will fail. Likewise, the | ||
| # default -ftree-vectorize has led to 'Illegal instruction' errors. | ||
| toolchainopts = {'optarch': False, 'vectorize': False} | ||
|
|
||
| source_urls = [ | ||
| 'https://mesa.freedesktop.org/archive/', | ||
| 'https://mesa.freedesktop.org/archive/%(version)s', | ||
| 'ftp://ftp.freedesktop.org/pub/mesa/%(version)s', | ||
| 'ftp://ftp.freedesktop.org/pub/mesa/older-versions/%(version_major)s.x/%(version)s', | ||
| ] | ||
| sources = [SOURCELOWER_TAR_XZ] | ||
| patches = ['Mesa-%(version)s_fix-strip-llvm-flags.patch'] | ||
| checksums = [ | ||
| 'e5915680d44ac9d05defdec529db7459ac9edd441c9845266eff2e2d3e57fbf8', # mesa-17.3.6.tar.xz | ||
| '5aa4e92ed96e3d47ffbecd1ec3a1642407dff11995c5585eb5e06c396654ee30', # Mesa-17.3.6_fix-strip-llvm-flags.patch | ||
| ] | ||
|
|
||
| builddependencies = [ | ||
| # use same binutils version that was used when building GCCcore | ||
| ('binutils', '2.28'), | ||
| ('flex', '2.6.4'), | ||
| ('Bison', '3.0.4'), | ||
| ('Autotools', '20170619'), | ||
| ('pkg-config', '0.29.2'), | ||
| ('Mako', '1.0.7', '-Python-2.7.14-bare'), | ||
| ('libxml2', '2.9.7'), | ||
| ] | ||
|
|
||
| dependencies = [ | ||
| ('zlib', '1.2.11'), | ||
| ('nettle', '3.4'), | ||
| ('libdrm', '2.4.91'), | ||
| ('LLVM', '5.0.1'), | ||
| ('X11', '20180131'), | ||
| ] | ||
|
|
||
| # GLU is not part anymore of Mesa package! | ||
| configopts = " --disable-osmesa --enable-gallium-osmesa --enable-gallium-llvm --enable-glx --disable-dri" | ||
| configopts += " --disable-gbm --disable-driglx-direct --with-gallium-drivers='swrast,swr' --disable-egl" | ||
| configopts += " --with-osmesa-bits=32 --enable-texture-float --enable-llvm-shared-libs " | ||
|
|
||
| buildopts = 'V=1' | ||
|
|
||
| sanity_check_paths = { | ||
| 'files': ['lib/libGL.%s' % SHLIB_EXT, 'lib/libOSMesa.%s' % SHLIB_EXT, | ||
| 'lib/libGLESv1_CM.%s' % SHLIB_EXT, 'lib/libGLESv2.%s' % SHLIB_EXT, | ||
| 'include/GL/glext.h', 'include/GL/gl_mangle.h', | ||
| 'include/GL/glx.h', 'include/GL/osmesa.h', | ||
| 'include/GL/gl.h', 'include/GL/glxext.h', | ||
| 'include/GL/glx_mangle.h', 'include/GLES/gl.h', | ||
| 'include/GLES2/gl2.h', 'include/GLES3/gl3.h'], | ||
| 'dirs': [] | ||
| } | ||
|
|
||
| moduleclass = 'vis' |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| easyblock = 'EB_Qt' | ||
|
|
||
| name = 'Qt5' | ||
| version = '5.10.1' | ||
|
|
||
| homepage = 'http://qt.io/' | ||
| description = "Qt is a comprehensive cross-platform C++ application framework." | ||
|
|
||
| toolchain = {'name': 'GCCcore', 'version': '6.4.0'} | ||
|
|
||
| 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 = ['05ffba7b811b854ed558abf2be2ddbd3bb6ddd0b60ea4b5da75d277ac15e740a'] | ||
|
|
||
| dependencies = [ | ||
| ('GLib', '2.54.3'), | ||
| ('libpng', '1.6.34'), | ||
| ('X11', '20180131'), | ||
| ('libGLU', '9.0.0'), | ||
| ] | ||
|
|
||
| builddependencies = [ | ||
| # use same binutils version that was used when building GCCcore | ||
| ('binutils', '2.28'), | ||
| ('pkg-config', '0.29.2'), | ||
| ] | ||
|
|
||
| # qtgamepad needs recent kernel/libevdev (fails on RHEL 6.x) | ||
| configopts = '-skip qtgamepad' | ||
|
|
||
| moduleclass = 'devel' |
33 changes: 33 additions & 0 deletions
33
easybuild/easyconfigs/s/setuptools/setuptools-39.1.0-GCCcore-6.4.0-Python-2.7.14-bare.eb
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| easyblock = 'PythonPackage' | ||
|
|
||
| name = 'setuptools' | ||
| version = '39.1.0' | ||
| versionsuffix = '-Python-%(pyver)s-bare' | ||
|
|
||
| homepage = 'http://pypi.python.org/pypi/setuptools/' | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @geimer this should be reverted to |
||
| description = """Download, build, install, upgrade, and uninstall Python packages -- easily!""" | ||
|
|
||
| toolchain = {'name': 'GCCcore', 'version': '6.4.0'} | ||
|
|
||
| source_urls = [PYPI_SOURCE] | ||
| sources = [SOURCE_ZIP] | ||
| checksums = [ | ||
| 'c5484e13b89927b44fd15897f7ce19dded8e7f035466a4fa7b946c0bdd86edd7', # setuptools-39.1.0.zip | ||
| ] | ||
|
|
||
| builddependencies = [ | ||
| # use same binutils version that was used when building GCCcore | ||
| ('binutils', '2.28'), | ||
| ] | ||
|
|
||
| dependencies = [ | ||
| ('Python', '2.7.14', '-bare'), | ||
| ] | ||
|
|
||
| sanity_check_paths = { | ||
| 'files': ['bin/easy_install', | ||
| 'lib/python%(pyshortver)s/site-packages/%(name)s-%(version)s-py%(pyshortver)s.egg'], | ||
| 'dirs': [], | ||
| } | ||
|
|
||
| moduleclass = 'devel' | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Before merging this, I'd like to settle the discussion on #5072