-
Notifications
You must be signed in to change notification settings - Fork 773
add Java 1.8 easyconfig that can be updated in-place to more recent JDK 1.8.x #6712
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
Changes from 4 commits
ae25239
d9dc60a
1ed65a5
daca40e
34a8db1
34da312
cfdc6f3
a61233b
362a1fe
a71fc4c
7f31f88
350acf7
82cc18f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| # Authors:: Jack Perdue <[email protected]> - TAMU HPRC - http://hprc.tamu.edu | ||
|
|
||
| easyblock = 'EB_Java' | ||
|
|
||
| name = 'JDK' | ||
| version = '1.8.0_181' | ||
|
|
||
| homepage = 'http://java.com/' | ||
|
|
||
| description = """ | ||
| Java Platform, Standard Edition (Java SE) lets you develop and deploy | ||
| Java applications on desktops and servers. | ||
| """ | ||
|
|
||
| toolchain = {'name': 'dummy', 'version': 'dummy'} | ||
|
|
||
| # download the tar.gz directly from | ||
| # http://www.oracle.com/technetwork/java/javase/downloads/index.html | ||
| (vp, vs) = version.split('_') | ||
| altver = '%su%s' % (vp.split('.')[1], vs) | ||
| sources = ['jdk-%s-linux-x64.tar.gz' % altver] | ||
| checksums = ['1845567095bfbfebd42ed0d09397939796d05456290fb20a83c476ba09f991d3'] | ||
|
|
||
| moduleclass = 'lang' |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| # Authors:: Jack Perdue <[email protected]> - TAMU HPRC - http://hprc.tamu.edu | ||
|
|
||
| easyblock = 'Bundle' | ||
|
|
||
| name = 'Java' | ||
| version = '8' | ||
|
||
|
|
||
| homepage = 'http://gcc.gnu.org/' | ||
| description = """ | ||
| Java Platform, Standard Edition (Java SE) lets you develop and deploy | ||
| Java applications on desktops and servers. | ||
| """ | ||
|
|
||
| toolchain = {'name': 'dummy', 'version': ''} | ||
|
|
||
| dependencies = [ | ||
| ('JDK', '1.%(version)s.0_181') | ||
| ] | ||
|
|
||
| altroot = 'JDK' | ||
| altversion = 'JDK' | ||
|
|
||
| moduleclass = 'lang' | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that this might not merge if the currently pending TensorFlow 1.10 gets merged first, since it uses _172
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm aware of that, I'm hoping #6677 gets merged first, and then I'll resolve the conflict here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@boegel Doesn't look like #6677 will merge before this one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If it doesn't, that's fine, then @akesandgren just need to update #6677 accordingly, the change will be trivial.