-
Notifications
You must be signed in to change notification settings - Fork 782
{devel}[GCCcore/13.3.0] LCov v2.3.1 #23752
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
Merged
boegel
merged 5 commits into
easybuilders:develop
from
Thyre:20250827142447_new_pr_LCov231
Sep 23, 2025
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
26645de
adding easyconfigs: LCov-2.3.1-GCCcore-13.3.0.eb
Thyre 8134f58
Fix spaces in LCov 2.3.1
Thyre 86c709c
Fix style & checksums in LCov 2.3.1
Thyre 92f0593
Enable sanity check for all components of LCov-2.3.1-GCCcore-13.3.0
Thyre 8f55ce4
add sanity check command for LCov
boegel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,87 @@ | ||
| easyblock = 'Bundle' | ||
|
|
||
| name = 'LCov' | ||
| version = '2.3.1' | ||
|
|
||
| homepage = 'https://github.com/linux-test-project/lcov' | ||
| description = "LCOV - the LTP GCOV extension" | ||
|
|
||
| toolchain = {'name': 'GCCcore', 'version': '13.3.0'} | ||
| toolchainopts = {'pic': True} | ||
|
|
||
| builddependencies = [ | ||
| ('binutils', '2.42'), | ||
| ('pkgconf', '2.2.0'), # for ExtUtils::PkgConfig | ||
| ('XlsxWriter', '3.2.0'), # For LCov tests | ||
| ('coverage', '7.9.2'), # For LCov tests | ||
| ] | ||
|
|
||
| dependencies = [ | ||
| ('Perl-bundle-CPAN', '5.38.2'), | ||
| ('libgd', '2.3.3'), | ||
| ] | ||
|
|
||
| github_account = 'linux-test-project' | ||
| default_easyblock = 'PerlModule' | ||
|
|
||
| components = [ | ||
| ('ExtUtils::PkgConfig', '1.16', { | ||
| 'start_dir': 'ExtUtils-PkgConfig-%(version)s', | ||
| 'sources': ['ExtUtils-PkgConfig-%(version)s.tar.gz'], | ||
| 'source_urls': ['https://cpan.metacpan.org/authors/id/X/XA/XAOC'], | ||
| 'checksums': ['bbeaced995d7d8d10cfc51a3a5a66da41ceb2bc04fedcab50e10e6300e801c6e'], | ||
| }), | ||
| ('GD', '2.83', { | ||
| 'start_dir': 'GD-%(version)s', | ||
| 'sources': ['GD-%(version)s.tar.gz'], | ||
| 'source_urls': ['https://cpan.metacpan.org/authors/id/R/RU/RURBAN'], | ||
| 'checksums': ['75ee23c67f699d94f7320eba731a3fbf97f0381a54d710e60a0abffc9c45a754'], | ||
| 'runtest': False, # Fails because libgd isn't built with TIFF support | ||
| }), | ||
| ('Memory::Usage', '0.201', { | ||
| 'start_dir': 'Memory-Usage-%(version)s', | ||
| 'sources': ['Memory-Usage-%(version)s.tar.gz'], | ||
| 'source_urls': ['https://cpan.metacpan.org/authors/id/D/DO/DONEILL/'], | ||
| 'checksums': ['8f2afad21e40a748e81c8c0f3e40ca718c14ddb9fb2d880bfbd28ae913ce5349'], | ||
| }), | ||
| ('Devel::Cover', '1.51', { | ||
| 'start_dir': 'Devel-Cover-%(version)s', | ||
| 'sources': ['Devel-Cover-%(version)s.tar.gz'], | ||
| 'source_urls': ['https://cpan.metacpan.org/authors/id/P/PJ/PJCJ'], | ||
| 'checksums': ['bf1936977027bacd243d1713778507149a2da269e7e729cf708b1860dee8f58a'] | ||
| }), | ||
| ('Memory::Process', '0.06', { | ||
| 'start_dir': 'Memory-Process-%(version)s', | ||
| 'sources': ['Memory-Process-%(version)s.tar.gz'], | ||
| 'source_urls': ['https://cpan.metacpan.org/authors/id/S/SK/SKIM'], | ||
| 'checksums': ['35814488ffd29c97621625ea3b3d700afbfa60ed055bd759d4e58d9c8fd44e4e'] | ||
| }), | ||
| ('TimeDate', '2.33', { | ||
| 'start_dir': 'TimeDate-%(version)s', | ||
| 'sources': ['TimeDate-%(version)s.tar.gz'], | ||
| 'source_urls': ['https://cpan.metacpan.org/authors/id/A/AT/ATOOMIC'], | ||
| 'checksums': ['c0b69c4b039de6f501b0d9f13ec58c86b040c1f7e9b27ef249651c143d605eb2'] | ||
| }), | ||
| (name, version, { | ||
| 'easyblock': 'ConfigureMake', | ||
| 'source_urls': [GITHUB_LOWER_SOURCE], | ||
| 'sources': ['v%(version)s.tar.gz'], | ||
| 'checksums': ['035ce6271b775891ef63c325fd18738c43d559c9c160869e3f6731cfe734e6fa'], | ||
| 'skipsteps': ['configure', 'build'], | ||
| 'start_dir': '%(namelower)s-%(version)s', | ||
| 'installopts': "PREFIX=%(installdir)s", | ||
| 'pretestopts': 'PERL5LIB=%(installdir)s/lib/perl5/site_perl/5.38.2/:$PERL5LIB', | ||
| 'runtest': 'check' | ||
| }), | ||
| ] | ||
|
|
||
| sanity_check_all_components = True | ||
|
|
||
| sanity_check_paths = { | ||
| 'files': ['bin/lcov', 'bin/genhtml'], | ||
| 'dirs': [], | ||
| } | ||
|
|
||
| sanity_check_commands = ["lcov --help"] | ||
|
|
||
| moduleclass = 'devel' | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.