
- 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
756 B
Python
21 lines
756 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 RE1071(RPackage):
|
|
"""Functions for latent class analysis, short time Fourier transform, fuzzy
|
|
clustering, support vector machines, shortest path computation, bagged
|
|
clustering, naive Bayes classifier, ..."""
|
|
|
|
homepage = "https://cran.r-project.org/package=e1071"
|
|
url = "https://cran.r-project.org/src/contrib/e1071_1.6-7.tar.gz"
|
|
list_url = "https://cran.rstudio.com/src/contrib/Archive/e1071"
|
|
|
|
version('1.6-7', 'd109a7e3dd0c905d420e327a9a921f5a')
|
|
|
|
depends_on('r-class', type=('build', 'run'))
|