Skip to content

Commit

Permalink
apply chages suggested in PR
Browse files Browse the repository at this point in the history
  • Loading branch information
PetrKralCZ committed Feb 23, 2024
1 parent c95cfdd commit 1d1f205
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 7 deletions.
30 changes: 30 additions & 0 deletions easybuild/easyconfigs/g/Gradle/Gradle-8.6-Java-17.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
easyblock = 'PackedBinary'

name = 'Gradle'
version = '8.6'
versionsuffix = '-Java-%(javaver)s'

homepage = 'https://gradle.org'
description = """Complete Gradle install.
From mobile apps to microservices, from small startups to big enterprises,
Gradle helps teams build, automate and deliver better software, faster.
"""

toolchain = SYSTEM

source_urls = ['https://services.gradle.org/distributions']
sources = ['gradle-%(version)s-all.zip']
checksums = ['85719317abd2112f021d4f41f09ec370534ba288432065f4b477b6a3b652910d']

dependencies = [
('Java', '17'),
]

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

moduleclass = 'devel'

sanity_check_commands = ['%(namelower)s --help']
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ sources = ['%(namelower)s-%(version)s.tar.xz']
checksums = ['63a6cd63fedc7c700020708c0a362b3807b6780f0246b12c8dc372cecd6130cf']

builddependencies = [
('binutils', '2.40', '', SYSTEM),
('binutils', '2.40'),
('ant', '1.10.12', versionsuffix, SYSTEM),
]

Expand All @@ -26,9 +26,9 @@ dependencies = [
sanity_check_paths = {
'files': [
'lib/openslide-java/openslide.jar',
'lib/openslide-java/libopenslide-jni.so',
'lib/openslide-java/libopenslide-jni.%s' % SHLIB_EXT,
],
'dirs': []
'dirs': [],
}

moduleclass = 'vis'
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ sources = ['v%(version)s.tar.gz']
checksums = ['d244234ea2fd042488ca4a879f22103764dd3ed27cf9367a8293e50794023524']

builddependencies = [
('binutils', '2.40', '', SYSTEM),
('Gradle', '8.6', '', SYSTEM),
('binutils', '2.40'),
('Gradle', '8.6', versionsuffix, SYSTEM),
]

dependencies = [
Expand All @@ -36,8 +36,14 @@ files_to_copy = [
modextrapaths = {'PATH': ['']}

sanity_check_paths = {
'files': ['bin/%(name)s'],
'dirs': ['lib'],
'files': [
'bin/%(name)s',
'lib/libapplauncher.%s' % SHLIB_EXT,
],
'dirs': [
'lib/app',
'lib/runtime',
],
}

sanity_check_commands = ['%(name)s --help']
Expand Down

0 comments on commit 1d1f205

Please sign in to comment.