Re: [R-pkg-devel] Using non-exported functions from another package with :::

2017-07-06 Thread Joris Meys
Hi Duncan, I hoped against all odds to get a different answer, but alas you confirm my biggest fears. I'll get in touch with the shiny guys and hope they'll grant me my wishes. Cheers Joris On Thu, Jul 6, 2017 at 12:03 AM, Duncan Murdoch wrote: > On 05/07/2017 3:19 PM, Joris Meys wrote: > >> H

[R-pkg-devel] Question about selective platform for my R package

2017-07-06 Thread Disa Mhembere
Hello, I made an R package that is specifically for OSX and Linux, and not Windows. I pass all checks locally on these platforms, but when I upload my package to CRAN the system tries to compile my code on a Windows box which obviously results in an error. What is the traditional method of specify

Re: [R-pkg-devel] Question about selective platform for my R package

2017-07-06 Thread Dason Kurkiewicz
What you want is to specify the OS_type in your DESCRIPTION file. This is documented in writing R extensions https://cran.r-project.org/doc/manuals/r-release/R-exts.html#The-DESCRIPTION-file -Dason Kurkiewicz On Jul 7, 2017 1:30 AM, "Disa Mhembere" wrote: > Hello, > > I made an R package that i