[R-pkg-devel] Debugging library.dynam to include a manual shared object

2020-11-16 Thread Jon Davidson
Hello, I am trying to build an R package with a manually compiled .so file. To do so, I have included a call to useDynLib() in my NAMESPACE file. Building this works fine in RStudio with devtools::load_all('.'), but when I try to run R CMD INSTALL, I get the error: package or namespace load faile

Re: [R-pkg-devel] Having shiny as an optional dependency

2020-11-16 Thread Kamil Stachowski
It works! Thank you so much! Best wishes, Kamil Stachowski On Mon, 16 Nov 2020 at 11:53, Duncan Murdoch wrote: > On 16/11/2020 4:55 a.m., Kamil Stachowski wrote: > > I did briefly wonder why your reply to me cited an email from Akshit > Achara > > who asked about third party C++ API. I assumed

Re: [R-pkg-devel] Having shiny as an optional dependency

2020-11-16 Thread Duncan Murdoch
On 16/11/2020 4:55 a.m., Kamil Stachowski wrote: I did briefly wonder why your reply to me cited an email from Akshit Achara who asked about third party C++ API. I assumed it was because the solution to his problem and mine was the same. In the meantime, I got a reply from Kurt Hornik who said I

Re: [R-pkg-devel] Having shiny as an optional dependency

2020-11-16 Thread Kamil Stachowski
I did briefly wonder why your reply to me cited an email from Akshit Achara who asked about third party C++ API. I assumed it was because the solution to his problem and mine was the same. In the meantime, I got a reply from Kurt Hornik who said I have a top-level call soundcorrsGUI <- shiny::shi

[R-pkg-devel] Publishing Java Wrappers The Right Way

2020-11-16 Thread Peter Meissner
Hey Everyone, I have an R-package that wraps some Java code. The dependencies needed are around 10MB. Thus I split the package into 2 packages. One providing only the dependencies: https://github.com/petermeissner/kafkaesquejars ... and one providing the actual code: https://github.com/peterme