ELIC_R-2-foss-2019a-R-3.6.0.eb 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. easyblock = 'Bundle'
  2. name = 'ELIC_R'
  3. version = '2'
  4. versionsuffix = '-R-%(rver)s'
  5. homepage = 'https://gogs.elic.ucl.ac.be'
  6. description = """This repo provides additional Python and R extensions for ELIC ecosystem."""
  7. toolchain = {'name': 'foss', 'version': '2019a'}
  8. dependencies = [
  9. ('R', '3.6.0'),
  10. ('GEOS', '3.7.2', '-Python-3.7.2'),
  11. ('GDAL', '3.0.0', '-Python-3.7.2'),
  12. ]
  13. exts_default_options = {
  14. 'source_urls': [
  15. 'https://cran.r-project.org/src/contrib/Archive/%(name)s', # package archive
  16. 'https://cran.r-project.org/src/contrib/', # current version of packages
  17. 'https://cran.freestatistics.org/src/contrib', # mirror alternative for current packages
  18. ],
  19. 'source_tmpl': '%(name)s_%(version)s.tar.gz'
  20. }
  21. exts_defaultclass = 'RPackage'
  22. exts_filter = ("R -q --no-save", "library(%(ext_name)s)")
  23. # CRAN packages on which these Bioconductor packages depend are available in R module on which this depends
  24. # !! order of packages is important !!
  25. # packages updated on Sept 25th 2018
  26. exts_list = [
  27. ('rgdal', '1.4-4'),
  28. ('gdalUtils', '2.0.1.14'),
  29. ('ncdf4', '1.16.1'),
  30. ('gdtools', '0.1.9'),
  31. ('leaflet', '2.0.2'),
  32. ('satellite', '1.0.1'),
  33. ('sf', '0.7-7'),
  34. ('svglite', '1.2.2'),
  35. ('leafem', '0.0.1'),
  36. ('leafpop', '0.0.1'),
  37. ('mapview', '2.7.0'),
  38. ('MuMIn', '1.43.6'),
  39. ('gstat', '2.0-2'),
  40. ('RNetCDF', '1.9-1'),
  41. ('automap', '1.0-14'),
  42. ('clhs', '0.7-2'),
  43. ('rasterVis', '0.45'),
  44. ('reporttools', '1.1.2'),
  45. ('rgeos', '0.4-3'),
  46. ('RandomFieldsUtils', '0.5.3'),
  47. ('RandomFields', '3.3.6'),
  48. ('rworldmap', '1.3-6'),
  49. ('rworldxtra', '1.01'),
  50. ('colorRamps', '2.3'),
  51. ('mapdata', '2.3.0'),
  52. ('mapproj', '1.2.6'),
  53. ('RPostgreSQL', '0.6-2'),
  54. ('getPass', '0.2-2'),
  55. ('stringdist', '0.9.5.2'),
  56. ('here', '0.1'),
  57. ('svMisc', '1.1.0'),
  58. ('networkD3', '0.4'),
  59. ('cmsaf', '1.9.5'),
  60. ('treemap', '2.4-2'),
  61. ('RPostgres', '1.1.1'),
  62. ('nzelect', '0.4.0'),
  63. ('wordcloud', '2.6'),
  64. ('ngram', '3.0.4'),
  65. ('rtweet', '0.6.9'),
  66. ('lettercase', '0.13.1'),
  67. ('xgboost', '0.90.0.2'),
  68. ('rts', '1.0-49'),
  69. ('RgoogleMaps', '1.4.4'),
  70. ('ggmap', '3.0.0'),
  71. ('packrat','0.5.0'),
  72. ('rsconnect', '0.8.13'),
  73. ('rpostgis', '1.4.2'),
  74. ('aws.signature', '0.5.2'),
  75. ('aws.s3', '0.3.12'),
  76. ('geosphere', '1.5-10'),
  77. ('fuzzyjoin', '0.1.4'),
  78. ('refinr', '0.3.1'),
  79. ('x13binary', '1.1.39-2'),
  80. ('seasonal', '1.7.0'),
  81. ('mitools', '2.4'),
  82. ('survey', '3.36'),
  83. ('hts','5.1.5'),
  84. ('thief', '0.3'),
  85. ('forecastHybrid', '4.2.17'),
  86. ('ggseas', '0.5.4'),
  87. ('sysfonts', '0.8'),
  88. ('showtextdb', '2.0'),
  89. ('showtext', '0.7'),
  90. ('BiocManager', '1.30.4'),
  91. ('rvcheck', '0.1.5'),
  92. ('scatterpie', '0.1.3'),
  93. ('velox', '0.2.0'),
  94. ('rlist', '0.4.6.1'),
  95. ('measurements', '1.4.0'),
  96. ]
  97. modextrapaths = {'R_LIBS': ''}
  98. sanity_check_paths = {
  99. 'files': [],
  100. 'dirs': ['ncdf4', 'sf', 'mapview'],
  101. }
  102. moduleclass = 'numlib'