diff options
author | Audrey Thoma <las_thoma15@iastate.edu> | 2017-08-07 15:42:49 -0500 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2017-08-07 15:42:49 -0500 |
commit | 825c3c68a35f49d93ef753fe974d65ac7d1ed42a (patch) | |
tree | 5336b652e380bbd0a6a2f2bafadddb282d94f47b /var/spack/repos/builtin/packages/abyss | |
parent | 82463f1fd622872b80f80a7c62728992d204b5cc (diff) | |
download | spack-825c3c68a35f49d93ef753fe974d65ac7d1ed42a.tar.gz spack-825c3c68a35f49d93ef753fe974d65ac7d1ed42a.tar.bz2 spack-825c3c68a35f49d93ef753fe974d65ac7d1ed42a.tar.xz spack-825c3c68a35f49d93ef753fe974d65ac7d1ed42a.zip |
transabyss: new package (#4892)
* transabyss: new package and dependencies
* fixed build deps in igraph and version conflict spec in abyss
* fixed versioning stuff and package structure
* fixed dep type
* fixing dep type for real this time
Diffstat (limited to 'var/spack/repos/builtin/packages/abyss')
-rw-r--r-- | var/spack/repos/builtin/packages/abyss/package.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/abyss/package.py b/var/spack/repos/builtin/packages/abyss/package.py index e8e0fb4d45..f3a9f27748 100644 --- a/var/spack/repos/builtin/packages/abyss/package.py +++ b/var/spack/repos/builtin/packages/abyss/package.py @@ -31,12 +31,14 @@ class Abyss(AutotoolsPackage): is useful for assembling genomes up to 100 Mbases in size.""" homepage = "http://www.bcgsc.ca/platform/bioinfo/software/abyss" - url = "http://www.bcgsc.ca/platform/bioinfo/software/abyss/releases/2.0.2/abyss-2.0.2.tar.gz" + url = "https://github.com/bcgsc/abyss/archive/2.0.2.tar.gz" version('2.0.2', '1623f55ad7f4586e80f6e74b1f27c798') + version('1.5.2', '10d6d72d1a915e618d41a5cbbcf2364c') depends_on('mpi') - depends_on('boost@:1.50.0,1.53.0:') + depends_on('boost@:1.50.0,1.53.0:', when='@2.0.2:') + depends_on('boost@:1.50.0,1.53.0:1.59.0', when='@:1.5.2') depends_on('sparsehash') depends_on('sqlite') |