Update packages

This commit is contained in:
Mateus Pinto Rodrigues
2018-06-04 20:13:22 -03:00
parent beefe0f71c
commit 47702fe74a
576 changed files with 2497 additions and 1169 deletions

View File

@@ -0,0 +1,18 @@
#!/usr/bin/Rscript
## -*- mode: R -*-
## code to build ESSR environemnt.
## Assume that current directory is etc/ESSR
## run "./BUILDESSR destdir" to create ESSR_<version>.rda in destdir
## where <version> is picked form ./VERSION file
args <- commandArgs(TRUE)
dir <- if(length(args)) args[[1]] else "."
ver <- scan("./VERSION", what = "character", quiet = TRUE)
rda_file <- sprintf("%s/ESSR_%s.rda", dir, ver)
## exactly as in inferior-ess-r-load-ESSR in ess-r-d.el
source('./R/.load.R', local=TRUE)
ESSR <- load.ESSR('./R/')
save(ESSR, file = rda_file)