Re: [R-pkg-devel] check error with r-devel-windows-ix86+x86_64 due to missing Hmisc package

2021-06-23 Thread Gilbert Ritschard
Thanks for this suggestion. Pushing the investigation a bit further, I found that the error resulted in chain (curl -> httr -> plotly -> Hmisc -> TraMineR -> TraMineRextras) from an issue of the package curl with the ucrt tool. An update of curl with a fix has been released today. So seems

Re: [R-pkg-devel] check error with r-devel-windows-ix86+x86_64 due to missing Hmisc package

2021-06-23 Thread Duncan Murdoch
On 23/06/2021 7:41 a.m., Gilbert Ritschard wrote: Hi all, The submission of an update of TraMineRextras on the CRAN does not pass the test due to an error with r-devel-windows-ix86+x86_64. The error says: library('TraMineRextras') Loading required package: TraMineR Error: package or

[R-pkg-devel] check error with r-devel-windows-ix86+x86_64 due to missing Hmisc package

2021-06-23 Thread Gilbert Ritschard
Hi all, The submission of an update of TraMineRextras on the CRAN does not pass the test due to an error with r-devel-windows-ix86+x86_64. The error says: > library('TraMineRextras') Loading required package: TraMineR Error: package or namespace load failed for 'TraMineR' in

Re: [R-pkg-devel] find functions with missing Rd tags

2021-06-23 Thread Henrik Bengtsson
$ grep -L -F "\value{" man/*.Rd /Henrik On Wed, Jun 23, 2021 at 10:58 AM Alex Chubaty wrote: > > During a recent package submission process, a CRAN maintainer showed one of > their checks found missing \value{} documentation in some package Rd files, > and asked us to ensure all exported

[R-pkg-devel] find functions with missing Rd tags

2021-06-23 Thread Alex Chubaty
During a recent package submission process, a CRAN maintainer showed one of their checks found missing \value{} documentation in some package Rd files, and asked us to ensure all exported functions have their return values described. This check (for missing Rd values) is not run by the default

Re: [R-pkg-devel] find functions with missing Rd tags

2021-06-23 Thread Martin Morgan
I looked at the help page for ?tools::Rd_db and came up with this script; maybe not perfect... Create a database of Rd information for the package of interest library(tools) pkg_of_interest <- "stats" db <- Rd_db(pkg_of_interest) Extract relevant fields / summary of fields into a

Re: [R-pkg-devel] Best way to build CRAN packages that include Rust source?

2021-06-23 Thread David Norris
To follow up, I’m quite settled on (2) now, as I’ve been able to adapt the Makevars files of package ‘gifski’ to achieve a successful R-CMD-check across multiple GitHub virtual platforms including windows. For anyone interested, the Makevars & Makevars.win files are in