blob: 9f756f8917de122fadf9fc62eb2c7d67b3b2997b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# 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 RFormula(RPackage):
"""Infrastructure for extended formulas with multiple parts on the right-hand
side and/or multiple responses on the left-hand side."""
homepage = "https://cran.r-project.org/package=Formula"
url = "https://cran.rstudio.com/src/contrib/Formula_1.2-2.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/Formula"
version('1.2-2', 'c69bb0522811cf8eb9f1cc6c3d182b6e')
version('1.2-1', '2afb31e637cecd0c1106317aca1e4849')
|