R-3.4.1-intel-2018.eb 25 KB

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