easyconfigs-it4i/o/OpenSSL/OpenSSL-1.1.eb
easybuild 9e65728e88 new file: a/Automake/Automake-1.16.4.eb
new file:   b/BEEF/BEEF-0.1.1-intel-2020b.eb
	deleted:    b/Bison/Bison-3.0.4.eb
	new file:   b/BoltzTraP2/BoltzTraP2-20.7.1-intel-2020b-Python-3.8.6.eb
	new file:   c/CUDAcore/CUDAcore-11.6.0.eb
	new file:   f/Forge/Forge-21.1.3.eb
	deleted:    f/flex/flex-2.6.4.eb
	modified:   g/GROMACS/GROMACS-2020.4-fosscuda-2020b-PLUMED-2.7.0-patch.eb
	deleted:    m/M4/M4-1.4.17.eb
	deleted:    m/M4/M4-1.4.18.eb
	new file:   n/NVHPC/NVHPC-22.2.eb
	new file:   o/Octave/Octave-6.4.0-intel-2020b-without-X11.eb
	new file:   o/OpenMPI/OpenMPI-4.0.6-NVHPC-22.2-CUDA-11.6.0.eb
	new file:   o/OpenMPI/OpenMPI-4.1.2-NVHPC-22.2-CUDA-11.6.0-v2.eb
	new file:   o/OpenMPI/OpenMPI-4.1.2-NVHPC-22.2-CUDA-11.6.0.eb
	new file:   o/OpenSSL/OpenSSL-1.1.eb
	new file:   p/Python/Python-3.9.6-GCCcore-11.2.0-NetKet.eb
	modified:   p/protobuf/protobuf-2.5.0.eb
	new file:   s/Singularity/Singularity-3.8.6.eb
	new file:   u/UCX/UCX-1.11.2-GCC-10.2.0-CUDA-11.6.0.eb
	new file:   u/UCX/UCX-1.11.2-NVHPC-22.2-CUDA-11.6.0.eb
	new file:   v/VTK/VTK-9.1.0-intel-2020b-Python-3.8.6.eb
	deleted:    z/zlib/zlib-1.2.11.eb
2022-03-04 13:15:08 +01:00

45 lines
1.6 KiB
Plaintext

# IT4Innovations
# LK 2022
easyblock = 'EB_OpenSSL_wrapper'
name = 'OpenSSL'
version = '1.1'
minimum_openssl_version = '1.1.1'
homepage = 'https://www.openssl.org/'
description = """The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured,
and Open Source toolchain implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1)
protocols as well as a full-strength general purpose cryptography library. """
toolchain = SYSTEM
toolchainopts = {'pic': True}
osdependencies = ['perl']
wrap_system_openssl = False
builddependencies = [('pkg-config', '0.29.2')]
# This easyconfig will wrap the OpenSSL installation in the host system.
# If the system provides the required binary, header files, and libraries for
# this version of OpenSSL, the installation directory of this module will be
# populated with symlinks to the system files. The minimum required version of
# OpenSSL can be finely controled with 'minimum_openssl_version' (defaults to
# easyconfig version).
# If the host system does not have this version of OpenSSL (or with the option
# wrap_system_openssl = False), EasyBuild will fall back to the following
# component list, which will be build and installed as usual.
components = [
(name, '1.1.1k', {
'easyblock': 'EB_OpenSSL',
'source_urls': ['https://www.openssl.org/source/'],
'sources': [SOURCELOWER_TAR_GZ],
'checksums': ['892a0875b9872acd04a9fde79b1f943075d5ea162415de3047c327df33fbaee5'],
'start_dir': '%(namelower)s-%(version)s',
}),
]
moduleclass = 'system'