-
Notifications
You must be signed in to change notification settings - Fork 789
{devel}[GCCcore/6.4.0] CMake v3.8.2 #4884
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
Merged
boegel
merged 2 commits into
easybuilders:develop
from
JackPerdue:20170712232453_new_pr_CMake382
Jul 13, 2017
Merged
Changes from 1 commit
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
38 changes: 38 additions & 0 deletions
38
easybuild/easyconfigs/c/CMake/CMake-3.8.2-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,38 @@ | ||
| easyblock = 'ConfigureMake' | ||
|
|
||
| name = 'CMake' | ||
| version = '3.8.2' | ||
|
|
||
| homepage = 'http://www.cmake.org' | ||
|
|
||
| description = """ | ||
| CMake, the cross-platform, open-source build system. CMake is a family of | ||
| tools designed to build, test and package software. | ||
| """ | ||
|
|
||
| toolchain = {'name': 'GCCcore', 'version': '6.4.0'} | ||
|
|
||
| source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s'] | ||
| sources = [SOURCELOWER_TAR_GZ] | ||
| checksums = ['da3072794eb4c09f2d782fcee043847b99bb4cf8d4573978d9b2024214d6e92d'] | ||
|
|
||
| configopts = '-- -DCMAKE_USE_OPENSSL=1 -DCMAKE_PREFIX_PATH=$EBROOTNCURSES' | ||
|
|
||
| builddependencies = [ | ||
| ('binutils', '2.28'), | ||
| ] | ||
|
|
||
| dependencies = [ | ||
| ('ncurses', '6.0'), | ||
| ] | ||
|
|
||
| osdependencies = [ | ||
| ('openssl-devel', 'libssl-dev', 'libopenssl-devel'), | ||
| ] | ||
|
|
||
| sanity_check_paths = { | ||
| 'files': ["bin/%s" % x for x in ['ccmake', 'cmake', 'cpack', 'ctest']], | ||
| 'dirs': [], | ||
| } | ||
|
|
||
| moduleclass = 'devel' | ||
48 changes: 48 additions & 0 deletions
48
easybuild/easyconfigs/n/ncurses/ncurses-6.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,48 @@ | ||
| easyblock = 'ConfigureMake' | ||
|
|
||
| name = 'ncurses' | ||
| version = '6.0' | ||
|
|
||
| homepage = 'http://www.gnu.org/software/ncurses/' | ||
|
|
||
| description = """ | ||
| The Ncurses (new curses) library is a free software emulation of curses in | ||
| System V Release 4.0, and more. It uses Terminfo format, supports pads and | ||
| color and multiple highlights and forms characters and function-key mapping, | ||
| and has all the other SYSV-curses enhancements over BSD Curses. | ||
| """ | ||
|
|
||
| toolchain = {'name': 'GCCcore', 'version': '6.4.0'} | ||
| toolchainopts = {'pic': True} | ||
|
|
||
| source_urls = [GNU_SOURCE] | ||
| sources = [SOURCE_TAR_GZ] | ||
| checksums = ['f551c24b30ce8bfb6e96d9f59b42fbea30fa3a6123384172f9e7284bcf647260'] | ||
|
|
||
| patches = ['ncurses-%(version)s_gcc-5.patch'] | ||
|
|
||
| builddependencies = [ | ||
| ('binutils', '2.28'), | ||
| ] | ||
|
|
||
| configopts = [ | ||
| # default build | ||
| '--with-shared --enable-overwrite', | ||
| # the UTF-8 enabled version (ncursesw) | ||
| '--with-shared --enable-overwrite --enable-ext-colors --enable-widec --includedir=%(installdir)s/include/ncursesw/' | ||
| ] | ||
|
|
||
| libs = ["form", "menu", "ncurses", "panel"] | ||
| sanity_check_paths = { | ||
| 'files': ['bin/%s' % x for x in ["captoinfo", "clear", "infocmp", | ||
| "infotocap", | ||
| "ncurses%(version_major)s-config", | ||
| "reset", "tabs", "tic", "toe", "tput", | ||
| "tset"]] + | ||
| ['lib/lib%s%s.a' % (x, y) for x in libs for y in ['', '_g', 'w', 'w_g']] + | ||
| ['lib/lib%s%s.%s' % (x, y, SHLIB_EXT) for x in libs for y in ['', 'w']] + | ||
| ['lib/libncurses++%s.a' % x for x in ['', 'w']], | ||
| 'dirs': ['include', 'include/ncursesw'], | ||
| } | ||
|
|
||
| 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.
@JackPerdue Why did you drop the commented out dependency on
OpenSSLhere?I think it makes sense to retain that, for people who prefer providing OpenSSL through EasyBuild?