summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorLevi Baber <baberlevi@gmail.com>2018-09-03 21:03:47 -0500
committerAdam J. Stewart <ajstewart426@gmail.com>2018-09-03 21:03:47 -0500
commit35d87bdf095d0976b3069badbfc671404c497e15 (patch)
tree82d5f607ece97304eebe27a5a8b735b2a0dc5c26 /var
parentcb9a95fc3715b2b9732a57c45b68ed153dca71df (diff)
downloadspack-35d87bdf095d0976b3069badbfc671404c497e15.tar.gz
spack-35d87bdf095d0976b3069badbfc671404c497e15.tar.bz2
spack-35d87bdf095d0976b3069badbfc671404c497e15.tar.xz
spack-35d87bdf095d0976b3069badbfc671404c497e15.zip
r-biomart: new version; (#9058)
* r-biomart: new version; * r-biomart: ending range for r3.4 dep * r-biomart: fix version range
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/r-biomart/package.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/r-biomart/package.py b/var/spack/repos/builtin/packages/r-biomart/package.py
index 2936418e3b..fd5a83d0c4 100644
--- a/var/spack/repos/builtin/packages/r-biomart/package.py
+++ b/var/spack/repos/builtin/packages/r-biomart/package.py
@@ -42,13 +42,15 @@ class RBiomart(RPackage):
homepage = "https://bioconductor.org/packages/biomaRt/"
git = "https://git.bioconductor.org/packages/biomaRt.git"
+ version('2.36.1', commit='5634e57e20199f9dc1f8b927eb3893143fc02f4f')
version('2.34.2', commit='a7030915fbc6120cc6812aefdedba423a207459b')
version('2.32.1', commit='f84d74424fa599f6d08f8db4612ca09914a9087f')
depends_on('r-xml', type=('build', 'run'))
depends_on('r-rcurl', type=('build', 'run'))
depends_on('r-annotationdbi', type=('build', 'run'))
- depends_on('r-progress', type=('build', 'run'), when='@2.34.2')
- depends_on('r-stringr', type=('build', 'run'), when='@2.34.2')
- depends_on('r-httr', type=('build', 'run'), when='@2.34.2')
- depends_on('r@3.4.0:3.4.9', when='@2.32.1:')
+ depends_on('r-progress', type=('build', 'run'), when='@2.34.2:')
+ depends_on('r-stringr', type=('build', 'run'), when='@2.34.2:')
+ depends_on('r-httr', type=('build', 'run'), when='@2.34.2:')
+ depends_on('r@3.4.0:3.4.9', when='@2.32.1:2.35.9', type=('build', 'run'))
+ depends_on('r@3.5.0:3.5.9', when='@2.36.1', type=('build', 'run'))