checking CRAN incoming feasibility ... NOTE Maintainer

RCranR Package

R Problem Overview


When I run R CMD check --as-cran on my package, the one note I still get is:

checking CRAN incoming feasibility ... NOTE 
Maintainer:[my name] <my email>

I can't seem to find a good explanation of this note, although I haven't read anything that tells my I should be concerned about it. As anyone else run into this? Is there anything I can do that will clear the note?

R Solutions


Solution 1 - R

According to CRAN Maintainer Uwe Ligges,

> This is just a note that reminds CRAN maintainers to check that the submission comes actually from his maintainer and not anybody else.

Thus, it is safe to ignore such a message.

Solution 2 - R

These checks can be disabled. R Internals states:

_R_CHECK_CRAN_INCOMING_

Check whether package is suitable for publication on CRAN. Default: false, except for CRAN submission checks.

_R_CHECK_CRAN_INCOMING_REMOTE_

Include checks that require remote access among the above. Default: same as _R_CHECK_CRAN_INCOMING_

Solution 3 - R

I usually run M-x occur [^OK]$ and scoll through the 'occur' buffer. Hope that helps

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionBenjaminView Question on Stackoverflow
Solution 1 - RgagolewsView Answer on Stackoverflow
Solution 2 - RJack WaseyView Answer on Stackoverflow
Solution 3 - RChristian HoffmannView Answer on Stackoverflow