
- [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
24 lines
907 B
Python
24 lines
907 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 RUpsetr(RPackage):
|
|
"""UpSetR: A More Scalable Alternative to Venn and Euler Diagrams
|
|
forVisualizing Intersecting Sets"""
|
|
|
|
homepage = "http://github.com/hms-dbmi/UpSetR"
|
|
url = "https://cloud.r-project.org/src/contrib/UpSetR_1.4.0.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/UpSetR"
|
|
|
|
version('1.4.0', sha256='351e5fee64204cf77fd378cf2a2c0456cc19d4d98a2fd5f3dac74b69a505f100')
|
|
|
|
depends_on('r@3.0:', type=('build', 'run'))
|
|
depends_on('r-ggplot2', type=('build', 'run'))
|
|
depends_on('r-gridextra', type=('build', 'run'))
|
|
depends_on('r-plyr', type=('build', 'run'))
|
|
depends_on('r-scales', type=('build', 'run'))
|