[R-pkg-devel] CRAN incoming feasibility Error

2015-06-09 Thread Seth Wenchel
Hi All, I'm running into an error with R CMD check --as-cran on R 3.2.0 for windows. Obviously i've tried googling but i haven't found this specific issue. I was wondering if it is because of my company's network settings. FWIW, it makes it through devtools::check() just fine. Cheers, Seth c:\

Re: [R-pkg-devel] CRAN incoming feasibility Error

2015-06-09 Thread Seth Wenchel
' version '1.0.0' * checking CRAN incoming feasibility ...Error in utils::contrib.url(urls, "source") : trying to use CRAN without setting a mirror Execution halted On Tue, Jun 9, 2015 at 11:27 AM, Dirk Eddelbuettel wrote: > > On 9 June 2015 at 10:24, Seth Wenchel

Re: [R-pkg-devel] Help needed to setting custom packages for R 3.1.2

2015-07-13 Thread Seth Wenchel
Are you exporting the functions from pkgB and pkgC? It's hard to tell from your table below. The easiest way is to add a comment before each of the functions in pkgB and pkgC that you want to expose to the users. #' @export foo <- function(){...} Then run roxygen::roxygenise() to build the NAMESP

Re: [R-pkg-devel] develop package with lots of tcltk in it

2016-05-12 Thread Seth Wenchel
> > "For users who don't know anything about R, this solution may work fine. > But > for users that do know R, it is unsatisfactory...program changes the > working directory, fills it with hundreds of alien-looking functions and > data, and crashes if working directory is changed or variables are m

Re: [R-pkg-devel] R force download of specific package versions in DESCRIPTION file

2017-05-31 Thread Seth Wenchel
You may also want to look at the checkpoint and miniCRAN packages https://CRAN.R-project.org/package=checkpoint https://CRAN.R-project.org/package=miniCRAN I haven't used the checkpoint package before, bu