3

I want to submit a package to CRAN. In the CRAN repository policy it states that "Packages for which R CMD check gives an ‘ERROR’ when a new R x.y.0 version is released will be archived".

It also says "Please ensure that R CMD check --as-cran has been run on the tarball to be uploaded before submission".

Running R CMD check --as cran on my tarball gives me the warning:

Warning: unknown option ‘--as-cran’

I am running R version 2.14.1 on Ubuntu 12.04.2 LTS. Can I build a source package using this version or do I have to use R 3.0?

And why does R CMD check --as-cran not work for me?

user1981275
  • 13,002
  • 8
  • 72
  • 101

3 Answers3

5

The document you link to says:

Please ensure that R CMD check --as-cran has been run on the tarball to be uploaded before submission. This should be done with the current release of R or (preferably) R-devel or R-patched.

So, right now, you should use R-3.0.1 and also test against the R-devel branch (if possible).

Andrie
  • 176,377
  • 47
  • 447
  • 496
  • This sounds reasonable, I am trying to install R 3.0.1 now to see if `R CMD check --as-cran` works. – user1981275 Jun 19 '13 at 13:55
  • Just installed R 3 and it does not give the warning for the `--as-cran` argument anymore. I will check my package with this version before submitting. Many thanks! – user1981275 Jun 19 '13 at 14:38
  • You might want to add the argument `--vanilla` too, though maybe this is captured in `--as-cran`. It ensures that none of your local files are read during start up. – Bryan Hanson Jun 19 '13 at 14:45
  • 1
    Or use `devtools::check()` which does it's best to simulate exactly what cran does. – hadley Jun 20 '13 at 13:01
1

From the current October 2015 CRAN policy: "Please ensure that R CMD check --as-cran has been run on the tarball to be uploaded before submission. This should be done with the current version of R-devel (or if that is not possible and explained in the submission, current R-patched or the current release of R.)"

This, I believe is a change from the policy described in the original accepted answer.

docker/rocker is a way to achieve this fairly easily without mucking up your development environment.

I think it is correct to build with the latest release version, but test with R-devel and the latest release.

Jack Wasey
  • 3,360
  • 24
  • 43
1

You can try the new starfox/r-devel container available at https://hub.docker.com/r/starfox/r-devel/. It contains already some packages, which will make your release more convenient. There is also a guide how to use it.

Disclaimer: I am the maintainer of both, the container and the guide.

user2161065
  • 1,826
  • 1
  • 18
  • 18