-
Notifications
You must be signed in to change notification settings - Fork 2
R CMD check WARNINGs due to license #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I can replicate the error. I can fix the issue by following your suggestion of: License: GPL-3 + file LICENSE in the DESCRIPTION file and I've added Year: 2020 to the LICENSE file after "END OF TERMS AND CONDITIONS" This doesn't give me any warnings or notes when when I build the package with "check --as-cran". Note: this will also affect the "Missing parts of GPL-3 #1" open issue. |
You've described an appropriate fix, appreciate the context. Changes look great, thank you! |
Previous DESCRIPTION versions list
GPL (>=2)
as the package license; currently, DESCRIPTION refers to the fileLICENSE
, which (I think) is usually reserved for non-standard licenses (the file itself contains GPL-3, a standard FOSS license).This results in 2 WARNINGs in
R CMD check --as-cran
for c212 on my local machine with the following text:IMO, this could be fixed by switching the package license in DESCRIPTION to
GPL-3
; however,GPL-3 + file LICENSE
could also be appropriate.Can use this chapter from the R Packages book as a reference.
Part of this JOSS review.
The text was updated successfully, but these errors were encountered: