summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2020-02-10 03:44:17 -0600
committerGitHub <noreply@github.com>2020-02-10 10:44:17 +0100
commit1ed0efec7defdba982e76cc78e131a8a92a6876f (patch)
treed606f0317e8cec8f03e794482dbdb44e346c3a77
parentbd442e884a4ab240b8e6a96ca2096043c18a7652 (diff)
downloadspack-1ed0efec7defdba982e76cc78e131a8a92a6876f.tar.gz
spack-1ed0efec7defdba982e76cc78e131a8a92a6876f.tar.bz2
spack-1ed0efec7defdba982e76cc78e131a8a92a6876f.tar.xz
spack-1ed0efec7defdba982e76cc78e131a8a92a6876f.zip
New package: r-suppdists (#14865)
-rw-r--r--var/spack/repos/builtin/packages/r-suppdists/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-suppdists/package.py b/var/spack/repos/builtin/packages/r-suppdists/package.py
new file mode 100644
index 0000000000..f85ee2c0a8
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-suppdists/package.py
@@ -0,0 +1,22 @@
+# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack import *
+
+
+class RSuppdists(RPackage):
+ """Ten distributions supplementing those built into R. Inverse Gauss,
+ Kruskal-Wallis, Kendall's Tau, Friedman's chi squared, Spearman's rho,
+ maximum F ratio, the Pearson product moment correlation coefficient,
+ Johnson distributions, normal scores and generalized hypergeometric
+ distributions."""
+
+ homepage = "https://cloud.r-project.org/package=SuppDists"
+ url = "https://cloud.r-project.org/src/contrib/SuppDists_1.1-9.5.tar.gz"
+ list_url = "https://cloud.r-project.org/src/contrib/Archive/SuppDists"
+
+ version('1.1-9.5', sha256='680b67145c07d44e200275e08e48602fe19cd99fb106c05422b3f4a244c071c4')
+
+ depends_on('r@3.3.0:', type=('build', 'run'))