fixing bugs with new package updates for samtools and abi-dum (#25615)

samtools needed more constraints for htslib, and abi-dumper was missing pkg-config
on the dependency universal ctags

Signed-off-by: vsoch <vsoch@users.noreply.github.com>

Co-authored-by: vsoch <vsoch@users.noreply.github.com>
This commit is contained in:
Vanessasaurus 2021-08-25 23:39:46 -06:00 committed by GitHub
parent 73005166ef
commit 4ddc0ff218
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -33,7 +33,9 @@ class Samtools(Package):
depends_on('python', type='run')
# htslib became standalone @1.3.1, must use corresponding version
depends_on('htslib@1.13', when='@1.13')
depends_on('htslib@1.12', when='@1.12')
depends_on('htslib@1.11', when='@1.11')
depends_on('htslib@1.10.2', when='@1.10')
depends_on('htslib@1.9', when='@1.9')
depends_on('htslib@1.8', when='@1.8')

View File

@ -22,3 +22,4 @@ class UniversalCtags(AutotoolsPackage):
depends_on('libtool', type='build')
depends_on('m4', type='build')
depends_on('libiconv', type='link')
depends_on('pkg-config', type='build')