-
Notifications
You must be signed in to change notification settings - Fork 781
{devel}[GCCcore-7.2.0] Doxygen v1.8.14 (with dependencies) #5902
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 1 commit into
easybuilders:develop
from
rdbisme:20180223141731_new_pr_Doxygen1814
Mar 16, 2018
Merged
Changes from all commits
Commits
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
41 changes: 41 additions & 0 deletions
41
easybuild/easyconfigs/c/CMake/CMake-3.10.2-GCCcore-7.2.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,41 @@ | ||
| easyblock = 'ConfigureMake' | ||
|
|
||
| name = 'CMake' | ||
| version = '3.10.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': '7.2.0'} | ||
|
|
||
| source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s'] | ||
| sources = [SOURCELOWER_TAR_GZ] | ||
| checksums = ['80d0faad4ab56de07aa21a7fc692c88c4ce6156d42b0579c6962004a70a3218b'] | ||
|
|
||
| builddependencies = [ | ||
| ('binutils', '2.29'), | ||
| ] | ||
|
|
||
| dependencies = [ | ||
| ('ncurses', '6.1'), | ||
| # OS dependency should be preferred if the os version is more recent then this version, | ||
| # it's nice to have an up to date openssl for security reasons | ||
| # ('OpenSSL', '1.1.0g'), | ||
| ] | ||
|
|
||
| osdependencies = [ | ||
| ('openssl-devel', 'libssl-dev', 'libopenssl-devel'), | ||
| ] | ||
|
|
||
| configopts = '-- -DCMAKE_USE_OPENSSL=1 -DCMAKE_PREFIX_PATH=$EBROOTNCURSES' | ||
|
|
||
| sanity_check_paths = { | ||
| 'files': ["bin/%s" % x for x in ['ccmake', 'cmake', 'cpack', 'ctest']], | ||
| 'dirs': [], | ||
| } | ||
|
|
||
| moduleclass = 'devel' |
20 changes: 20 additions & 0 deletions
20
easybuild/easyconfigs/d/Doxygen/Doxygen-1.8.14-GCCcore-7.2.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,20 @@ | ||
| name = 'Doxygen' | ||
| version = '1.8.14' | ||
|
|
||
| homepage = 'http://www.doxygen.org' | ||
| description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python, | ||
| IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D.""" | ||
|
|
||
| toolchain = {'name': 'GCCcore', 'version': '7.2.0'} | ||
|
|
||
| sources = ['%(namelower)s-%(version)s.src.tar.gz'] | ||
| source_urls = ['http://ftp.stack.nl/pub/users/dimitri/'] | ||
|
|
||
| builddependencies = [ | ||
| ('binutils', '2.29'), | ||
| ('flex', '2.6.4'), | ||
| ('Bison', '3.0.4'), | ||
| ('CMake', '3.10.2') | ||
| ] | ||
|
|
||
| moduleclass = 'devel' | ||
46 changes: 46 additions & 0 deletions
46
easybuild/easyconfigs/n/ncurses/ncurses-6.1-GCCcore-7.2.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,46 @@ | ||
| easyblock = 'ConfigureMake' | ||
|
|
||
| name = 'ncurses' | ||
| version = '6.1' | ||
|
|
||
| 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': '7.2.0'} | ||
| toolchainopts = {'pic': True} | ||
|
|
||
| source_urls = [GNU_SOURCE] | ||
| sources = [SOURCE_TAR_GZ] | ||
| checksums = ['aa057eeeb4a14d470101eff4597d5833dcef5965331be3528c08d99cebaa0d17'] | ||
|
|
||
| builddependencies = [ | ||
| ('binutils', '2.29'), | ||
| ] | ||
|
|
||
| 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.
@rubendibattista One of our most recent
Doxygeneasyconfigs also haspkg-configas build dep...It's inconsistent with Doxygen 1.8.13, but can you check on this, and if
pkg-configis indeed required include it here too?Bonus point if you issue a separate PR to make
pkg-configa build dep consistently in the Doxygen 1.8.13 easyconfigs... ;)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.
From Doxygen manual, pkg-config is not listed in the requirements: https://www.stack.nl/~dimitri/doxygen/manual/install.html
Am I misreading something?
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.
Maybe @JackPerdue can clarify, it seems like he added this (cfr. #4953).
I can't find a reference to the use
pkg-configanywhere in the build log forDoxygen...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.
I'll go ahead and get this merged, and open a PR to remove the
pkg-configbuild dep in the otherDoxygeneasyconfig, it's wrong imho...