mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-15 03:11:22 +01:00
150 lines
5.5 KiB
Plaintext
150 lines
5.5 KiB
Plaintext
name = 'R'
|
|
version = '2.15.3'
|
|
|
|
homepage = 'http://www.r-project.org/'
|
|
description = """R is a free software environment for statistical computing and graphics."""
|
|
|
|
toolchain = {'name': 'goolf', 'version': '1.4.10'}
|
|
|
|
sources = [SOURCE_TAR_GZ]
|
|
source_urls = ['http://cran.us.r-project.org/src/base/R-%(version_major)s']
|
|
|
|
preconfigopts = 'BLAS_LIBS="$LIBBLAS" LAPACK_LIBS="$LIBLAPACK"'
|
|
configopts = "--with-lapack --with-blas --with-pic --enable-threads --with-x=no --enable-R-shlib"
|
|
# some recommended packages may fail in a parallel build (e.g. Matrix), and we're installing them anyway below
|
|
configopts += " --with-recommended-packages=no"
|
|
|
|
dependencies = [
|
|
('libreadline', '6.2'),
|
|
('ncurses', '5.9'),
|
|
('libpng', '1.6.2'), # for plotting in R
|
|
('Java', '1.7.0_15', '', True), # Java bindings are built if Java is found, might as well provide it
|
|
]
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/%s' % x for x in ['R', 'Rscript']] +
|
|
['lib64/R/include/%s' % x for x in ['Rconfig.h', 'Rdefines.h', 'Rembedded.h',
|
|
'R.h', 'Rinterface.h', 'Rinternals.h',
|
|
'Rmath.h', 'Rversion.h', 'S.h']] +
|
|
['lib64/R/modules/%s' % x for x in ['internet.%s' % SHLIB_EXT, 'lapack.%s' % SHLIB_EXT, 'vfonts.%s' % SHLIB_EXT]] +
|
|
['lib64/R/lib/libR.%s' % SHLIB_EXT],
|
|
'dirs': []
|
|
}
|
|
|
|
name_tmpl = '%(name)s_%(version)s.tar.gz'
|
|
ext_options = {
|
|
'source_urls': [
|
|
'http://cran.r-project.org/src/contrib/Archive/%(name)s', # package archive
|
|
'http://cran.freestatistics.org/src/contrib', # alternative for packages
|
|
],
|
|
'source_tmpl': name_tmpl,
|
|
}
|
|
# Bioconductor packages have a different download url
|
|
bioconductor_options = {
|
|
'source_urls': [
|
|
'http://www.bioconductor.org/packages/release/bioc/src/contrib/',
|
|
'http://www.bioconductor.org/packages/2.12/bioc/src/contrib/',
|
|
],
|
|
'source_tmpl': name_tmpl,
|
|
}
|
|
# !! order of packages is important !!
|
|
exts_list = [
|
|
# default libraries, only here to sanity check their presence
|
|
'base',
|
|
'datasets',
|
|
'graphics',
|
|
'grDevices',
|
|
'grid',
|
|
'methods',
|
|
'splines',
|
|
'stats',
|
|
'stats4',
|
|
'tools',
|
|
'utils',
|
|
# non-standard libraries, should be specified with fixed versions!
|
|
('Rmpi', '0.5-9', ext_options),
|
|
('irace', '1.03', ext_options),
|
|
('rJava', '0.9-4', ext_options),
|
|
('lattice', '0.20-15', ext_options),
|
|
('RColorBrewer', '1.0-5', ext_options),
|
|
('latticeExtra', '0.6-24', ext_options),
|
|
('Matrix', '1.0-12', ext_options),
|
|
('png', '0.1-4', ext_options),
|
|
('Rcpp', '0.10.3', ext_options),
|
|
('quadprog', '1.5-5', ext_options),
|
|
('BB', '2013.4-1', ext_options),
|
|
('rlecuyer', '0.3-3', ext_options),
|
|
('snow', '0.3-12', ext_options),
|
|
('MASS', '7.3-23', ext_options),
|
|
('class', '7.3-5', ext_options),
|
|
('e1071', '1.6-1', ext_options),
|
|
('nnet', '7.3-6', ext_options),
|
|
('car', '2.0-17', ext_options),
|
|
('colorspace', '1.2-2', ext_options),
|
|
('robustbase', '0.9-7', ext_options),
|
|
('sp', '0.9-91', ext_options),
|
|
('vcd', '1.2-13', ext_options),
|
|
('snowfall', '1.84-4', ext_options),
|
|
('logistf', '1.10', ext_options),
|
|
('Rserve', '0.6-1', ext_options),
|
|
('akima', '0.5-10', ext_options),
|
|
('bitops', '1.0-5', ext_options),
|
|
('boot', '1.3-7', ext_options),
|
|
('cluster', '1.14.4', ext_options),
|
|
('coda', '0.16-1', ext_options),
|
|
('codetools', '0.2-8', ext_options),
|
|
('DBI', '0.2-7', ext_options),
|
|
('foreign', '0.8-54', ext_options),
|
|
('nlme', '3.1-108', ext_options),
|
|
('survival', '2.37-4', ext_options),
|
|
('gam', '1.08', ext_options),
|
|
('gamlss.data', '4.2-0', ext_options),
|
|
('gamlss.dist', '4.2-0', ext_options),
|
|
('gamlss', '4.2-0', ext_options),
|
|
('gamlss.tr', '4.1-0', ext_options),
|
|
('hwriter', '1.3', ext_options),
|
|
('KernSmooth', '2.23-10', ext_options),
|
|
('zoo', '1.7-9', ext_options),
|
|
('lmtest', '0.9-31', ext_options),
|
|
('mgcv', '1.7-23', ext_options),
|
|
('mnormt', '1.4-5', ext_options),
|
|
('mvtnorm', '0.9-9994', ext_options),
|
|
('numDeriv', '2012.9-1', ext_options),
|
|
('pscl', '1.04.4', ext_options),
|
|
('rpart', '4.1-1', ext_options),
|
|
('RSQLite', '0.11.3', ext_options),
|
|
('sandwich', '2.2-10', ext_options),
|
|
('sfsmisc', '1.0-23', ext_options),
|
|
('spatial', '7.3-5', ext_options),
|
|
('VGAM', '0.9-1', ext_options),
|
|
('waveslim', '1.7.1', ext_options),
|
|
('xtable', '1.7-1', ext_options),
|
|
('profileModel', '0.5-8', ext_options),
|
|
('brglm', '0.5-7', ext_options),
|
|
('deSolve', '1.10-6', ext_options),
|
|
('odesolve', '0.9-9', ext_options),
|
|
('tseriesChaos', '0.1-11', ext_options),
|
|
('tseries', '0.10-32', ext_options),
|
|
('neuRosim', '0.2-10', ext_options),
|
|
('fastICA', '1.1-16', ext_options),
|
|
('R.methodsS3', '1.4.2', ext_options),
|
|
('R.oo', '1.13.0', ext_options),
|
|
('R.matlab', '1.7.0', ext_options),
|
|
('Rniftilib', '0.0-32', ext_options),
|
|
('BiocGenerics', '0.6.0', bioconductor_options),
|
|
('Biobase', '2.20.0', bioconductor_options),
|
|
('IRanges', '1.18.1', bioconductor_options),
|
|
('AnnotationDbi', '1.22.5', bioconductor_options),
|
|
('Biostrings', '2.28.0', bioconductor_options),
|
|
('GenomicRanges', '1.12.4', bioconductor_options),
|
|
('BSgenome', '1.28.0', bioconductor_options),
|
|
('zlibbioc', '1.6.0', bioconductor_options),
|
|
('Rsamtools', '1.12.3', bioconductor_options),
|
|
('ShortRead', '1.18.0', bioconductor_options),
|
|
('graph', '1.38.0', bioconductor_options),
|
|
('igraph0', '0.5.7', ext_options),
|
|
('gbm', '2.1', ext_options),
|
|
]
|
|
|
|
moduleclass = 'lang'
|