diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2015-02-12 09:18:54 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2015-03-12 06:54:15 -0700 |
commit | 81d518438c1de3fe4cb5ba4bed825e29cee30aee (patch) | |
tree | 4d24c912b0f8c4328d2a40260aab0caefd43af4f | |
parent | b24aca6da2513aff7e07ce97715a36eb8e9eff2c (diff) | |
download | spack-81d518438c1de3fe4cb5ba4bed825e29cee30aee.tar.gz spack-81d518438c1de3fe4cb5ba4bed825e29cee30aee.tar.bz2 spack-81d518438c1de3fe4cb5ba4bed825e29cee30aee.tar.xz spack-81d518438c1de3fe4cb5ba4bed825e29cee30aee.zip |
Point ravel download at the github release page.
-rw-r--r-- | var/spack/packages/ravel/package.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/var/spack/packages/ravel/package.py b/var/spack/packages/ravel/package.py index 5b92451ddb..01fa941cfe 100644 --- a/var/spack/packages/ravel/package.py +++ b/var/spack/packages/ravel/package.py @@ -5,10 +5,11 @@ class Ravel(Package): orders events according to logical time.""" homepage = "https://github.com/scalability-llnl/ravel" + url = 'https://github.com/scalability-llnl/ravel/archive/v1.0.0.tar.gz' - version('1.0.0', git="https://github.com/scalability-llnl/ravel.git", - branch='master') + version('1.0.0', 'b25fece58331c2adfcce76c5036485c2') + # TODO: make this a build dependency depends_on('cmake@2.8.9:') depends_on('muster@1.0.1:') |