From b3064938848e154f83cc5152db51767fa3e6d032 Mon Sep 17 00:00:00 2001 From: George Hartzell Date: Fri, 1 Jun 2018 13:06:45 -0700 Subject: [PATCH] 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 --- var/spack/repos/builtin/packages/abyss/package.py | 4 ++-- 1 file 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 bf171debce9..cbf15ef0397 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')