spack/var/spack/repos/builtin/packages/r-rbokeh/package.py
Todd Gamblin 62927654dd checksums: use sha256 checksums everywhere
We'd like to use a consistent checksum scheme everywhere so that we can:

    a) incorporate archive checksums into our specs and have a
       consistent hashing algorithm across all specs.

    b) index mirrors with a consistent type of checksum, and not one that
       is dependent on how spack packages are written.

- [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
2019-10-12 07:19:43 -07:00

31 lines
1.2 KiB
Python

# Copyright 2013-2019 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 RRbokeh(RPackage):
"""R interface for creating plots in Bokeh. Bokeh by Continuum
Analytics."""
homepage = "https://hafen.github.io/rbokeh"
url = "https://cloud.r-project.org/src/contrib/rbokeh_0.5.0.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/rbokeh"
version('0.5.0', sha256='499c3224a7dcaeb4bb60fd645b3ef528a20e59437747a073713941b80cbcebd2')
depends_on('r-htmlwidgets@0.5:', type=('build', 'run'))
depends_on('r-maps', type=('build', 'run'))
depends_on('r-jsonlite', type=('build', 'run'))
depends_on('r-digest', type=('build', 'run'))
depends_on('r-hexbin', type=('build', 'run'))
depends_on('r-lazyeval', type=('build', 'run'))
depends_on('r-pryr', type=('build', 'run'))
depends_on('r-magrittr', type=('build', 'run'))
depends_on('r-ggplot2', type=('build', 'run'))
depends_on('r-scales', type=('build', 'run'))
depends_on('r-gistr', type=('build', 'run'))