samtools: add version 1.12 (#22885)

This commit is contained in:
Glenn Johnson 2021-04-12 16:28:04 -05:00 committed by GitHub
parent 24f4a39d0e
commit 976cf4496b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,6 +14,7 @@ class Samtools(Package):
homepage = "http://www.htslib.org" homepage = "http://www.htslib.org"
url = "https://github.com/samtools/samtools/releases/download/1.3.1/samtools-1.3.1.tar.bz2" url = "https://github.com/samtools/samtools/releases/download/1.3.1/samtools-1.3.1.tar.bz2"
version('1.12', sha256='6da3770563b1c545ca8bdf78cf535e6d1753d6383983c7929245d5dba2902dcb')
version('1.10', sha256='7b9ec5f05d61ec17bd9a82927e45d8ef37f813f79eb03fe06c88377f1bd03585') version('1.10', sha256='7b9ec5f05d61ec17bd9a82927e45d8ef37f813f79eb03fe06c88377f1bd03585')
version('1.9', sha256='083f688d7070082411c72c27372104ed472ed7a620591d06f928e653ebc23482') version('1.9', sha256='083f688d7070082411c72c27372104ed472ed7a620591d06f928e653ebc23482')
version('1.8', sha256='c942bc1d9b85fd1b05ea79c5afd2805d489cd36b2c2d8517462682a4d779be16') version('1.8', sha256='c942bc1d9b85fd1b05ea79c5afd2805d489cd36b2c2d8517462682a4d779be16')
@ -32,6 +33,7 @@ class Samtools(Package):
depends_on('python', type='run') depends_on('python', type='run')
# htslib became standalone @1.3.1, must use corresponding version # htslib became standalone @1.3.1, must use corresponding version
depends_on('htslib@1.12', when='@1.12')
depends_on('htslib@1.10.2', when='@1.10') depends_on('htslib@1.10.2', when='@1.10')
depends_on('htslib@1.9', when='@1.9') depends_on('htslib@1.9', when='@1.9')
depends_on('htslib@1.8', when='@1.8') depends_on('htslib@1.8', when='@1.8')