diff options
author | George Hartzell <hartzell@alerce.com> | 2016-08-05 17:47:11 -0400 |
---|---|---|
committer | George Hartzell <hartzell@alerce.com> | 2016-08-05 17:47:11 -0400 |
commit | 769408130a6dcf0c6ae44570a7577c2000bffe4f (patch) | |
tree | b0a289c0f78bb6f0b49d0e46f65ad8c6b87eb5b7 | |
parent | d6dedee6ff9c31c31705e3fdfba1c4e07954b477 (diff) | |
download | spack-769408130a6dcf0c6ae44570a7577c2000bffe4f.tar.gz spack-769408130a6dcf0c6ae44570a7577c2000bffe4f.tar.bz2 spack-769408130a6dcf0c6ae44570a7577c2000bffe4f.tar.xz spack-769408130a6dcf0c6ae44570a7577c2000bffe4f.zip |
Samtools depends on htslib from 1.3.1 onward
Samtools used to (before 1.3.1) include it's own copy of htslib. Going
forward, it needs to use the standalone htslib.
-rw-r--r-- | var/spack/repos/builtin/packages/samtools/package.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/samtools/package.py b/var/spack/repos/builtin/packages/samtools/package.py index aafda8ce3c..6b0b224785 100644 --- a/var/spack/repos/builtin/packages/samtools/package.py +++ b/var/spack/repos/builtin/packages/samtools/package.py @@ -37,8 +37,8 @@ class Samtools(Package): version('1.2', '988ec4c3058a6ceda36503eebecd4122') depends_on("ncurses") - depends_on("htslib", when='@1.3.1') # htslib became standalone - depends_on('zlib', when='@1.2') # needed for builtin htslib + depends_on("htslib", when='@1.3.1:') # htslib became standalone + depends_on('zlib', when='@1.2') # needed for builtin htslib def install(self, spec, prefix): if self.spec.version >= Version('1.3.1'): |