summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-snow/package.py
blob: 73bdd4bcf5531603c0539d1ffef6e3b269b3d9e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright 2013-2018 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 RSnow(RPackage):
    """Support for simple parallel computing in R."""

    homepage = "https://cran.r-project.org/web/packages/snow/index.html"
    url      = "https://cran.r-project.org/src/contrib/snow_0.4-2.tar.gz"
    list_url = "https://cran.r-project.org/src/contrib/Archive/snow"

    version('0.4-2', 'afc7b0dfd4518aedb6fc81712fd2ac70')

    depends_on('r-rmpi', type='run')
    depends_on('r@2.13.1:', type=('build', 'run'))