From ef61e4b365435a8e3e86a46655da5c2c08e868d1 Mon Sep 17 00:00:00 2001 From: edd Date: Sat, 29 May 2010 14:12:47 +0000 Subject: [PATCH] make r_bundle_of() a null-op as there are no more bundles in R 2.11.0 git-svn-id: svn://svn.r-forge.r-project.org/svnroot/cran2deb@305 edb9625f-4e0d-4859-8d74-9fd3b1da38cb --- trunk/R/rdep.R | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/trunk/R/rdep.R b/trunk/R/rdep.R index 141453b..bf2fa38 100644 --- a/trunk/R/rdep.R +++ b/trunk/R/rdep.R @@ -1,5 +1,9 @@ r_bundle_of <- function(pkgname) { + return(NULL) ## there are no more bundles as of R 2.11.0 + + ## -- old code below, never reached + ## # returns the bundle containing pkgname or NA bundles <- names(available[!is.na(available[, 'Bundle']), 'Contains']) # use the first bundle -- 2.39.2