summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-coin/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/r-coin/package.py')
-rw-r--r--var/spack/repos/builtin/packages/r-coin/package.py14
1 files changed, 9 insertions, 5 deletions
diff --git a/var/spack/repos/builtin/packages/r-coin/package.py b/var/spack/repos/builtin/packages/r-coin/package.py
index 81a8bf45d4..b52fff5e77 100644
--- a/var/spack/repos/builtin/packages/r-coin/package.py
+++ b/var/spack/repos/builtin/packages/r-coin/package.py
@@ -11,15 +11,19 @@ class RCoin(RPackage):
including two-sample, K-sample (non-parametric ANOVA), correlation,
censored, ordered and multivariate problems."""
- homepage = "https://cran.r-project.org/package=coin"
- url = "https://cran.r-project.org/src/contrib/coin_1.1-3.tar.gz"
- list_url = "https://cran.r-project.org/src/contrib/Archive/coin"
+ homepage = "https://cloud.r-project.org/package=coin"
+ url = "https://cloud.r-project.org/src/contrib/coin_1.1-3.tar.gz"
+ list_url = "https://cloud.r-project.org/src/contrib/Archive/coin"
+ version('1.3-0', sha256='adcebb37e0a7dfddbf8ec1e09c12a809bd76d90b5b8ff2b1048a75252ba11ef8')
+ version('1.2-2', sha256='d518065d3e1eb00121cb4e0200e1e4ae6b68eca6e249afc38bbffa35d24105bb')
version('1.1-3', '97d3d21f1e4a5762e36dd718dd2d0661')
- depends_on('r@2.14.0:')
-
+ depends_on('r@2.14.0:', when='@:1.2-2', type=('build', 'run'))
+ depends_on('r@3.4.0:', when='@1.3-0:', type=('build', 'run'))
depends_on('r-survival', type=('build', 'run'))
depends_on('r-modeltools@0.2-9:', type=('build', 'run'))
depends_on('r-mvtnorm@1.0-5:', type=('build', 'run'))
depends_on('r-multcomp', type=('build', 'run'))
+ depends_on('r-libcoin@1.0-0:', when='@1.3-0:', type=('build', 'run'))
+ depends_on('r-matrixstats@0.54.0:', when='@1.3-0:', type=('build', 'run'))