Skip to content
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

{lang,tools}[GCCcore/13.3.0] Rust v1.78.0, patchelf v0.18.0 #20631

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
29 changes: 29 additions & 0 deletions easybuild/easyconfigs/p/patchelf/patchelf-0.18.0-GCCcore-13.3.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
easyblock = 'ConfigureMake'

name = 'patchelf'
version = '0.18.0'

homepage = 'https://github.com/NixOS/patchelf'
description = """PatchELF is a small utility to modify the dynamic linker and RPATH of ELF executables."""

toolchain = {'name': 'GCCcore', 'version': '13.3.0'}

source_urls = ['https://github.com/NixOS/patchelf/archive/']
sources = ['%(version)s.tar.gz']
checksums = ['1451d01ee3a21100340aed867d0b799f46f0b1749680028d38c3f5d0128fb8a7']

builddependencies = [
('binutils', '2.42'),
('Autotools', '20231222'),
]

preconfigopts = "sh bootstrap.sh && "

sanity_check_paths = {
'files': ['bin/patchelf'],
'dirs': ['share'],
}

sanity_check_commands = ["patchelf --help"]

moduleclass = 'tools'
31 changes: 31 additions & 0 deletions easybuild/easyconfigs/r/Rust/Rust-1.78.0-GCCcore-13.3.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name = 'Rust'
version = '1.78.0'

homepage = 'https://www.rust-lang.org'
description = """Rust is a systems programming language that runs blazingly fast, prevents segfaults,
and guarantees thread safety."""

toolchain = {'name': 'GCCcore', 'version': '13.3.0'}

source_urls = ['https://static.rust-lang.org/dist/']
sources = ['rustc-%(version)s-src.tar.gz']
patches = ['Rust-1.70_sysroot-fix-interpreter.patch']
checksums = [
{'rustc-1.78.0-src.tar.gz': 'ff544823a5cb27f2738128577f1e7e00ee8f4c83f2a348781ae4fc355e91d5a9'},
{'Rust-1.70_sysroot-fix-interpreter.patch': '220129db55e022a98d25028da5dcc9f26b252dd995c3ac92f6312dbb1e362cb1'},
]

builddependencies = [
('binutils', '2.42'),
('CMake', '3.29.3'),
('Python', '3.12.3'),
('Ninja', '1.12.1'),
('pkgconf', '2.2.0'),
('patchelf', '0.18.0'), # only required when RPATH linking is enabled
]

dependencies = [
('OpenSSL', '3', '', SYSTEM),
]

moduleclass = 'lang'
Loading