
This patch adds license information for about 5,300 packages from automated sources. The license information was obtained from Alpine Linux and PyPI and processed using tooling available in https://github.com/boomanaiden154/spack-license-utils. The license field was added in after all other directives in an automated fashion. Note that while this license information is probably fairly accurate, it is not guaranteed to be accurate. In addition some of the license strings from Alpine Linux might not be valid SPDX license strings. Invalid SPDX identifiers can be picked up and fixed once we have validation/parsing infrastructure in place for the solver, and issues can be fixed as they come up.
31 lines
1.3 KiB
Python
31 lines
1.3 KiB
Python
# Copyright 2013-2023 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.package import *
|
|
|
|
|
|
class ROpenxlsx(RPackage):
|
|
"""Read, Write and Edit xlsx Files.
|
|
|
|
Simplifies the creation of Excel .xlsx files by providing a high level
|
|
interface to writing, styling and editing worksheets. Through the use of
|
|
'Rcpp', read/write times are comparable to the 'xlsx' and 'XLConnect'
|
|
packages with the added benefit of removing the dependency on Java."""
|
|
|
|
cran = "openxlsx"
|
|
|
|
license("MIT")
|
|
|
|
version("4.2.5.2", sha256="ee7089e7e5832ef22ee0d0eebf7cca5096ce23afb2bcdb58700be62526fc9b67")
|
|
version("4.2.5.1", sha256="64d224380809d8d19788b02daf9d6dae45262594b81f5e013d37d34daf0945c8")
|
|
version("4.2.5", sha256="65d06d2819b656ac30fc78437ee712a83fb5a7ab750f56268e5c9e578c582519")
|
|
version("4.2.3", sha256="cdef89d826e50bef772af3e5eae935ca0316626a6e22f55f7631eac733b5e46f")
|
|
version("4.1.0.1", sha256="8b7011debe14714de035ef42797c8caa923162d5dc3cc3c2a299fc10eff3d4d1")
|
|
|
|
depends_on("r@3.3.0:", type=("build", "run"))
|
|
depends_on("r-stringi", type=("build", "run"), when="@4.2.3:")
|
|
depends_on("r-zip", type=("build", "run"))
|
|
depends_on("r-rcpp", type=("build", "run"))
|