add version 1.3-2 to r-matrix (#21090)
This commit is contained in:
parent
8abe261359
commit
1b281948e4
1 changed files with 9 additions and 3 deletions
|
@ -7,19 +7,25 @@
|
|||
|
||||
|
||||
class RMatrix(RPackage):
|
||||
"""Classes and methods for dense and sparse matrices and operations on them
|
||||
using 'LAPACK' and 'SuiteSparse'."""
|
||||
"""Sparse and Dense Matrix Classes and Methods
|
||||
|
||||
A rich hierarchy of matrix classes, including triangular, symmetric, and
|
||||
diagonal matrices, both dense and sparse and with pattern, logical and
|
||||
numeric entries. Numerous methods for and operations on these matrices,
|
||||
using 'LAPACK' and 'SuiteSparse' libraries."""
|
||||
|
||||
homepage = "http://matrix.r-forge.r-project.org/"
|
||||
url = "https://cloud.r-project.org/src/contrib/Matrix_1.2-14.tar.gz"
|
||||
list_url = "https://cloud.r-project.org/src/contrib/Archive/Matrix"
|
||||
|
||||
version('1.3-2', sha256='950ba5d91018e711fd2743b3486a50dc47ae9c271389fce587792f0a9aab9531')
|
||||
version('1.2-17', sha256='db43e6f0196fd5dfd05a7e88cac193877352c60d771d4ec8772763e645723fcc')
|
||||
version('1.2-14', sha256='49a6403547b66675cb44c1afb04bb87130c054510cb2b94971435a826ab41396')
|
||||
version('1.2-11', sha256='ba8cd6565612552fe397e909721817b6cc0604a91299d56d118208006888dc0b')
|
||||
version('1.2-8', sha256='3cd2a187c45fc18a0766dc148b7f83dbf6f2163c256e887c41cbaa7c9a20dbb7')
|
||||
version('1.2-6', sha256='4b49b639b7bf612fa3d1c1b1c68125ec7859c8cdadae0c13f499f24099fd5f20')
|
||||
|
||||
depends_on('r@3.0.1:', when='@:1.2-12', type=('build', 'run'))
|
||||
depends_on('r@3.0.1:', type=('build', 'run'))
|
||||
depends_on('r@3.2.0:', when='@1.2.13:', type=('build', 'run'))
|
||||
depends_on('r@3.6.0:', when='@1.3-2:', type=('build', 'run'))
|
||||
depends_on('r-lattice', type=('build', 'run'))
|
||||
|
|
Loading…
Reference in a new issue