
- [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
21 lines
875 B
Python
21 lines
875 B
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 RSourcetools(RPackage):
|
|
"""Tools for Reading, Tokenizing and Parsing R Code."""
|
|
|
|
homepage = "https://cloud.r-project.org/package=sourcetools"
|
|
url = "https://cloud.r-project.org/src/contrib/sourcetools_0.1.6.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/sourcetools"
|
|
|
|
version('0.1.7', sha256='47984406efb3b3face133979ccbae9fefb7360b9a6ca1a1c11473681418ed2ca')
|
|
version('0.1.6', sha256='c9f48d2f0b7f7ed0e7fecdf8e730b0b80c4d567f0e1e880d118b0944b1330c51')
|
|
version('0.1.5', sha256='c2373357ad76eaa7d03f9f01c19b5001a3e4db788acbca068b0abbe7a99ea64b')
|
|
|
|
depends_on('r@3.0.2:', type=('build', 'run'))
|