diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2018-07-24 22:44:55 -0500 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2018-07-25 23:10:10 -0700 |
commit | 5d07042f23fbdbac22712abcf2df7b4374cfba53 (patch) | |
tree | b2d558f892c6314f706c992db1ebe1263a22bfa3 /var | |
parent | 68c2bdfaf6399ee3584bd30edad1b0b2607ab952 (diff) | |
download | spack-5d07042f23fbdbac22712abcf2df7b4374cfba53.tar.gz spack-5d07042f23fbdbac22712abcf2df7b4374cfba53.tar.bz2 spack-5d07042f23fbdbac22712abcf2df7b4374cfba53.tar.xz spack-5d07042f23fbdbac22712abcf2df7b4374cfba53.zip |
Unit test fixes
Diffstat (limited to 'var')
4 files changed, 1 insertions, 13 deletions
diff --git a/var/spack/repos/builtin/packages/essl/package.py b/var/spack/repos/builtin/packages/essl/package.py index b1a7e39ea9..ba3db4cb3e 100644 --- a/var/spack/repos/builtin/packages/essl/package.py +++ b/var/spack/repos/builtin/packages/essl/package.py @@ -30,9 +30,6 @@ class Essl(Package): homepage = "https://www.ibm.com/systems/power/software/essl/" - version('6.1') - version('5.5') - variant('ilp64', default=False, description='64 bit integers') variant( 'threads', default='openmp', diff --git a/var/spack/repos/builtin/packages/opengl/package.py b/var/spack/repos/builtin/packages/opengl/package.py index b970015c21..6d0ee752d3 100644 --- a/var/spack/repos/builtin/packages/opengl/package.py +++ b/var/spack/repos/builtin/packages/opengl/package.py @@ -30,11 +30,6 @@ class Opengl(Package): homepage = "https://www.opengl.org/" - # A second argument (usually the hash) must be supplied to the - # version directive, but 'n/a' is used here because this package - # is a placeholder for a system/vendor installation of OpenGL - version('3.2', 'n/a') - provides('gl@:4.5', when='@4.5:') provides('gl@:4.4', when='@4.4:') provides('gl@:4.3', when='@4.3:') diff --git a/var/spack/repos/builtin/packages/openglu/package.py b/var/spack/repos/builtin/packages/openglu/package.py index 3ffd6b1536..992a13fbcb 100644 --- a/var/spack/repos/builtin/packages/openglu/package.py +++ b/var/spack/repos/builtin/packages/openglu/package.py @@ -31,11 +31,6 @@ class Openglu(Package): homepage = "https://www.opengl.org/resources/libraries" - # A second argument (usually the has) must be supplied to the - # version directive, but 'n/a' is used here because this package - # is a placeholder for a system/vendor installation of OpenGL - version('1.3', 'n/a') - provides('glu@:1.3', when='@1.3:') provides('glu@:1.2', when='@1.2:') provides('glu@:1.1', when='@1.1:') diff --git a/var/spack/repos/builtin/packages/typhon/package.py b/var/spack/repos/builtin/packages/typhon/package.py index 618a3ec20f..2fbedf36a8 100644 --- a/var/spack/repos/builtin/packages/typhon/package.py +++ b/var/spack/repos/builtin/packages/typhon/package.py @@ -32,6 +32,7 @@ class Typhon(CMakePackage): """ homepage = "https://github.com/UK-MAC/Typhon" + url = "https://github.com/UK-MAC/Typhon/archive/v3.0.tar.gz" git = "https://github.com/UK-MAC/Typhon.git" version('develop', branch='develop') |