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.
|
2017-09-23 22:59:09 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-09-23 22:59:09 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class RBit(RPackage):
|
|
|
|
""" A class for vectors of 1-bit booleans."""
|
|
|
|
|
|
|
|
homepage = "https://cran.rstudio.com/web/packages/bit/index.html"
|
|
|
|
url = "https://cran.rstudio.com/src/contrib/bit_1.1-12.tar.gz"
|
2017-11-06 05:42:24 +08:00
|
|
|
list_url = "https://cran.r-project.org/src/contrib/Archive/bit"
|
2017-09-23 22:59:09 +08:00
|
|
|
version('1.1-12', 'c4473017beb93f151a8e672e4d5747af')
|