Skip to content

Commit

Permalink
Merge pull request easybuilders#21776 from smoors/20241031183017_new_…
Browse files Browse the repository at this point in the history
…pr_parallel20230722

add missing perl-bundle-cpan to recent parallel versions
  • Loading branch information
Micket authored Oct 31, 2024
2 parents 7dac61d + ef7b612 commit 623ce85
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,19 @@ checksums = ['55f991ad195a72f0abfaf1ede8fc1d03dd255cac91bc5eb900f9aa2873d1ff87']

builddependencies = [('binutils', '2.40')]

dependencies = [('Perl', '5.36.1')]
dependencies = [
('Perl', '5.36.1'),
('Perl-bundle-CPAN', '5.36.1'),
]

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

sanity_check_commands = ["parallel --help"]
sanity_check_commands = [
'parallel --help',
'time parallel --csv echo < <(echo -e "task1\ntask2\ntask3")',
]

moduleclass = 'tools'
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,19 @@ checksums = ['0b17029a203dabf7ba6ca7e52c2d3910fff46b2979476e12a9110920b79e6a95']

builddependencies = [('binutils', '2.40')]

dependencies = [('Perl', '5.38.0')]
dependencies = [
('Perl', '5.38.0'),
('Perl-bundle-CPAN', '5.38.0'),
]

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

sanity_check_commands = ["parallel --help"]
sanity_check_commands = [
'parallel --help',
'time parallel --csv echo < <(echo -e "task1\ntask2\ntask3")',
]

moduleclass = 'tools'
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,19 @@ checksums = ['c7335471f776af28bea9464ad85a50f2ed120f78fbf75ead6647aeea8e0e53f0']

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

dependencies = [('Perl', '5.38.2')]
dependencies = [
('Perl', '5.38.2'),
('Perl-bundle-CPAN', '5.38.2'),
]

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

sanity_check_commands = ["parallel --help"]
sanity_check_commands = [
'parallel --help',
'time parallel --csv echo < <(echo -e "task1\ntask2\ntask3")',
]

moduleclass = 'tools'

0 comments on commit 623ce85

Please sign in to comment.