summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hartzell <hartzell@alerce.com>2018-06-01 13:06:45 -0700
committerAdam J. Stewart <ajstewart426@gmail.com>2018-06-01 15:06:45 -0500
commitb3064938848e154f83cc5152db51767fa3e6d032 (patch)
tree3750e4b9c008051e7240a9519e1a4a8c21100f2f
parent9a486b970980fe960b0158cdccb8d84b2facb3c8 (diff)
downloadspack-b3064938848e154f83cc5152db51767fa3e6d032.tar.gz
spack-b3064938848e154f83cc5152db51767fa3e6d032.tar.bz2
spack-b3064938848e154f83cc5152db51767fa3e6d032.tar.xz
spack-b3064938848e154f83cc5152db51767fa3e6d032.zip
Fix digest for abyss@1.5.2 (#8341)
* Fix digest for abyss@1.5.2 The digest value for v1.5.2 appears to have changed. This value works for me, today. The existing value v2.0.2 works as is. * Use "download" URL for ABYSS Following the suggestion of the project team, switch to using the release tarballs from the "download" URL instead of the automagically generated ones at the "archive" URL. Converstation here: https://github.com/bcgsc/abyss/issues/232
-rw-r--r--var/spack/repos/builtin/packages/abyss/package.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/abyss/package.py b/var/spack/repos/builtin/packages/abyss/package.py
index bf171debce..cbf15ef039 100644
--- a/var/spack/repos/builtin/packages/abyss/package.py
+++ b/var/spack/repos/builtin/packages/abyss/package.py
@@ -31,9 +31,9 @@ class Abyss(AutotoolsPackage):
is useful for assembling genomes up to 100 Mbases in size."""
homepage = "http://www.bcgsc.ca/platform/bioinfo/software/abyss"
- url = "https://github.com/bcgsc/abyss/archive/2.0.2.tar.gz"
+ url = "https://github.com/bcgsc/abyss/releases/download/1.5.2/abyss-1.5.2.tar.gz"
- version('2.0.2', 'bb3f8cebf121312bf81789d963b4ecc5')
+ version('2.0.2', '1623f55ad7f4586e80f6e74b1f27c798')
version('1.5.2', '10d6d72d1a915e618d41a5cbbcf2364c')
depends_on('autoconf', type='build')