A few years ago I inherited a package that I now maintain on CRAN. I’m attempting to submit a new version (unrelated issue to remove maptools, rgdal, rgeos) but it’s not passing the automatic pre-checks, only on Debian, R devel. The log is here: https://win-builder.r-project.org/incoming_pretest/micromap_1.9.6_20230420_221328/Debian/00check.log
The WARNING that’s causing problems states the following:
* checking for missing documentation entries ... WARNING
Undocumented code objects:
‘.__global__’
All user-level objects in a package should have documentation entries.
See chapter ‘Writing R documentation files’ in the ‘Writing R
Extensions’ manual.
Normally, this warning would explicitly tell me which part of the documentation was missing, but this is strange because it’s only occurring on one OS/R-devel and I’ve no idea what .__global__
is referring to.
The other wrinkle is that most of the .Rd files were written by hand by the original developer, so it’s difficult to recreate the documentation short of rewriting it all with Roxygen. I’d rather not do the latter if it’s a fix that can be solved otherwise.
The source repo is here (forked from official govt repo which I’m not allowed to access): GitHub - fawda123/micromap: ORD for R micromap package development
I’m at a loss here - Google returns nothing helpful.