Re: [R-pkg-devel] .gitkeep file to prevent folder from erasing when empty

2016-10-02 Thread Johannes Ranke
Hi, You can include the .gitkeep file in .Rbuildignore. This will prevent it from being present in the package you test or submit, but git willl still see it and keep the directory. Johannes Am Montag, 3. Oktober 2016, 00:03:33 schrieb Luck Buttered: > Hello everyone: > > I am working on a vi

[R-pkg-devel] .gitkeep file to prevent folder from erasing when empty

2016-10-02 Thread Luck Buttered
Hello everyone: I am working on a vignette for a package that outputs reports for users. As part of the vignette, users can manually run eval=FALSE code that creates example reports. These example reports that they create can be saved to an output folder within extdata (extdata/OutputFolder). Whe

Re: [R-pkg-devel] Note and warning about subdirectory sizes

2016-10-02 Thread Duncan Murdoch
On 02/10/2016 4:05 PM, S johnson wrote: Hi all, I am running check() on an R package, and receive one note and one warning (seem to be related): * checking installed package size ... NOTE installed size is 25.9Mb sub-directories of 1Mb or more: doc 3.4Mb extdata 22.1Mb * ch

[R-pkg-devel] Note and warning about subdirectory sizes

2016-10-02 Thread S johnson
Hi all, I am running check() on an R package, and receive one note and one warning (seem to be related): * checking installed package size ... NOTE installed size is 25.9Mb sub-directories of 1Mb or more: doc 3.4Mb extdata 22.1Mb * checking sizes of PDF files under ‘inst/doc’

Re: [R-pkg-devel] R Packages Never Finish Check

2016-10-02 Thread Henrik Bengtsson
I think R CMD check calls res <- system2("du", "-k", TRUE, TRUE) also on Windows, cf. https://github.com/wch/r-source/blob/trunk/src/library/tools/R/check.R#L3859 It could be that you have a corrupt / different `du` tool on your PATH. As a first thing, try calling the above from within you pack