mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-08 07:52:11 +01:00

new file: l/libevent/libevent-2.1.12-GCCcore-14.2.0.eb new file: l/libfabric/libfabric-1.16.1-GCCcore-14.2.0.eb new file: l/libffi/libffi-3.4.5-GCCcore-14.2.0.eb new file: l/libpciaccess/libpciaccess-0.18.1-GCCcore-14.2.0.eb new file: l/libreadline/libreadline-8.2-GCCcore-13.3.0.eb new file: l/libreadline/libreadline-8.2-GCCcore-14.2.0.eb new file: l/libtool/libtool-2.4.7-GCCcore-14.2.0.eb new file: l/libxml2/libxml2-2.12.7-GCCcore-14.2.0.eb new file: m/Meson/Meson-1.4.0-GCCcore-14.2.0.eb new file: n/Ninja/Ninja-1.12.1-GCCcore-14.2.0.eb modified: o/OpenMPI/OpenMPI-5.0.5-GCC-14.2.0.eb new file: p/PMIx/PMIx-5.0.2-GCCcore-14.2.0.eb new file: p/Python/Python-3.12.3-GCCcore-14.2.0.eb new file: s/SQLite/SQLite-3.45.3-GCCcore-14.2.0.eb new file: t/Tcl/Tcl-8.6.14-GCCcore-14.2.0.eb new file: u/UCC/UCC-1.3.0-GCCcore-14.2.0.eb new file: u/UCX/UCX-1.16.0-GCCcore-14.2.0.eb new file: u/UnZip/UnZip-6.0-GCCcore-14.2.0.eb new file: x/xorg-macros/xorg-macros-1.20.1-GCCcore-14.2.0.eb
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
# IT4Innovations
|
|
# LK 2024
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'libevent'
|
|
version = '2.1.12'
|
|
|
|
homepage = 'https://libevent.org/'
|
|
|
|
description = """
|
|
The libevent API provides a mechanism to execute a callback function when
|
|
a specific event occurs on a file descriptor or after a timeout has been
|
|
reached. Furthermore, libevent also support callbacks due to signals or
|
|
regular timeouts.
|
|
"""
|
|
|
|
toolchain = {'name': 'GCCcore', 'version': '14.2.0'}
|
|
toolchainopts = {'pic': True}
|
|
|
|
source_urls = ['https://github.com/%(name)s/%(name)s/releases/download/release-%(version)s-stable/']
|
|
sources = ['%(name)s-%(version)s-stable.tar.gz']
|
|
checksums = ['92e6de1be9ec176428fd2367677e61ceffc2ee1cb119035037a27d346b0403bb']
|
|
|
|
builddependencies = [
|
|
('binutils', '2.42'),
|
|
('pkgconf', '2.2.0'),
|
|
]
|
|
|
|
dependencies = [
|
|
('zlib', '1.3.1'),
|
|
# ('OpenSSL', '3', '', SYSTEM),
|
|
]
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/event_rpcgen.py', 'include/event.h', 'include/event2/event.h',
|
|
'lib/libevent_core.%s' % SHLIB_EXT, 'lib/pkgconfig/libevent.pc'],
|
|
'dirs': [],
|
|
}
|
|
|
|
moduleclass = 'lib'
|