
- [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
22 lines
951 B
Python
22 lines
951 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 RTimedate(RPackage):
|
|
"""Environment for teaching "Financial Engineering and Computational
|
|
Finance". Managing chronological and calendar objects."""
|
|
|
|
homepage = "https://cloud.r-project.org/package=timeDate"
|
|
url = "https://cloud.r-project.org/src/contrib/timeDate_3012.100.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/timeDate"
|
|
|
|
version('3043.102', sha256='377cba03cddab8c6992e31d0683c1db3a73afa9834eee3e95b3b0723f02d7473')
|
|
version('3042.101', sha256='6c8d4c7689b31c6a43555d9c7258516556ba03b132e5643691e3e317b89a8c6d')
|
|
version('3012.100', sha256='6262ef7ca9f5eeb9db8229d6bb7a51d46d467a4fa73e2ccc5b4b78e18780c432')
|
|
|
|
depends_on('r@2.15.1:', type=('build', 'run'))
|