
- [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
752 B
Python
21 lines
752 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 RXopen(RPackage):
|
|
"""Cross platform solution to open files, directories or 'URLs' with their
|
|
associated programs."""
|
|
|
|
homepage = "https://github.com/r-lib/xopen#readme"
|
|
url = "https://cloud.r-project.org/src/contrib/xopen_1.0.0.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/xopen"
|
|
|
|
version('1.0.0', sha256='e207603844d69c226142be95281ba2f4a056b9d8cbfae7791ba60535637b3bef')
|
|
|
|
depends_on('r@3.1:', type=('build', 'run'))
|
|
depends_on('r-processx', type=('build', 'run'))
|