spack/var/spack/repos/builtin/packages/r-forecast/package.py
Todd Gamblin eea786f4e8 relicense: replace LGPL headers with Apache-2.0/MIT SPDX headers
- remove the old LGPL license headers from all files in Spack
- add SPDX headers to all files
  - core and most packages are (Apache-2.0 OR MIT)
  - a very small number of remaining packages are LGPL-2.1-only
2018-10-17 14:42:06 -07:00

31 lines
1.2 KiB
Python

# Copyright 2013-2018 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 RForecast(RPackage):
"""Methods and tools for displaying and analysing univariate time
series forecasts including exponential smoothing via state space
models and automatic ARIMA modelling."""
homepage = "https://cran.r-project.org/package=forecast"
url = "https://cran.r-project.org/src/contrib/forecast_8.2.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/forecast"
version('8.2', '3ef095258984364c100b771b3c90d15e')
depends_on('r-magrittr', type=('build', 'run'))
depends_on('r-ggplot2', type=('build', 'run'))
depends_on('r-colorspace', type=('build', 'run'))
depends_on('r-nnet', type=('build', 'run'))
depends_on('r-rcpp', type=('build', 'run'))
depends_on('r-fracdiff', type=('build', 'run'))
depends_on('r-tseries', type=('build', 'run'))
depends_on('r-lmtest', type=('build', 'run'))
depends_on('r-zoo', type=('build', 'run'))
depends_on('r-timedate', type=('build', 'run'))
depends_on('r-rcpparmadillo', type=('build', 'run'))