Skip to content

Commit

Permalink
more syncRPackages driver maintenance:
Browse files Browse the repository at this point in the history
-correct links in package dependency graph
  • Loading branch information
ericeckstrand committed Jan 12, 2016
1 parent d2b4fb8 commit 42fd4ec
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions h2o-r/scripts/package_version_check_update.R
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,14 @@ function(reqs) {
pkgNames <- append(pkgNames,"bit64",after=which(pkgNames %in% "bit"))
pkgNames <- pkgNames[-which(pkgNames %in% "rversions")]
pkgNames <- append(pkgNames,"rversions",after=which(pkgNames %in% "xml2"))
pkgNames <- pkgNames[-which(pkgNames %in% "foreach")]
pkgNames <- append(pkgNames,"foreach",after=which(pkgNames %in% "iterators"))
pkgNames <- pkgNames[-which(pkgNames %in% "Matrix")]
pkgNames <- append(pkgNames,"Matrix",after=which(pkgNames %in% "lattice"))
pkgNames <- pkgNames[-which(pkgNames %in% "flexclust")]
pkgNames <- append(pkgNames,"flexclust",after=which(pkgNames %in% "lattice"))
pkgNames <- pkgNames[-which(pkgNames %in% "modeltools")]
pkgNames <- append(pkgNames,"modeltools",after=which(pkgNames %in% "lattice"))
pkgNames <- pkgNames[-which(pkgNames %in% "flexmix")]
pkgNames <- append(pkgNames,"flexmix",after=which(pkgNames %in% "nnet"))
pkgNames <- pkgNames[-which(pkgNames %in% "e1071")]
Expand All @@ -37,14 +41,20 @@ function(reqs) {
pkgNames <- append(pkgNames,"gbm",after=which(pkgNames %in% "survival"))
pkgNames <- pkgNames[-which(pkgNames %in% "glmnet")]
pkgNames <- append(pkgNames,"glmnet",after=which(pkgNames %in% "Matrix"))
pkgNames <- pkgNames[-which(pkgNames %in% "KernSmooth")]
pkgNames <- append(pkgNames,"KernSmooth",after=which(pkgNames %in% "gtools"))
pkgNames <- pkgNames[-which(pkgNames %in% "gplots")]
pkgNames <- append(pkgNames,"gplots",after=which(pkgNames %in% "KernSmooth"))
pkgNames <- pkgNames[-which(pkgNames %in% "gdata")]
pkgNames <- append(pkgNames,"gdata",after=which(pkgNames %in% "KernSmooth"))
pkgNames <- pkgNames[-which(pkgNames %in% "caTools")]
pkgNames <- append(pkgNames,"caTools",after=which(pkgNames %in% "KernSmooth"))
pkgNames <- pkgNames[-which(pkgNames %in% "ROCR")]
pkgNames <- append(pkgNames,"ROCR",after=which(pkgNames %in% "gplots"))
pkgNames <- pkgNames[-which(pkgNames %in% "prabclus")]
pkgNames <- append(pkgNames,"prabclus",after=which(pkgNames %in% "MASS"))
pkgNames <- pkgNames[-which(pkgNames %in% "mclust")]
pkgNames <- append(pkgNames,"mclust",after=which(pkgNames %in% "MASS"))
pkgNames <- pkgNames[-which(pkgNames %in% "latticeExtra")]
pkgNames <- append(pkgNames,"latticeExtra",after=which(pkgNames %in% "lattice"))
return(reqs[match(pkgNames,reqs[,1]),])
Expand Down

0 comments on commit 42fd4ec

Please sign in to comment.