# Copyright 2013-2020 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 RHighr(RPackage): """Provides syntax highlighting for R source code. Currently it supports LaTeX and HTML output. Source code of other languages is supported via Andre Simon's highlight package.""" homepage = "https://github.com/yihui/highr" url = "https://cloud.r-project.org/src/contrib/highr_0.6.tar.gz" list_url = "https://cloud.r-project.org/src/contrib/Archive/highr" version('0.8', sha256='4bd01fba995f68c947a99bdf9aca15327a5320151e10bd0326fad50a6d8bc657') version('0.7', sha256='cabba5b6f2ea82024a49c5ced5f1aa476f864bc52bc129038e319e4e26b6f3b7') version('0.6', sha256='43e152b2dea596df6e14c44398c74fcd438ece15eaae5bdb84aef8d61b213b59') depends_on('r@3.0.2:', when='@:0.7', type=('build', 'run')) depends_on('r@3.2.3:', when='@0.8:', type=('build', 'run'))