Skip to content

Commit

Permalink
Tweaks.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.r-project.org/R/trunk@87626 00db46b3-68df-0310-9c12-caf00c1e9a41
  • Loading branch information
hornik committed Jan 24, 2025
1 parent a4d2f4a commit 12e3558
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
5 changes: 3 additions & 2 deletions doc/manual/R-exts.texi
Original file line number Diff line number Diff line change
Expand Up @@ -493,8 +493,9 @@ specification. The @samp{Author} and @samp{Maintainer} fields are
auto-generated from it if needed when building@footnote{at least if this
is done in a locale which matches the package encoding.} or installing.
Note that for CRAN submissions, providing @samp{Authors@@R} is required,
and providing @abbr{ORCID} identifiers (see @url{https://orcid.org/})
where possible is strongly encouraged.
and providing @abbr{ORCID} or @abbr{ROR} identifiers (see
@url{https://orcid.org/} and @url{https://ror.org/}) where possible is
strongly encouraged.

@findex COPYRIGHTS
@c DESCRIPTION field Copyright
Expand Down
7 changes: 7 additions & 0 deletions src/library/tools/R/check.R
Original file line number Diff line number Diff line change
Expand Up @@ -1086,6 +1086,13 @@ add_dummies <- function(dir, Log)
y[1L], fixed = TRUE)
diff[1L] <- clean_up(y1) != yorig[1L]
}
if(diff[1L]
&& grepl("<https://ror.org/", y[1L], fixed = TRUE)) {
y1 <- gsub("ROR: <https://ror.org/",
"<https://ror.org/",
y[1L], fixed = TRUE)
diff[1L] <- clean_up(y1) != yorig[1L]
}
## </FIXME>
## <FIXME>
## Remove eventually.
Expand Down

0 comments on commit 12e3558

Please sign in to comment.