Re: [R-pkg-devel] Windows R 4.2.0 package will not load with UTF-8 encoding

2022-06-11 Thread Joseph Park
building and installing via devtools reports success ( ** testing if installed package can be loaded from temporary location ), however, a subsequent attempt to load hangs. On Sat, Jun 11, 2022 at 6:33 AM Joseph Park wrote: > Apologies for the pages of minutia. I endeavored to post reproducea

Re: [R-pkg-devel] Error in loadNamespace(x) : there is no package called 'formatR'

2020-11-13 Thread Joseph Park
knitr > VignetteDepends: rmarkdown, formatR > > It should make the above process a bit clearer. It would also make it > clear to those who are only interested in viewing vignettes, but have > no interest in rebuilding vignettes, what packages they need to > install in order to acces

Re: [R-pkg-devel] Error in loadNamespace(x) : there is no package called 'formatR'

2020-11-13 Thread Joseph Park
in ‘VignetteBuilder’." > > So I think you need > > Suggests: knitr, rmarkdown, formatR > VignetteBuilder: knitr, rmarkdown, formatR > > On Fri, Nov 13, 2020 at 3:23 PM Joseph Park wrote: >> Ah, yes... I see it now in Writing R Extensions. Apologies for the >> o

Re: [R-pkg-devel] Error in loadNamespace(x) : there is no package called 'formatR'

2020-11-13 Thread Joseph Park
knitr also need the package formatR which it suggests and so the user package needs to do so too and include this in ‘VignetteBuilder’." Gabor On Fri, Nov 13, 2020 at 1:49 PM Joseph Park wrote: Dear r-package-devel, The rEDM package is failing the automated check, as noted here: h

[R-pkg-devel] Error in loadNamespace(x) : there is no package called 'formatR'

2020-11-13 Thread Joseph Park
Dear r-package-devel, The rEDM package is failing the automated check, as noted here: https://win-builder.r-project.org/incoming_pretest/rEDM_1.7.0_20201113_131811/Windows/00check.log When running rhub::check_for_cran(), disk file errors were reported. The automated check seems to be failing wi

Re: [R-pkg-devel] C++ library USING_R

2020-10-15 Thread Joseph Park
ve another follow-up. Private > email is not efficient / has no second or third or ... set of eyes. > > On 15 October 2020 at 07:53, Joseph Park wrote: > | Thanks for the clarification. > | > | One last caveat: the C++ code already has a hook presuming #define > | USING_R. D

[R-pkg-devel] C++ library USING_R

2020-10-14 Thread Joseph Park
Dear R-devel, The Writing R Extensions manual states: 6.14 Platform and version information The header files define USING_R, which can be used to test if the code is indeed being used with R. I suppose this only applies to building R itself?  Or, perhaps when Rcpp is used for the interface,