summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-biobase/package.py
blob: 015522735cfb5b263d8933d37f51f0e92eac961b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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 RBiobase(RPackage):
    """Functions that are needed by many other packages
    or which replace R functions."""

    homepage = "https://www.bioconductor.org/packages/Biobase/"
    git      = "https://git.bioconductor.org/packages/Biobase.git"

    version('2.40.0', commit='6555edbbcb8a04185ef402bfdea7ed8ac72513a5')
    version('2.38.0', commit='83f89829e0278ac014b0bc6664e621ac147ba424')
    version('2.36.2', commit='15f50912f3fa08ccb15c33b7baebe6b8a59ce075')

    depends_on('r-biocgenerics@0.16.1:', type=('build', 'run'))
    depends_on('r@3.4.0:3.4.9', when='@2.36.2', type=('build', 'run'))
    depends_on('r@3.5.0:3.5.9', when='@2.40.0', type=('build', 'run'))