Skip to content

[R-pkg-devel] Fwd: Placement of cran-comments.md file

3 messages · EcoC2S - Irucka Embry, Dirk Eddelbuettel

#
Hi everyone, I am receiving the following NOTE when checking my package 
'iemisc':


* checking top-level files ... NOTE
Non-standard file/directory found at top level:
   'cran-comments.md'


Will someone please tell me the correct location of cran-comments.md?

Thank you.

Irucka
#
On 28 January 2020 at 19:47, EcoC2S - Irucka Embry wrote:
| Hi everyone, I am receiving the following NOTE when checking my package 
| 'iemisc':
| 
| * checking top-level files ... NOTE
| Non-standard file/directory found at top level:
|    'cran-comments.md'
| 
| Will someone please tell me the correct location of cran-comments.md?

It is just like the message says: it is a non-standard file.

Meaning it is not described anywhere in 'Writing R Extensions' which is the
only manual that _really_ counts. So it should not be in the .tar.gz.

The manual also shows how to exclude files in your build directory from the
resulting tar.gz: mention them in .Rbuildignore.  So you could do

   echo "cran-comments.md" >> .Rbuildignore

or edit the file by hand. 

Dirk
#
Hi Dirk, thank you for the prompt response.

I have made the change and will re-upload to CRAN.

Irucka
On 2020-01-28 20:20, Dirk Eddelbuettel wrote: