easyconfigs-it4i/n/NSS/NSS-3.104-GCCcore-13.3.0.eb
Lukas Krupcik f2dcff362b new file: c/cryptography/cryptography-42.0.8-GCCcore-13.3.0.eb
new file:   f/flit/flit-3.9.0-GCCcore-13.3.0.eb
	new file:   f/fonttools/fonttools-4.53.1-GCCcore-13.3.0.eb
	new file:   h/HarfBuzz/HarfBuzz-9.0.0-GCCcore-13.3.0.eb
	new file:   n/NSS/NSS-3.104-GCCcore-13.3.0.eb
	new file:   p/Python-bundle-PyPI/Python-bundle-PyPI-2024.06-GCCcore-13.3.0.eb
	new file:   p/poetry/poetry-1.8.3-GCCcore-13.3.0.eb
	new file:   q/Qt6/Qt6-6.7.2-GCCcore-13.3.0.eb
	new file:   s/scikit-build/scikit-build-0.17.6-GCCcore-13.3.0.eb
	new file:   v/virtualenv/virtualenv-20.26.2-GCCcore-13.3.0.eb
2025-03-25 07:54:35 +01:00

67 lines
2.2 KiB
Plaintext

easyblock = 'MakeCp'
name = 'NSS'
version = '3.104'
homepage = 'https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS'
description = """Network Security Services (NSS) is a set of libraries designed to support cross-platform development
of security-enabled client and server applications."""
toolchain = {'name': 'GCCcore', 'version': '13.3.0'}
source_urls = ['https://ftp.mozilla.org/pub/security/nss/releases/NSS_%s_RTM/src/' % version.replace('.', '_')]
sources = [SOURCELOWER_TAR_GZ]
patches = [
'%(name)s-3.39_pkgconfig.patch',
'%(name)s-3.55_fix-ftbfs-glibc-invalid-oob-error.patch',
]
checksums = [
{'nss-3.104.tar.gz': 'e2763223622d1e76b98a43030873856f248af0a41b03b2fa2ca06a91bc50ac8e'},
{'NSS-3.39_pkgconfig.patch': '5c4b55842e5afd1e8e67b90635f6474510b89242963c4ac2622d3e3da9062774'},
{'NSS-3.55_fix-ftbfs-glibc-invalid-oob-error.patch':
'15768297c5dd6918132af281531afcfe3e358f45a00bc2655d20a6cbe4310a9b'},
]
builddependencies = [
('binutils', '2.42'),
('Perl', '5.38.2'),
]
dependencies = [
('NSPR', '4.35'),
('zlib', '1.3.1'),
]
# disable use of -Werror to work around compilation errors with newer glibc versions,
# see also https://sourceware.org/bugzilla/show_bug.cgi?id=27476
buildopts = 'NSS_ENABLE_WERROR=0 BUILD_OPT=1 USE_64=1 '
buildopts += 'CPATH="$EBROOTNSPR/include/nspr:$CPATH" OS_REL_CFLAGS="-D_XOPEN_SOURCE "'
buildopts += ' && cd config && make PREFIX=%(installdir)s BUILD_OPT=1 USE_64=1 && cd -'
# building in parallel fails
maxparallel = 1
# optional testsuite (takes a long time)
# buildopts += " && cd %(builddir)s/%(namelower)s-%(version)s/%(namelower)s/tests && "
# buildopts += " BUILD_OPT=1 USE_64=1 ./all.sh "
files_to_copy = [
'../dist/Linux*.OBJ/*',
(['../dist/public/*'], 'include'),
]
# symlinks in bin/ would point to outside of installation directory, so can't keep them
keepsymlinks = False
sanity_check_paths = {
'files': ['bin/%(namelower)s-config', 'bin/multinit', 'lib/libnss.a'],
'dirs': ['include/dbm', 'include/%(namelower)s'],
}
sanity_check_commands = [
"multinit --help",
"%(namelower)s-config --version",
]
#modextrapaths = {MODULE_LOAD_ENV_HEADERS: 'include/%(namelower)s'}
moduleclass = 'lib'