
- 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
21 lines
754 B
Python
21 lines
754 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 RNlme(RPackage):
|
|
"""Fit and compare Gaussian linear and nonlinear mixed-effects models."""
|
|
|
|
homepage = "https://cran.r-project.org/package=nlme"
|
|
url = "https://cran.r-project.org/src/contrib/nlme_3.1-130.tar.gz"
|
|
list_url = "https://cran.r-project.org/src/contrib/Archive/nlme"
|
|
|
|
version('3.1-131', '0f1215ec4d4e3bca939282d122f4d1fa')
|
|
version('3.1-130', '1935d6e308a8018ed8e45d25c8731288')
|
|
version('3.1-128', '3d75ae7380bf123761b95a073eb55008')
|
|
|
|
depends_on('r-lattice', type=('build', 'run'))
|