
- [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
20 lines
727 B
Python
20 lines
727 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 RBase64enc(RPackage):
|
|
"""This package provides tools for handling base64 encoding. It is more
|
|
flexible than the orphaned base64 package."""
|
|
|
|
homepage = "http://www.rforge.net/base64enc"
|
|
url = "https://cloud.r-project.org/src/contrib/base64enc_0.1-3.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/base64enc"
|
|
|
|
version('0.1-3', sha256='6d856d8a364bcdc499a0bf38bfd283b7c743d08f0b288174fba7dbf0a04b688d')
|
|
|
|
depends_on('r@2.9.0:', type=('build', 'run'))
|