New package: r-spatialreg (starting at 1.1-3) (#11886)

This commit is contained in:
Justin S 2019-07-01 20:13:06 -05:00 committed by Peter Scheibel
parent a7cd7fdcd4
commit 196886e708

View File

@ -0,0 +1,28 @@
# Copyright 2013-2019 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 RSpatialreg(RPackage):
"""spatialreg: Spatial Regression Analysis"""
homepage = "https://cran.r-project.org/package=spatialreg"
url = "https://cran.r-project.org/src/contrib/spatialreg_1.1-3.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/spatialreg"
version('1.1-3', sha256='7609cdfcdfe427d2643a0db6b5360be3f6d60ede8229436ab52092d1c9cf0480')
depends_on('r@3.3.0:', type=('build', 'run'))
depends_on('r-boot', type=('build', 'run'))
depends_on('r-coda', type=('build', 'run'))
depends_on('r-expm', type=('build', 'run'))
depends_on('r-gmodels', type=('build', 'run'))
depends_on('r-learnbayes', type=('build', 'run'))
depends_on('r-mass', type=('build', 'run'))
depends_on('r-matrix', type=('build', 'run'))
depends_on('r-nlme', type=('build', 'run'))
depends_on('r-spdata', type=('build', 'run'))
depends_on('r-spdep', type=('build', 'run'))