diff options
author | Amjad Kotobi <amjadkotbi@gmail.com> | 2020-05-13 16:22:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-13 09:22:53 -0500 |
commit | f6fbf8b8d33f32b5c293fd5f142a31d7582374b6 (patch) | |
tree | cc8e48e9e9aa3e14283fac4c79175ff86e0f18aa | |
parent | a740c361cd44506caa3837f19fa1f70e4764ac94 (diff) | |
download | spack-f6fbf8b8d33f32b5c293fd5f142a31d7582374b6.tar.gz spack-f6fbf8b8d33f32b5c293fd5f142a31d7582374b6.tar.bz2 spack-f6fbf8b8d33f32b5c293fd5f142a31d7582374b6.tar.xz spack-f6fbf8b8d33f32b5c293fd5f142a31d7582374b6.zip |
r-xml2: new version & updated dependencies (#16604)
* r-xml2: new version & updated dependencies
* r-xml2: updated dependencies
-rw-r--r-- | var/spack/repos/builtin/packages/r-xml2/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/r-xml2/package.py b/var/spack/repos/builtin/packages/r-xml2/package.py index 55edf949ea..7e12f208bf 100644 --- a/var/spack/repos/builtin/packages/r-xml2/package.py +++ b/var/spack/repos/builtin/packages/r-xml2/package.py @@ -14,11 +14,12 @@ class RXml2(RPackage): url = "https://cloud.r-project.org/src/contrib/xml2_1.1.1.tar.gz" list_url = "https://cloud.r-project.org/src/contrib/Archive/xml2" + version('1.3.2', sha256='df22f9e7e3189d8c9b8804eaf0105324fdac983cffe743552f6d76613600a4cf') version('1.2.2', sha256='3050f147c4335be2925a576557bbda36bd52a5bba3110d47b740a2dd811a78f4') version('1.2.1', sha256='5615bbc94607efc3bc192551992b349091df802ae34b855cfa817733f2690605') version('1.1.1', sha256='00f3e3b66b76760c19da5f6dddc98e6f30de36a96b211e59e1a3f4ff58763116') depends_on('r@3.1.0:', type=('build', 'run')) - depends_on('r-rcpp@0.12.12:', type=('build', 'run')) + depends_on('r-rcpp@0.12.12:', when='@:1.2', type=('build', 'run')) depends_on('r-bh', when='@:1.1.1', type=('build', 'run')) depends_on('libxml2') |