
- 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
19 lines
703 B
Python
19 lines
703 B
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 RMass(RPackage):
|
|
"""Functions and datasets to support Venables and Ripley, "Modern Applied
|
|
Statistics with S" (4th edition, 2002)."""
|
|
|
|
homepage = "https://cran.r-project.org/web/packages/MASS/index.html"
|
|
url = "https://cran.r-project.org/src/contrib/MASS_7.3-47.tar.gz"
|
|
list_url = "https://cran.r-project.org/src/contrib/Archive/MASS"
|
|
|
|
version('7.3-47', '2ef69aa9e25c0a445661a9877e117594')
|
|
version('7.3-45', 'aba3d12fab30f1793bee168a1efea88b')
|