Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
41 changes: 41 additions & 0 deletions easybuild/easyconfigs/c/CMake/CMake-3.10.2-GCCcore-7.2.0.eb
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 easybuild/easyconfigs/d/Doxygen/Doxygen-1.8.14-GCCcore-7.2.0.eb
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')
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.

@rubendibattista One of our most recent Doxygen easyconfigs also has pkg-config as build dep...

It's inconsistent with Doxygen 1.8.13, but can you check on this, and if pkg-config is indeed required include it here too?

Bonus point if you issue a separate PR to make pkg-config a build dep consistently in the Doxygen 1.8.13 easyconfigs... ;)

Copy link
Copy Markdown
Contributor Author

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?

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.

Maybe @JackPerdue can clarify, it seems like he added this (cfr. #4953).

I can't find a reference to the use pkg-config anywhere in the build log for Doxygen...

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.

I'll go ahead and get this merged, and open a PR to remove the pkg-config build dep in the other Doxygen easyconfig, it's wrong imho...

]

moduleclass = 'devel'
46 changes: 46 additions & 0 deletions easybuild/easyconfigs/n/ncurses/ncurses-6.1-GCCcore-7.2.0.eb
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'