Re: [R-pkg-devel] Help package checks using valgrind

2017-05-24 Thread Merlise Clyde, Ph.D.
Thanks - I missed that one! After identifying the problem there, and increasing --num-callers in my .valgrindrc file I can see more of the trace, however, I still have short entries like > cleanEx() ==2044952== Conditional jump or move depends on uninitialised value(s) ==2044952==at 0x405

Re: [R-pkg-devel] compact PDF - vignettes

2017-05-24 Thread Uwe Ligges
On 24.05.2017 18:06, Fernanda De Bastiani wrote: Dear Sir/Madam, please, I am trying to submit a package to CRAN (with a vignette) but I receive the following warning * checking sizes of PDF files under 'inst/doc' ... WARNING 'gs+qpdf' made some significant size reductions: compacte

[R-pkg-devel] compact PDF - vignettes

2017-05-24 Thread Fernanda De Bastiani
Dear Sir/Madam, please, I am trying to submit a package to CRAN (with a vignette) but I receive the following warning * checking sizes of PDF files under 'inst/doc' ... WARNING 'gs+qpdf' made some significant size reductions: compacted 'name.pdf' from 1212Kb to 924Kb consider running to

Re: [R-pkg-devel] CRAN and cmake

2017-05-24 Thread Gábor Csárdi
On Wed, May 24, 2017 at 4:05 AM, Barry Rowlingson wrote: [...] > Github also has a REST search API - hasn't anyone wrapped this in R yet? > > https://developer.github.com/v3/search/ There is a rather minimal wrapper at https://github.com/r-pkgs/gh#readme and there is also one here: https://github

Re: [R-pkg-devel] CRAN and cmake

2017-05-24 Thread Barry Rowlingson
On Wed, May 24, 2017 at 12:19 AM, Dirk Eddelbuettel wrote: > > On 23 May 2017 at 11:36, Spencer Graves wrote: > | On 2017-05-23 10:56 AM, Dirk Eddelbuettel wrote: > | > A nice benefit of Gabor's CRAN mirror on GitHub is access to the GitHub. > | > Here I constrain on user:cran (to get just that mi

[R-pkg-devel] S3 dispatch for select()

2017-05-24 Thread Kirill Müller
Hi When a package defines a select() generic, objects of type list seem to be forcibly dispatched to utils::select.list(). This is not the case when the generic is defined in a regular R script. I could define a select__() generic and forward all select() calls to select__() first, but I won