24 lines
1.1 KiB
Python
24 lines
1.1 KiB
Python
# 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 RFansi(RPackage):
|
|
"""Counterparts to R string manipulation functions that account
|
|
for the effects of ANSI text formatting control sequences."""
|
|
|
|
homepage = "https://cloud.r-project.org/package=fansi"
|
|
url = "https://cloud.r-project.org/src/contrib/fansi_0.4.0.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/fansi"
|
|
|
|
version('0.4.0', sha256='e104e9d01c7ff8a847f6b332ef544c0ef912859f9c6a514fe2e6f3b34fcfc209')
|
|
version('0.3.0', sha256='dd6401d5c91ff4c45d752cceddd5379d1ae39a8a1196f236b0bc0ec6d691b88c')
|
|
version('0.2.3', sha256='db6dfef8bfe6682d58b654b6a6a1d59cb07225ca41755176b465ab8611fd96c9')
|
|
version('0.2.2', sha256='71dfdda467985a4d630ecf93d4bc60446a8a78d69dbd7ac24cc45822329d4bce')
|
|
version('0.2.1', sha256='abe709d69ddd6610aaa24e049c7a97c16a2c2dbe0873d4e3b8af57e486ef05c5')
|
|
|
|
depends_on('r@3.1.0:', type=('build', 'run'))
|