diff options
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/r-genomicranges/package.py | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/var/spack/repos/builtin/packages/r-genomicranges/package.py b/var/spack/repos/builtin/packages/r-genomicranges/package.py index 944dc5b9dd..d3941e81a6 100644 --- a/var/spack/repos/builtin/packages/r-genomicranges/package.py +++ b/var/spack/repos/builtin/packages/r-genomicranges/package.py @@ -41,11 +41,14 @@ class RGenomicranges(RPackage): url = "https://git.bioconductor.org/packages/GenomicRanges" list_url = homepage + version('1.30.3', git='https://git.bioconductor.org/packages/GenomicRanges', commit='e99979054bc50ed8c0109bc54563036c1b368997') version('1.28.6', git='https://git.bioconductor.org/packages/GenomicRanges', commit='197472d618f3ed04c795dc6ed435500c29619563') - depends_on('r-biocgenerics', type=('build', 'run')) - depends_on('r-s4vectors', type=('build', 'run')) - depends_on('r-iranges', type=('build', 'run')) - depends_on('r-genomeinfodb', type=('build', 'run')) + depends_on('r-biocgenerics@0.21.2:', type=('build', 'run')) + depends_on('r-s4vectors@0.9.47:', type=('build', 'run')) + depends_on('r-iranges@2.9.11:', type=('build', 'run'), when='@1.28.6') + depends_on('r-iranges@2.11.16:', type=('build', 'run'), when='@1.30.3') + depends_on('r-genomeinfodb@1.11.5:', type=('build', 'run'), when='@1.28.6') + depends_on('r-genomeinfodb@1.13.1:', type=('build', 'run'), when='@1.30.3') depends_on('r-xvector', type=('build', 'run')) - depends_on('r@3.4.0:3.4.9', when='@1.28.6') + depends_on('r@3.4.0:3.4.9', when='@1.28.6:') |