
- remove the old LGPL license headers from all files in Spack - add SPDX headers to all files - core and most packages are (Apache-2.0 OR MIT) - a very small number of remaining packages are LGPL-2.1-only
24 lines
900 B
Python
24 lines
900 B
Python
# 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'))
|