-
Notifications
You must be signed in to change notification settings - Fork 203
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 #2599 from ocaisa/allow_dep_upgrades
Add ability to upgrade dependencies based on available easyconfigs
- Loading branch information
Showing
15 changed files
with
810 additions
and
127 deletions.
There are no files selected for viewing
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
40 changes: 40 additions & 0 deletions
40
test/framework/easyconfigs/test_ecs/g/gzip/gzip-1.4-GCC-4.9.3-2.26.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,40 @@ | ||
## | ||
# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild | ||
# | ||
# Copyright:: Copyright (c) 2012-2013 Cyprus Institute / CaSToRC | ||
# Authors:: Thekla Loizou <[email protected]> | ||
# License:: MIT/GPL | ||
# $Id$ | ||
# | ||
# This work implements a part of the HPCBIOS project and is a component of the policy: | ||
# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_06-19.html | ||
## | ||
easyblock = 'ConfigureMake' | ||
|
||
name = 'gzip' | ||
version = '1.4' | ||
|
||
homepage = "http://www.gzip.org/" | ||
description = "gzip (GNU zip) is a popular data compression program as a replacement for compress" | ||
|
||
# test toolchain specification | ||
toolchain = {'name': 'GCC', 'version': '4.9.3-2.26'} | ||
|
||
# source tarball filename | ||
sources = ['%(name)s-%(version)s.tar.gz'] | ||
|
||
# download location for source files | ||
source_urls = [GNU_SOURCE] | ||
|
||
# make sure the gzip and gunzip binaries are available after installation | ||
sanity_check_paths = { | ||
'files': ["bin/gunzip", "bin/gzip"], | ||
'dirs': [], | ||
} | ||
|
||
# run 'gzip -h' and 'gzip --version' after installation | ||
sanity_check_commands = [True, ('gzip', '--version')] | ||
|
||
software_license = GPLv3 | ||
|
||
moduleclass = 'tools' |
40 changes: 40 additions & 0 deletions
40
test/framework/easyconfigs/test_ecs/g/gzip/gzip-1.6-iccifort-2016.1.150-GCC-4.9.3-2.25.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,40 @@ | ||
## | ||
# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild | ||
# | ||
# Copyright:: Copyright (c) 2012-2013 Cyprus Institute / CaSToRC | ||
# Authors:: Thekla Loizou <[email protected]> | ||
# License:: MIT/GPL | ||
# $Id$ | ||
# | ||
# This work implements a part of the HPCBIOS project and is a component of the policy: | ||
# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_06-19.html | ||
## | ||
easyblock = 'ConfigureMake' | ||
|
||
name = 'gzip' | ||
version = '1.6' | ||
|
||
homepage = "http://www.gzip.org/" | ||
description = "gzip (GNU zip) is a popular data compression program as a replacement for compress" | ||
|
||
# test toolchain specification | ||
toolchain = {'name': 'iccifort', 'version': '2016.1.150-GCC-4.9.3-2.25'} | ||
|
||
# source tarball filename | ||
sources = ['%(name)s-%(version)s.tar.gz'] | ||
|
||
# download location for source files | ||
source_urls = [GNU_SOURCE] | ||
|
||
# make sure the gzip and gunzip binaries are available after installation | ||
sanity_check_paths = { | ||
'files': ["bin/gunzip", "bin/gzip"], | ||
'dirs': [], | ||
} | ||
|
||
# run 'gzip -h' and 'gzip --version' after installation | ||
sanity_check_commands = [True, ('gzip', '--version')] | ||
|
||
software_license = GPLv3 | ||
|
||
moduleclass = 'tools' |
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
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
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
Oops, something went wrong.