Re: [R-pkg-devel] Passing CRAN checks for a package linking to a system library on CRAN machines

2021-05-13 Thread SN248
Thank you Tomas and Sokol for your suggestions. Based on Tomas' suggestion, it seems the best way forward would be to first request CRAN maintainers to install libsbml on the CRAN machines. It is quite straightforward to install the library from the instructions provided online. If the installatio

Re: [R-pkg-devel] State of stringi and stringr

2021-05-13 Thread Murray Efford
Thanks for clearing that up so quickly. Murray From: Uwe Ligges Sent: 14 May 2021 13:12 To: Murray Efford; r-package-devel@r-project.org Subject: Re: [R-pkg-devel] State of stringi and stringr On 14.05.2021 02:32, Murray Efford wrote: > CRAN checks of '

Re: [R-pkg-devel] State of stringi and stringr

2021-05-13 Thread Uwe Ligges
On 14.05.2021 02:32, Murray Efford wrote: CRAN checks of 'secr' 4.4.1 (https://CRAN.R-project.org/package=secr) show an error on r-oldrel-windows-ix86+x86_64 : ** byte-compile and prepare package for lazy loading Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) :

[R-pkg-devel] State of stringi and stringr

2021-05-13 Thread Murray Efford
CRAN checks of 'secr' 4.4.1 (https://CRAN.R-project.org/package=secr) show an error on r-oldrel-windows-ix86+x86_64 : ** byte-compile and prepare package for lazy loading Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : there is no package called 'stringi' 'secr' i

Re: [R-pkg-devel] autotesting on GitHub with Travis or ...?

2021-05-13 Thread Ben Bolker
GitHub Actions ?usethis::use_github_action Probably start here if you are moving from Travis: https://deanattali.com/blog/migrating-travis-to-github/ On 5/13/21 8:00 PM, Spencer Graves wrote: Hello, All:   What are the current recommendations for automatic testing of an R packa

[R-pkg-devel] autotesting on GitHub with Travis or ...?

2021-05-13 Thread Spencer Graves
Hello, All: What are the current recommendations for automatic testing of an R package on GitHub? Section 19.3 in the current version of "R Packages" describes "Checking after every commit with Travis". It recommends Travis. It says to use Travis, first "Run usethis::use_travis()".

Re: [R-pkg-devel] Unable to get past CRAN submission checks for package cubature

2021-05-13 Thread Balasubramanian Narasimhan
Thanks to the encouragement of Brodie Gaslam and Tomas Kalibera (private email), I was able to hack the code to avoid the warnings. The code in question had the following structure:     int inibits = -1, bit;     for( j = powers; j; j >>= 1 ) ++inibits;     memcpy(pv, pini, inibits*sizeof(*pini

Re: [R-pkg-devel] Fwd: Passing CRAN checks for a package linking to a system library on CRAN machines

2021-05-13 Thread Tomas Kalibera
On 5/13/21 7:29 AM, Sokol Serguei wrote: Le 13/05/2021 à 07:06, SN248 a écrit : I am working on a package which provides an interface to the libsbml C++ library (http://sbml.org/Software/libSBML) in R. The source code of this package (r2sbml) can be found at the following link https://github.