I want to use the R package BOLTSSIRR
available on GitHub in my R package, which I want to upload to CRAN.
I listed BOLTSSIRR
under Suggests:
in the DESCRIPTION
file and made the link to GitHub available using Additional_repositories: https://github.com/daviddaigithub/BOLTSSIRR
.
However, running R CMD check --as-cran
I get:
Suggests or Enhances not in mainstream repositories:
BOLTSSIRR
Availability using Additional_repositories specification:
BOLTSSIRR no ?
? ? https://github.com/daviddaigithub/BOLTSSIRR
Additional repositories with no packages:
https://github.com/daviddaigithub/BOLTSSIRR
So the GitHub link does not seem to get recognized in the check. Might I have to change something here?
Remotes:
field does not seem to get recognized in the check. I get: "* checking CRAN incoming feasibility ... WARNING Unknown, possibly mis-spelled, fields in DESCRIPTION: 'Remotes' Strong dependencies not in mainstream repositories: BOLTSSIRR". Note that in the case of the other question, both packages were on GitHub, whereas my package needs to be uploaded to CRAN. – Flashy