R-3.4.1-intel-2018.eb 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655
  1. name = 'R'
  2. version = '3.4.1'
  3. homepage = 'http://www.r-project.org/'
  4. description = """R is a free software environment for statistical computing and graphics."""
  5. toolchain = {'name': 'intel', 'version': '2018'}
  6. sources = [SOURCE_TAR_GZ]
  7. source_urls = ['http://cran.us.r-project.org/src/base/R-%(version_major)s']
  8. preconfigopts = 'BLAS_LIBS="$LIBBLAS" LAPACK_LIBS="$LIBLAPACK"'
  9. configopts = "--with-lapack --with-blas --with-pic --enable-threads --with-x=yes --enable-R-shlib"
  10. # Actually use Tcl/Tk
  11. configopts += ' --with-tcl-config=$EBROOTTCL/lib/tclConfig.sh --with-tk-config=$EBROOTTK/lib/tkConfig.sh '
  12. # Enable graphics capabilities for plotting.
  13. configopts += " --with-cairo --with-libpng --with-jpeglib --with-libtiff"
  14. # some recommended packages may fail in a parallel build (e.g. Matrix), and we're installing them anyway below
  15. configopts += " --with-recommended-packages=no"
  16. dependencies = [
  17. ('X11', '20170805'),
  18. ('Mesa', '17.0.2'),
  19. ('libGLU', '9.0.0'),
  20. ('cairo', '1.14.8'),
  21. ('libreadline', '7.0'),
  22. ('ncurses', '6.0'),
  23. ('bzip2', '1.0.6'),
  24. ('XZ', '5.2.3'),
  25. ('zlib', '1.2.11'),
  26. ('SQLite', '3.20.1'),
  27. ('PCRE', '8.40'),
  28. ('libpng', '1.6.32'), # for plotting in R
  29. ('libjpeg-turbo', '1.5.1'), # for plottting in R
  30. ('LibTIFF', '4.0.7'),
  31. #('Java', '1.8.0_141', '', True), # Java bindings are built if Java is found, might as well provide it
  32. ('Tcl', '8.6.7'), # for tcltk
  33. ('Tk', '8.6.7'), # for tcltk
  34. ('cURL', '7.55.1'), # for RCurl
  35. ('libxml2', '2.9.4'), # for XML
  36. ('PROJ', '4.9.3'), # for rgdal
  37. ('GMP', '6.1.2'), # for igraph
  38. ('NLopt', '2.4.2'), # for nloptr
  39. ('FFTW', '3.3.4'), # for fftw
  40. ('libsndfile', '1.0.28'), # for seewave
  41. ('JAGS', '4.2.0'), # for rjags
  42. ('HDF5', '1.8.18'),
  43. ('netCDF', '4.4.1.1'),
  44. ('netCDF-Fortran', '4.4.4'),
  45. ('GDAL', '2.2.0'),
  46. ('GEOS', '3.6.1'),
  47. # OS dependency should be preferred if the os version is more recent then this version,
  48. # it's nice to have an up to date openssl for security reasons
  49. ('OpenSSL', '1.1.0e'),
  50. ]
  51. #osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
  52. name_tmpl = '%(name)s_%(version)s.tar.gz'
  53. ext_options = {
  54. 'source_urls': [
  55. 'http://cran.r-project.org/src/contrib/Archive/%(name)s', # package archive
  56. 'http://cran.r-project.org/src/contrib/', # current version of packages
  57. 'http://cran.freestatistics.org/src/contrib', # mirror alternative for current packages
  58. ],
  59. 'source_tmpl': name_tmpl,
  60. }
  61. # !! order of packages is important !!
  62. # packages updated on August 24th 2017
  63. exts_list = [
  64. # default libraries, only here to sanity check their presence
  65. 'base',
  66. 'compiler',
  67. 'datasets',
  68. 'graphics',
  69. 'grDevices',
  70. 'grid',
  71. 'methods',
  72. 'splines',
  73. 'stats',
  74. 'stats4',
  75. 'tools',
  76. 'utils',
  77. # non-standard libraries, should be specified with fixed versions!
  78. ('perm', '1.0-0.0', ext_options),
  79. ('Rmpi', '0.6-6', ext_options),
  80. ('abind', '1.4-5', ext_options),
  81. ('magic', '1.5-6', ext_options),
  82. ('geometry', '0.3-6', dict(ext_options.items() + [('patches', ['geometry-0.3-4-icc.patch'])])),
  83. ('bit', '1.1-12', ext_options),
  84. ('filehash', '2.4-1', ext_options),
  85. ('ff', '2.2-13', ext_options),
  86. ('bnlearn', '4.2', ext_options),
  87. ('bootstrap', '2017.2', ext_options),
  88. ('combinat', '0.0-8', ext_options),
  89. ('deal', '1.2-37', ext_options),
  90. ('fdrtool', '1.2.15', ext_options),
  91. ('formatR', '1.5', ext_options),
  92. ('gtools', '3.5.0', ext_options),
  93. ('gdata', '2.18.0', ext_options),
  94. ('GSA', '1.03', ext_options),
  95. ('highr', '0.6', ext_options),
  96. ('infotheo', '1.2.0', ext_options),
  97. ('lars', '1.2', ext_options),
  98. ('lazy', '1.2-15', ext_options),
  99. ('kernlab', '0.9-25', ext_options),
  100. ('mime', '0.5', ext_options),
  101. ('markdown', '0.8', ext_options),
  102. ('mlbench', '2.1-1', ext_options),
  103. ('NLP', '0.1-11', ext_options),
  104. ('mclust', '5.3', ext_options),
  105. ('RANN', '2.5.1', ext_options),
  106. ('rmeta', '2.16', ext_options),
  107. ('segmented', '0.5-2.1', ext_options),
  108. ('som', '0.3-5.1', ext_options),
  109. ('SuppDists', '1.1-9.4', ext_options),
  110. ('stabledist', '0.7-1', ext_options),
  111. ('survivalROC', '1.0.3', ext_options),
  112. ('pspline', '1.0-18', ext_options),
  113. ('timeDate', '3012.100', ext_options),
  114. ('longmemo', '1.0-0', ext_options),
  115. ('ADGofTest', '0.3', ext_options),
  116. ('ade4', '1.7-8', ext_options),
  117. ('AlgDesign', '1.1-7.3', ext_options),
  118. ('base64enc', '0.1-3', ext_options),
  119. ('BH', '1.62.0-1', ext_options),
  120. ('brew', '1.0-6', ext_options),
  121. ('Brobdingnag', '1.2-4', ext_options),
  122. ('corpcor', '1.6.9', ext_options),
  123. ('longitudinal', '1.1.12', ext_options),
  124. ('backports', '1.1.0', ext_options),
  125. ('checkmate', '1.8.3', ext_options),
  126. ('Rcpp', '0.12.12', ext_options),
  127. ('cubature', '1.3-11', ext_options),
  128. ('DEoptimR', '1.0-8', ext_options),
  129. ('digest', '0.6.12', ext_options),
  130. ('fastmatch', '1.1-0', ext_options),
  131. ('ffbase', '0.12.3', ext_options),
  132. ('iterators', '1.0.8', ext_options),
  133. ('maps', '3.2.0', ext_options),
  134. ('nnls', '1.4', ext_options),
  135. ('sendmailR', '1.2-1', ext_options),
  136. ('dotCall64', '0.9-04', ext_options),
  137. ('spam', '2.1-1', ext_options),
  138. ('subplex', '1.4-1', ext_options),
  139. ('stringi', '1.1.5', ext_options),
  140. ('magrittr', '1.5', ext_options),
  141. ('stringr', '1.2.0', ext_options),
  142. ('evaluate', '0.10.1', ext_options),
  143. ('logspline', '2.1.9', ext_options),
  144. ('ncbit', '2013.03.29', ext_options),
  145. ('permute', '0.9-4', ext_options),
  146. ('plotrix', '3.6-6', ext_options),
  147. ('randomForest', '4.6-12', ext_options),
  148. ('scatterplot3d', '0.3-40', ext_options),
  149. ('SparseM', '1.77', ext_options),
  150. ('tripack', '1.3-8', ext_options),
  151. ('irace', '2.4', ext_options),
  152. #('rJava', '0.9-8', ext_options),
  153. ('lattice', '0.20-35', ext_options),
  154. ('RColorBrewer', '1.1-2', ext_options),
  155. ('latticeExtra', '0.6-28', ext_options),
  156. ('Matrix', '1.2-11', ext_options),
  157. ('png', '0.1-7', ext_options),
  158. ('RUnit', '0.4.31', ext_options),
  159. ('RcppArmadillo', '0.7.960.1.1', ext_options),
  160. ('plyr', '1.8.4', ext_options),
  161. ('quadprog', '1.5-5', ext_options),
  162. ('BB', '2014.10-1', ext_options),
  163. ('BBmisc', '1.11', ext_options),
  164. ('fail', '1.3', ext_options),
  165. ('rlecuyer', '0.3-4', ext_options),
  166. ('snow', '0.4-2', ext_options),
  167. ('MASS', '7.3-47', ext_options),
  168. ('tree', '1.0-37', ext_options),
  169. ('pls', '2.6-0', ext_options),
  170. ('class', '7.3-14', ext_options),
  171. ('e1071', '1.6-8', ext_options),
  172. ('nnet', '7.3-12', ext_options),
  173. ('nlme', '3.1-131', ext_options),
  174. ('minqa', '1.2.4', ext_options),
  175. ('RcppEigen', '0.3.3.3.0', ext_options),
  176. ('RcppParallel', '4.3.20', ext_options),
  177. ('MatrixModels', '0.4-1', ext_options),
  178. ('quantreg', '5.33', ext_options),
  179. ('mgcv', '1.8-18', ext_options),
  180. ('colorspace', '1.3-2', ext_options),
  181. ('robustbase', '0.92-7', ext_options),
  182. ('sp', '1.2-5', ext_options),
  183. ('zoo', '1.8-0', ext_options),
  184. ('lmtest', '0.9-35', ext_options),
  185. ('vcd', '1.4-3', ext_options),
  186. ('snowfall', '1.84-6.1', ext_options),
  187. ('rpart', '4.1-11', ext_options),
  188. ('survival', '2.41-3', ext_options),
  189. ('mice', '2.30', ext_options),
  190. ('urca', '1.3-0', ext_options),
  191. ('fracdiff', '1.4-2', ext_options),
  192. ('logistf', '1.22', ext_options),
  193. ('akima', '0.6-2', ext_options),
  194. ('bitops', '1.0-6', ext_options),
  195. ('boot', '1.3-20', ext_options),
  196. ('mixtools', '1.1.0', ext_options),
  197. ('cluster', '2.0.6', ext_options),
  198. ('gclus', '1.3.1', ext_options),
  199. ('coda', '0.19-1', ext_options),
  200. ('codetools', '0.2-15', ext_options),
  201. ('foreach', '1.4.3', ext_options),
  202. ('doMC', '1.3.4', ext_options),
  203. ('DBI', '0.7', ext_options),
  204. ('foreign', '0.8-69', ext_options),
  205. ('gam', '1.14-4', ext_options),
  206. ('gamlss.data', '5.0-0', ext_options),
  207. ('gamlss.dist', '5.0-2', ext_options),
  208. ('hwriter', '1.3.2', ext_options),
  209. ('KernSmooth', '2.23-15', ext_options),
  210. ('xts', '0.10-0', ext_options),
  211. ('curl', '2.8.1', ext_options),
  212. ('TTR', '0.23-2', ext_options),
  213. ('quantmod', '0.4-10', ext_options),
  214. ('mnormt', '1.5-5', ext_options),
  215. ('mvtnorm', '1.0-6', ext_options),
  216. ('pcaPP', '1.9-72', ext_options),
  217. ('numDeriv', '2016.8-1', ext_options),
  218. ('lava', '1.5', ext_options),
  219. ('prodlim', '1.6.1', ext_options),
  220. ('pscl', '1.4.9', ext_options),
  221. ('memoise', '1.1.0', ext_options),
  222. ('plogr', '0.1-1', ext_options),
  223. ('rlang', '0.1.2', ext_options),
  224. ('tibble', '1.3.4', ext_options),
  225. ('bit64', '0.9-7', ext_options),
  226. ('blob', '1.1.0', ext_options),
  227. ('pkgconfig', '2.0.1', ext_options),
  228. ('RSQLite', '1.1-2', ext_options),
  229. ('BatchJobs', '1.6', ext_options),
  230. ('sandwich', '2.4-0', ext_options),
  231. ('sfsmisc', '1.1-1', ext_options),
  232. ('spatial', '7.3-11', ext_options),
  233. ('VGAM', '1.0-4', ext_options),
  234. ('waveslim', '1.7.5', ext_options),
  235. ('xtable', '1.8-2', ext_options),
  236. ('profileModel', '0.5-9', ext_options),
  237. ('brglm', '0.6.1', ext_options),
  238. ('deSolve', '1.20', ext_options),
  239. ('tseriesChaos', '0.1-13', ext_options),
  240. ('tseries', '0.10-42', ext_options),
  241. ('fastICA', '1.2-1', ext_options),
  242. ('R.methodsS3', '1.7.1', ext_options),
  243. ('R.oo', '1.21.0', ext_options),
  244. ('cgdsr', '1.2.6', ext_options),
  245. ('R.utils', '2.5.0', ext_options),
  246. ('R.matlab', '3.6.1', ext_options),
  247. ('gbm', '2.1.3', ext_options),
  248. ('dichromat', '2.0-0', ext_options),
  249. ('Formula', '1.2-2', ext_options),
  250. ('acepack', '1.4.1', ext_options),
  251. ('reshape2', '1.4.2', ext_options),
  252. ('gtable', '0.2.0', ext_options),
  253. ('munsell', '0.4.3', ext_options),
  254. ('labeling', '0.3', ext_options),
  255. ('scales', '0.4.1', ext_options),
  256. ('proto', '1.0.0', ext_options),
  257. ('lazyeval', '0.2.0', ext_options),
  258. ('assertthat', '0.2.0', ext_options),
  259. ('ggplot2', '2.2.1', ext_options),
  260. ('pROC', '1.10.0', ext_options),
  261. ('gridExtra', '2.2.1', ext_options),
  262. ('chron', '2.3-50', ext_options),
  263. ('data.table', '1.10.4', ext_options),
  264. ('viridisLite', '0.2.0', ext_options),
  265. ('viridis', '0.4.0', ext_options),
  266. ('yaml', '2.1.14', ext_options),
  267. ('jsonlite', '1.5', ext_options),
  268. ('htmltools', '0.3.6', ext_options),
  269. ('htmlwidgets', '0.9', ext_options),
  270. ('knitr', '1.17', ext_options),
  271. ('htmlTable', '1.9', ext_options),
  272. ('Hmisc', '4.0-3', ext_options),
  273. ('fastcluster', '1.1.24', ext_options),
  274. ('registry', '0.3', ext_options),
  275. ('pkgmaker', '0.22', ext_options),
  276. ('rngtools', '1.2.4', ext_options),
  277. ('doParallel', '1.0.10', ext_options),
  278. ('gridBase', '0.4-7', ext_options),
  279. ('NMF', '0.20.6', ext_options),
  280. ('irlba', '2.2.1', ext_options),
  281. ('igraph', '1.1.2', ext_options),
  282. ('GeneNet', '1.2.13', ext_options),
  283. ('ape', '4.1', ext_options),
  284. ('RJSONIO', '1.3-0', ext_options),
  285. ('caTools', '1.17.1', ext_options),
  286. ('gplots', '3.0.1', ext_options),
  287. ('ROCR', '1.0-7', ext_options),
  288. ('httpuv', '1.3.5', ext_options),
  289. ('R6', '2.2.2', ext_options),
  290. ('rjson', '0.2.15', ext_options),
  291. ('sourcetools', '0.1.6', ext_options),
  292. ('shiny', '1.0.4', ext_options),
  293. ('seqinr', '3.4-5', ext_options),
  294. ('LearnBayes', '2.15', ext_options),
  295. ('deldir', '0.1-14', ext_options),
  296. ('gmodels', '2.16.2', ext_options),
  297. ('expm', '0.999-2', ext_options),
  298. ('spdep', '0.6-13', ext_options),
  299. ('dplyr', '0.5.0', ext_options),
  300. ('vegan', '2.4-3', ext_options),
  301. ('adegenet', '2.0.1', ext_options),
  302. ('prettyunits', '1.0.2', ext_options),
  303. ('progress', '1.1.2', ext_options),
  304. ('rncl', '0.8.2', ext_options),
  305. ('XML', '3.98-1.9', ext_options),
  306. ('crayon', '1.3.2', ext_options),
  307. ('praise', '1.0.0', ext_options),
  308. ('testthat', '1.0.2', ext_options),
  309. ('rprojroot', '1.2', ext_options),
  310. ('rmarkdown', '1.6', ext_options),
  311. ('openssl', '0.9.6', ext_options),
  312. ('httr', '1.3.1', ext_options),
  313. ('reshape', '0.8.7', ext_options),
  314. ('xml2', '1.1.1', ext_options),
  315. ('triebeard', '0.3.0', ext_options),
  316. ('urltools', '1.6.0', ext_options),
  317. ('httpcode', '0.2.0', ext_options),
  318. ('crul', '0.3.8', ext_options),
  319. ('bold', '0.5.0', ext_options),
  320. ('rredlist', '0.3.0', ext_options),
  321. ('rentrez', '1.1.0', ext_options),
  322. ('rotl', '3.0.3', ext_options),
  323. ('solrium', '0.4.0', ext_options),
  324. ('ritis', '0.5.4', ext_options),
  325. ('worrms', '0.1.0', ext_options),
  326. ('natserv', '0.1.4', ext_options),
  327. ('taxize', '0.8.4', ext_options),
  328. ('tidyr', '0.6.2', ext_options),
  329. ('uuid', '0.1-2', ext_options),
  330. ('RNeXML', '2.0.7', ext_options),
  331. ('phylobase', '0.8.4', ext_options),
  332. ('adephylo', '1.1-10', ext_options),
  333. ('animation', '2.5', ext_options),
  334. ('bigmemory.sri', '0.1.3', ext_options),
  335. ('bigmemory', '4.5.19', dict(ext_options.items() + [('patches', ['bigmemory-4.5.19_icpc-wd308.patch'])])),
  336. ('calibrate', '1.7.2', ext_options),
  337. ('clusterGeneration', '1.3.4', ext_options),
  338. ('raster', '2.5-8', ext_options),
  339. ('dismo', '1.1-4', ext_options),
  340. ('extrafontdb', '1.0', ext_options),
  341. ('Rttf2pt1', '1.3.4', ext_options),
  342. ('extrafont', '0.17', ext_options),
  343. ('fields', '9.0', ext_options),
  344. ('shapefiles', '0.7', ext_options),
  345. ('fossil', '0.3.7', ext_options),
  346. ('geiger', '2.0.6', ext_options),
  347. ('glmnet', '2.0-10', ext_options),
  348. ('rgl', '0.98.1', ext_options),
  349. ('labdsv', '1.8-0', ext_options),
  350. ('stabs', '0.6-3', ext_options),
  351. ('modeltools', '0.2-21', ext_options),
  352. ('strucchange', '1.5-1', ext_options),
  353. ('TH.data', '1.0-8', ext_options),
  354. ('multcomp', '1.4-6', ext_options),
  355. ('coin', '1.2-1', ext_options),
  356. ('party', '1.2-3', ext_options),
  357. ('mboost', '2.8-1', ext_options),
  358. ('msm', '1.6.4', ext_options),
  359. ('nor1mix', '1.2-2', ext_options),
  360. ('np', '0.60-3', ext_options),
  361. ('polynom', '1.3-9', ext_options),
  362. ('polspline', '1.1.12', ext_options),
  363. ('rms', '5.1-1', ext_options),
  364. #('RWekajars', '3.9.1-3', ext_options),
  365. #('RWeka', '0.4-34', ext_options),
  366. ('slam', '0.1-40', ext_options),
  367. ('tm', '0.7-1', ext_options),
  368. ('TraMineR', '2.0-7', ext_options),
  369. ('chemometrics', '1.4.2', ext_options),
  370. ('FNN', '1.1', ext_options),
  371. ('ipred', '0.9-6', ext_options),
  372. ('statmod', '1.4.30', ext_options),
  373. ('miscTools', '0.6-22', ext_options),
  374. ('maxLik', '1.3-4', ext_options),
  375. ('mlogit', '0.2-4', ext_options),
  376. ('getopt', '1.20.0', ext_options),
  377. ('gsalib', '2.1', ext_options),
  378. ('optparse', '1.4.4', ext_options),
  379. ('klaR', '0.6-12', ext_options),
  380. ('neuRosim', '0.2-12', ext_options),
  381. ('locfit', '1.5-9.1', ext_options),
  382. ('GGally', '1.3.2', ext_options),
  383. ('beanplot', '1.2', ext_options),
  384. ('clValid', '0.6-6', ext_options),
  385. ('matrixStats', '0.52.2', ext_options),
  386. ('DiscriMiner', '0.1-29', ext_options),
  387. ('ellipse', '0.3-8', ext_options),
  388. ('leaps', '3.0', ext_options),
  389. ('nloptr', '1.0.4', ext_options),
  390. ('lme4', '1.1-13', ext_options),
  391. ('pbkrtest', '0.4-7', ext_options),
  392. ('car', '2.1-5', ext_options),
  393. ('flashClust', '1.01-2', ext_options),
  394. ('FactoMineR', '1.36', ext_options),
  395. ('flexclust', '1.3-4', ext_options),
  396. ('flexmix', '2.3-14', ext_options),
  397. ('prabclus', '2.2-6', ext_options),
  398. ('diptest', '0.75-7', ext_options),
  399. ('trimcluster', '0.1-2', ext_options),
  400. ('fpc', '2.1-10', ext_options),
  401. ('BiasedUrn', '1.07', ext_options),
  402. ('TeachingDemos', '2.10', ext_options),
  403. ('kohonen', '3.0.2', dict(ext_options.items() + [('patches', ['kohonen-3.0.2_icpc-wd308.patch'])])),
  404. ('base64', '2.0', ext_options),
  405. ('doRNG', '1.6.6', ext_options),
  406. ('nleqslv', '3.3.1', ext_options),
  407. ('Deriv', '3.8.1', ext_options),
  408. ('RGCCA', '2.1.2', ext_options),
  409. ('pheatmap', '1.0.8', ext_options),
  410. ('openxlsx', '4.0.17', ext_options),
  411. ('pvclust', '2.0-0', ext_options),
  412. ('RCircos', '1.2.0', ext_options),
  413. ('lambda.r', '1.1.9', ext_options),
  414. ('futile.options', '1.0.0', ext_options),
  415. ('futile.logger', '1.4.3', ext_options),
  416. ('VennDiagram', '1.6.17', ext_options),
  417. #('xlsxjars', '0.6.1', ext_options),
  418. #('xlsx', '0.5.7', ext_options),
  419. ('forecast', '8.0', dict(ext_options.items() + [('patches', ['forecast-6.1_icpc-wd308.patch'])])),
  420. ('fma', '2.3', ext_options),
  421. ('expsmooth', '2.3', ext_options),
  422. ('fpp', '0.5', ext_options),
  423. ('maptools', '0.9-2', ext_options),
  424. ('tensor', '1.5', ext_options),
  425. ('polyclip', '1.6-1', ext_options),
  426. ('goftest', '1.1-1', ext_options),
  427. ('spatstat.utils', '1.7-0', ext_options),
  428. ('spatstat', '1.52-1', ext_options),
  429. ('rgdal', '1.2-8', ext_options),
  430. ('gdalUtils', '2.0.1.7', ext_options),
  431. ('pracma', '2.0.7', ext_options),
  432. ('RCurl', '1.95-4.8', ext_options),
  433. ('bio3d', '2.3-3', ext_options),
  434. ('AUC', '0.3.0', ext_options),
  435. ('interpretR', '0.2.4', ext_options),
  436. ('cvAUC', '1.1.0', ext_options),
  437. ('SuperLearner', '2.0-22', ext_options),
  438. ('lpSolve', '5.6.13', ext_options),
  439. ('mediation', '4.4.6', ext_options),
  440. ('ModelMetrics', '1.1.0', ext_options),
  441. ('caret', '6.0-76', ext_options),
  442. ('adabag', '4.1', ext_options),
  443. ('parallelMap', '1.3', ext_options),
  444. ('ParamHelpers', '1.10', ext_options),
  445. ('ggvis', '0.4.3', ext_options),
  446. ('mlr', '2.11', ext_options),
  447. ('unbalanced', '2.0', ext_options),
  448. ('RSNNS', '0.4-9', ext_options),
  449. ('abc.data', '1.0', ext_options),
  450. ('abc', '2.1', ext_options),
  451. ('lhs', '0.14', ext_options),
  452. ('tensorA', '0.36', ext_options),
  453. ('EasyABC', '1.5', ext_options),
  454. ('shape', '1.4.3', ext_options),
  455. ('whisker', '0.3-2', ext_options),
  456. ('rstudioapi', '0.6', ext_options),
  457. ('commonmark', '1.2', ext_options),
  458. ('desc', '1.1.1', ext_options),
  459. ('roxygen2', '6.0.1', ext_options),
  460. ('git2r', '0.19.0', ext_options),
  461. ('rversions', '1.0.3', ext_options),
  462. ('withr', '2.0.0', ext_options),
  463. ('devtools', '1.13.3', ext_options),
  464. ('Rook', '1.1-1', ext_options),
  465. ('Cairo', '1.5-9', dict(ext_options.items() + [('patches', ['Cairo-1.5-9.patch'])])),
  466. ('RMTstat', '0.3', ext_options),
  467. ('Lmoments', '1.2-3', ext_options),
  468. ('distillery', '1.0-4', ext_options),
  469. ('extRemes', '2.0-8', ext_options),
  470. ('pixmap', '0.4-11', ext_options),
  471. ('tkrplot', '0.0-23', ext_options),
  472. ('misc3d', '0.8-4', ext_options),
  473. ('multicool', '0.1-10', dict(ext_options.items() + [('patches', ['multicool-0.1-10_icpc-wd308.patch'])])),
  474. ('ks', '1.10.7', ext_options),
  475. ('logcondens', '2.1.5', ext_options),
  476. ('Iso', '0.0-17', ext_options),
  477. ('penalized', '0.9-50', ext_options),
  478. ('clusterRepro', '0.5-1.1', ext_options),
  479. ('randomForestSRC', '2.5.0', ext_options),
  480. ('sm', '2.2-5.4', ext_options),
  481. ('psych', '1.7.5', ext_options),
  482. ('pbivnorm', '0.6.0', ext_options),
  483. ('lavaan', '0.5-23.1097', ext_options),
  484. ('matrixcalc', '1.0-3', ext_options),
  485. ('arm', '1.9-3', ext_options),
  486. ('mi', '1.0', ext_options),
  487. ('visNetwork', '2.0.1', ext_options),
  488. ('rgexf', '0.15.3', ext_options),
  489. ('influenceR', '0.1.0', ext_options),
  490. ('DiagrammeR', '0.9.0', ext_options),
  491. ('sem', '3.1-9', ext_options),
  492. ('jpeg', '0.1-8', ext_options),
  493. ('network', '1.13.0', ext_options),
  494. ('statnet.common', '3.3.0', ext_options),
  495. ('sna', '2.4', ext_options),
  496. ('glasso', '1.8', dict(ext_options.items() + [('patches', [('glasso-1.8-ifort-no-fixed.patch', 1)])])),
  497. ('huge', '1.2.7', ext_options),
  498. ('d3Network', '0.5.2.1', ext_options),
  499. ('ggm', '2.3', ext_options),
  500. ('qgraph', '1.4.3', ext_options),
  501. ('diveRsity', '1.9.90', ext_options),
  502. ('doSNOW', '1.0.14', ext_options),
  503. ('phangorn', '2.2.0', ext_options),
  504. ('geepack', '1.2-1', ext_options),
  505. ('lubridate', '1.6.0', ext_options),
  506. ('biom', '0.3.12', ext_options),
  507. ('pim', '2.0.1', ext_options),
  508. ('minpack.lm', '1.2-1', ext_options),
  509. ('pdist', '1.2', ext_options),
  510. ('dummies', '1.5.6', ext_options),
  511. ('regtools', '1.0.1', ext_options),
  512. ('partools', '1.1.6', ext_options),
  513. #('RPostgreSQL', '0.4-1', ext_options),
  514. #('RMySQL', '0.10.11', ext_options),
  515. ('gsubfn', '0.6-6', ext_options),
  516. ('sqldf', '0.4-10', ext_options),
  517. ('alr3', '2.0.5', ext_options),
  518. ('bdsmatrix', '1.3-2', ext_options),
  519. ('sets', '1.0-17', ext_options),
  520. ('psychotools', '0.4-2', ext_options),
  521. ('relations', '0.6-6', ext_options),
  522. ('benchmark', '0.3-6', ext_options),
  523. ('Bhat', '0.9-10', ext_options),
  524. ('biglm', '0.9-1', ext_options),
  525. ('Bolstad', '0.2-34', ext_options),
  526. ('Bolstad2', '1.0-28', ext_options),
  527. ('BradleyTerry2', '1.0-6', ext_options),
  528. ('catdata', '1.2.1', ext_options),
  529. ('compare', '0.2-6', ext_options),
  530. ('coxme', '2.2-5', ext_options),
  531. ('DAAG', '1.22', ext_options),
  532. ('degreenet', '1.3-1', ext_options),
  533. ('doMPI', '0.2.1', ext_options),
  534. ('elasticnet', '1.1', ext_options),
  535. ('trust', '0.1-7', ext_options),
  536. ('ergm', '3.7.1', ext_options),
  537. ('ergm.count', '3.2.2', ext_options),
  538. ('networkDynamic', '0.9.0', ext_options),
  539. ('tergm', '3.4.0', ext_options),
  540. ('statnet', '2016.9', ext_options),
  541. ('EpiModel', '1.3.0', ext_options),
  542. ('fda', '2.4.4', ext_options),
  543. ('fftw', '1.0-3', ext_options),
  544. ('fftwtools', '0.9-8', ext_options),
  545. ('fit.models', '0.5-14', ext_options),
  546. ('fts', '0.9.9', ext_options),
  547. ('gap', '1.1-17', ext_options),
  548. ('glmpath', '0.97', ext_options),
  549. ('gmm', '1.5-2', ext_options),
  550. ('hapassoc', '1.2-8', ext_options),
  551. ('HaploSim', '1.8.4', ext_options),
  552. ('haplo.stats', '1.7.7', ext_options),
  553. ('hexbin', '1.27.1', ext_options),
  554. ('igraphdata', '1.0.1', ext_options),
  555. ('repr', '0.12.0', ext_options),
  556. ('IRdisplay', '0.4.4', ext_options),
  557. ('itertools', '0.1-3', ext_options),
  558. ('its', '1.1.8', ext_options),
  559. ('kin.cohort', '0.7', ext_options),
  560. ('kinship2', '1.6.4', ext_options),
  561. ('lasso2', '1.2-19', ext_options),
  562. ('latentnet', '2.7.1', ext_options),
  563. ('rex', '1.1.1', ext_options),
  564. ('stringdist', '0.9.4.4', ext_options),
  565. ('lintr', '1.0.0', ext_options),
  566. ('LogicReg', '1.5.9', ext_options),
  567. ('lokern', '1.1-8', ext_options),
  568. ('lpridge', '1.0-7', ext_options),
  569. ('mapdata', '2.2-6', ext_options),
  570. ('mapproj', '1.2-4', ext_options),
  571. ('MCMCglmm', '2.24', ext_options),
  572. ('timereg', '1.9.0', ext_options),
  573. ('mets', '1.2.2', ext_options),
  574. ('mondate', '0.10.01.02', ext_options),
  575. ('MPV', '1.38', ext_options),
  576. ('ncdf4', '1.16', ext_options),
  577. ('ndtv', '0.10.0', ext_options),
  578. ('networksis', '2.1-3', ext_options),
  579. ('nws', '1.7.0.1', ext_options),
  580. ('PBSddesolve', '1.12.2', ext_options),
  581. ('pedigree', '1.4', ext_options),
  582. ('pedigreemm', '0.3-3', ext_options),
  583. ('PolynomF', '0.94', ext_options),
  584. ('qtl', '1.40-8', ext_options),
  585. ('R2WinBUGS', '2.1-21', ext_options),
  586. ('rjags', '4-6', ext_options),
  587. ('R2jags', '0.5-7', ext_options),
  588. ('regress', '1.3-15', ext_options),
  589. ('relevent', '1.0-4', ext_options),
  590. #('Rglpk', '0.6-2', ext_options),
  591. ('Rhpc', '0.15-244', ext_options),
  592. ('fasttime', '1.0-2', ext_options),
  593. ('Rlabkey', '2.1.134', ext_options),
  594. #('RODBC', '1.3-15', ext_options),
  595. ('rootSolve', '1.7', ext_options),
  596. #('rpanel', '1.1-3', ext_options),
  597. ('rrcov', '1.4-3', ext_options),
  598. ('RSclient', '0.7-3', ext_options),
  599. ('Rserve', '1.7-3', ext_options),
  600. #('rzmq', '0.9.1', ext_options),
  601. ('survey', '3.31-5', ext_options),
  602. ('tables', '0.8', ext_options),
  603. ('tiff', '0.1-5', ext_options),
  604. ('timeSeries', '3022.101.2', ext_options),
  605. ('tmvtnorm', '1.4-10', ext_options),
  606. ('vioplot', '0.2', ext_options),
  607. ('wavethresh', '4.6.8', ext_options),
  608. ('hms', '0.3', ext_options),
  609. ('readr', '1.1.0', ext_options),
  610. ('rappdirs', '0.3.1', ext_options),
  611. ('config', '0.2', ext_options),
  612. ('sparklyr', '0.5.3', ext_options),
  613. ('REDCapR', '0.9.7', ext_options),
  614. ('synapseClient', '1.13-4', ext_options),
  615. ('GWASExactHW', '1.01', ext_options),
  616. ('StanHeaders', '2.15.0-1', ext_options),
  617. ('inline', '0.3.14', ext_options),
  618. ('rstan', '2.15.1', ext_options),
  619. ('rslurm', '0.3.3', ext_options),
  620. ('CompQuadForm', '1.4.3', ext_options),
  621. ('diagram', '1.6.3', ext_options),
  622. ('FME', '1.3.5', ext_options),
  623. ('bmp', '0.2', ext_options),
  624. ('readbitmap', '0.1-4', ext_options),
  625. ('purrr', '0.2.2', ext_options),
  626. ('downloader', '0.4', ext_options),
  627. ('imager', '0.40.2', dict(ext_options.items() + [('patches', ['imager-0.40.2_icpc-wd308.patch'])])),
  628. ('pracma', '2.0.4', ext_options),
  629. ('signal', '0.7-6', ext_options),
  630. ('tuneR', '1.3.2', ext_options),
  631. ('pastecs', '1.3-18', ext_options),
  632. ('audio', '0.1-5', ext_options),
  633. ('fftw', '1.0-4', ext_options),
  634. ('seewave', '2.0.5', ext_options),
  635. ('gsw', '1.0-3', ext_options),
  636. ('oce', '0.9-21', ext_options),
  637. ('ineq', '0.2-13', ext_options),
  638. ('soundecology', '1.3.2', ext_options),
  639. ('memuse', '3.0-1', ext_options),
  640. ('pinfsc50', '1.1.0', ext_options),
  641. ('vcfR', '1.5.0', ext_options),
  642. ('glmmML', '1.0.2', ext_options),
  643. ('ucminf', '1.1-4', ext_options),
  644. ('ordinal', '2015.6-28', ext_options),
  645. ]
  646. moduleclass = 'lang'