2018-10-08 04:52:23 +08:00
|
|
|
# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
|
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-08-01 03:40:46 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-08-01 03:40:46 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
2017-01-08 08:28:52 +08:00
|
|
|
class RCrayon(RPackage):
|
2016-08-01 03:40:46 +08:00
|
|
|
"""Colored terminal output on terminals that support 'ANSI' color and
|
|
|
|
highlight codes. It also works in 'Emacs' 'ESS'. 'ANSI' color support is
|
|
|
|
automatically detected. Colors and highlighting can be combined and nested.
|
|
|
|
New styles can also be created easily. This package was inspired by the
|
|
|
|
'chalk' 'JavaScript' project."""
|
|
|
|
|
2017-10-24 17:23:00 +08:00
|
|
|
homepage = "https://cran.r-project.org/package=sourcetools"
|
|
|
|
url = "https://cran.rstudio.com/src/contrib/crayon_1.3.4.tar.gz"
|
2017-11-06 05:42:24 +08:00
|
|
|
list_url = "https://cran.r-project.org/src/contrib/Archive/crayon"
|
2016-08-01 03:40:46 +08:00
|
|
|
|
2017-10-24 17:23:00 +08:00
|
|
|
version('1.3.4', '77c7c2906c59a3141306d86c89ffc7d3')
|
2016-08-01 03:40:46 +08:00
|
|
|
version('1.3.2', 'fe29c6204d2d6ff4c2f9d107a03d0cb9')
|