2018-10-08 04:52:23 +08:00
|
|
|
# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
|
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-07-31 05:09:57 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-07-31 05:09:57 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
2017-01-31 22:54:34 +08:00
|
|
|
class RKernsmooth(RPackage):
|
|
|
|
"""Functions for kernel smoothing (and density estimation)."""
|
2016-07-31 05:09:57 +08:00
|
|
|
|
2017-01-31 22:54:34 +08:00
|
|
|
homepage = "https://cran.r-project.org/package=KernSmooth"
|
|
|
|
url = "https://cran.r-project.org/src/contrib/KernSmooth_2.23-15.tar.gz"
|
2017-11-06 05:42:24 +08:00
|
|
|
list_url = "https://cran.r-project.org/src/contrib/Archive/KernSmooth"
|
2016-07-31 05:09:57 +08:00
|
|
|
|
2017-01-31 22:54:34 +08:00
|
|
|
version('2.23-15', '746cdf26dec72004cf19978e87dcc982')
|
2016-07-31 05:09:57 +08:00
|
|
|
|
2017-01-31 22:54:34 +08:00
|
|
|
depends_on('r@2.5.0:')
|