
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
27 lines
1.2 KiB
Python
27 lines
1.2 KiB
Python
# Copyright 2013-2021 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 RFormatr(RPackage):
|
|
"""Provides a function tidy_source() to format R source code. Spaces and
|
|
indent will be added to the code automatically, and comments will be
|
|
preserved under certain conditions, so that R code will be more
|
|
human-readable and tidy. There is also a Shiny app as a user interface in
|
|
this package."""
|
|
|
|
homepage = "https://cloud.r-project.org/package=formatR"
|
|
url = "https://cloud.r-project.org/src/contrib/formatR_1.5.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/formatR"
|
|
|
|
version('1.7', sha256='a366621b3ff5f8e86a499b6f87858ad47eefdace138341b1377ecc307a5e5ddb')
|
|
version('1.6', sha256='f5c98f0c3506ca51599671a2cdbc17738d0f326e8e3bb18b7a38e9f172122229')
|
|
version('1.5', sha256='874c197ae3720ec11b44984a055655b99a698e1912104eb9034c11fdf6104da7')
|
|
version('1.4', sha256='6ec47a7b1f18efb5fd7559b81427363b66415d81cded9d5e7e2907e900b67ebb')
|
|
|
|
depends_on('r@3.0.2:', type=('build', 'run'))
|