forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request easybuilders#20479 from PetrKralCZ/20240506145732_…
…new_pr_lcalc205 {math,tools}[GCCcore/13.2.0] lcalc v2.0.5, gengetopt v2.23
- Loading branch information
Showing
2 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
easybuild/easyconfigs/g/gengetopt/gengetopt-2.23-GCCcore-13.2.0.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
easyblock = 'ConfigureMake' | ||
|
||
name = 'gengetopt' | ||
version = '2.23' | ||
|
||
homepage = 'https://www.gnu.org/software/gengetopt/gengetopt.html' | ||
description = "Gengetopt is a tool to write command line option parsing code for C programs." | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '13.2.0'} | ||
|
||
source_urls = [GNU_SOURCE] | ||
sources = [SOURCE_TAR_XZ] | ||
checksums = ['b941aec9011864978dd7fdeb052b1943535824169d2aa2b0e7eae9ab807584ac'] | ||
|
||
builddependencies = [ | ||
('binutils', '2.40'), | ||
('makeinfo', '7.1'), | ||
] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/gengetopt'], | ||
'dirs': ['share'], | ||
} | ||
|
||
sanity_check_commands = ["gengetopt --help"] | ||
|
||
moduleclass = 'tools' |
38 changes: 38 additions & 0 deletions
38
easybuild/easyconfigs/l/lcalc/lcalc-2.0.5-GCCcore-13.2.0.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
easyblock = 'ConfigureMake' | ||
|
||
name = 'lcalc' | ||
version = '2.0.5' | ||
|
||
homepage = 'https://gitlab.com/sagemath/lcalc' | ||
description = "Lcalc is a package for working with L-functions." | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '13.2.0'} | ||
|
||
source_urls = ['https://gitlab.com/sagemath/lcalc/uploads/25f029f3c02fcb6c3174972e0ac0e192/'] | ||
sources = [SOURCE_TAR_XZ] | ||
checksums = ['d780c385579cc6ee45fa27ccd2d3a3c4157fbb5ef8cd1b8951d1028bbc64c035'] | ||
|
||
builddependencies = [ | ||
('Autotools', '20220317'), | ||
('binutils', '2.40'), | ||
('gengetopt', '2.23'), | ||
('pkgconf', '2.0.3'), | ||
] | ||
|
||
preconfigopts = "autoreconf -f -i && " | ||
|
||
configopts = "--with-pari " | ||
|
||
dependencies = [ | ||
('MPFR', '4.2.1'), | ||
('PARI-GP', '2.15.5'), | ||
] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/lcalc', 'include/lcalc/L.h', 'lib/libLfunction.%s' % SHLIB_EXT], | ||
'dirs': ['share'], | ||
} | ||
|
||
sanity_check_commands = ["lcalc --help"] | ||
|
||
moduleclass = 'math' |