diff options
author | Desmond Orton <odesmond21@gmail.com> | 2021-02-23 20:57:22 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-23 20:57:22 -0600 |
commit | 61c8bc2b19941bb009bf261337765a2475a42459 (patch) | |
tree | 8b66a3b5ae4a22a0c4cf54ae60b40a239fd7016d | |
parent | df3caef9aa6cd0485ff1366080aa051b926d284f (diff) | |
download | spack-61c8bc2b19941bb009bf261337765a2475a42459.tar.gz spack-61c8bc2b19941bb009bf261337765a2475a42459.tar.bz2 spack-61c8bc2b19941bb009bf261337765a2475a42459.tar.xz spack-61c8bc2b19941bb009bf261337765a2475a42459.zip |
New package r-circstat@0.2-6 (#21777)
-rw-r--r-- | var/spack/repos/builtin/packages/r-circstat/package.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-circstat/package.py b/var/spack/repos/builtin/packages/r-circstat/package.py new file mode 100644 index 0000000000..eb3c1223af --- /dev/null +++ b/var/spack/repos/builtin/packages/r-circstat/package.py @@ -0,0 +1,24 @@ +# Copyright 2013-2021 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 RCircstat(RPackage): + """Circular Statistics, from "Topics in Circular Statistics" (2001) + + Circular Statistics, from "Topics in Circular Statistics" (2001) S. + Rao Jammalamadaka and A. SenGupta, World Scientific.""" + + homepage = "https://cloud.r-project.org/web/packages/CircStats/index.html" + url = "https://cloud.r-project.org/src/contrib/CircStats_0.2-6.tar.gz" + list_url = "https://cloud.r-project.org/src/contrib/Archive/CircStats" + + maintainers = ['dorton21'] + + version('0.2-6', sha256='8efed93b75b314577341effea214e3dd6e0a515cfe1212eb051047a1f3276f1d') + + depends_on('r-mass', type=('build', 'run')) + depends_on('r-boot', type=('build', 'run')) |