From: Don Armstrong <don@donarmstrong.com>
Date: Fri, 19 Jun 2015 22:11:40 +0000 (-0700)
Subject: the source only builds do not care about the R dependencies
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=43f538705776591592ce8eb424a2324a459b10fb;p=cran2deb.git

the source only builds do not care about the R dependencies
---

diff --git a/trunk/R/debcontrol.R b/trunk/R/debcontrol.R
index da13e33..17ad15c 100644
--- a/trunk/R/debcontrol.R
+++ b/trunk/R/debcontrol.R
@@ -61,13 +61,13 @@ get_dependencies <- function(pkg,extra_deps,verbose=TRUE) {
     if (pkg$archdep) {
         depends$bin=c(depends$bin,'${shlibs:Depends}')
     }
-    notice('starting dependency closure')
+    ## notice('starting dependency closure')
     # the names of dependent source packages (to find the .changes file to
     # upload via dput). these can be found recursively.
-    depends$r = r_dependency_closure(dependencies)
-    notice('finished dependency closure')
+    ## depends$r = r_dependency_closure(dependencies)
+    ## notice('finished dependency closure')
     # append command line dependencies
-    depends$r = c(extra_deps$r, depends$r)
+    ## depends$r = c(extra_deps$r, depends$r)
     return(depends)
 }