Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborcsardi committed Dec 14, 2023
1 parent 1301731 commit 5742608
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cran.r-project.org/web/checks/check_flavors.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<div class="container">
<h2>CRAN Package Check Flavors</h2>
<p>
Last updated on 2023-12-13 03:59:39 CET.
Last updated on 2023-12-14 04:04:43 CET.
</p>
<p>
Systems used for CRAN package checking.
Expand Down
2 changes: 1 addition & 1 deletion cran.r-project.org/web/checks/check_issue_kinds.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<div class="container">
<h2>CRAN Package Check Issue Kinds</h2>
<p>
Last updated on 2023-12-13 03:59:39 CET.
Last updated on 2023-12-14 04:04:43 CET.
</p>
<table border="1">
<tr> <th> Kind </th> <th> Description </th> <th> Details </th> </tr>
Expand Down
10 changes: 8 additions & 2 deletions svn.r-project.org/R-dev-web/trunk/CRAN/QA/Kurt/.R/check.Renviron
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## KH's personal ~/.R/check.Renviron.
## Last updated on 2023-11-23
## Last updated on 2023-12-08

### Defaults for '--as-cran": commented out where not appropriate for
### all KH checks.
Expand Down Expand Up @@ -87,7 +87,7 @@ _R_CHECK_REPLACING_IMPORTS_=true
_R_CHECK_SRC_MINUS_W_IMPLICIT_=true
_R_CHECK_SUGGESTS_ONLY_=${_R_CHECK_SUGGESTS_ONLY_-true}
_R_CHECK_SYSTEM_CLOCK_=false
_R_CHECK_THINGS_IN_TEMP_DIR_EXCLUDE_="^(ompi|pulse|runtime-)"
_R_CHECK_THINGS_IN_TEMP_DIR_EXCLUDE_="^(ompi|pmix-gds-shmem|pulse|runtime-)"
_R_CHECK_VIGNETTES_SKIP_RUN_MAYBE_=true
_R_CHECK_XREFS_USE_ALIASES_FROM_CRAN_=true
## Outputs
Expand All @@ -103,4 +103,10 @@ _R_CHECK_VIGNETTE_TIMING_CPU_TO_ELAPSED_THRESHOLD_=${_R_CHECK_VIGNETTE_TIMING_CP
_R_CHECK_INSTALL_TIMING_CPU_TO_ELAPSED_THRESHOLD_=${_R_CHECK_INSTALL_TIMING_CPU_TO_ELAPSED_THRESHOLD_-2.5}
## Others
_R_GC_FAIL_ON_ERROR_=true

## R_USEMETHOD_FORWARD_LOCALS=error

## <FIXME>
## Remove eventually: for experimenting with NCOL(NULL).
_R_NCOL_NULL_IS_ZERO_=true
## </FIXME>
6 changes: 4 additions & 2 deletions svn.r-project.org/R-dev-web/trunk/CRAN/QA/Kurt/bin/check-R-ng
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ configure_args="${configure_args} ${blas}"

case "${R_flavor}" in
r-devel)
R_source_url=https://cran.r-project.org/src/base-prerelease/R-devel.tar.gz
## R_source_url=https://stat.ethz.ch/R/daily/R-devel.tar.gz
## R_source_url=https://cran.r-project.org/src/base-prerelease/R-devel.tar.xz
R_source_url=https://stat.ethz.ch/R/daily/R-devel.tar.xz
;;
r-patched)
R_source_url=https://cran.r-project.org/src/base-prerelease/R-latest.tar.gz
Expand Down Expand Up @@ -331,6 +331,8 @@ mv src src.save
touch stamp &&
(if test "${R_flavor}" = "local"; then
tar zxmf "${R_source_path}"
elif test "${R_source_url##*.}" = "xz"; then
wget -O - --retr-symlinks ${R_source_url} | tar Jxmf -
else
wget -O - --retr-symlinks ${R_source_url} | tar zxmf -
fi) &&
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,10 @@ check_env <-
"_R_CHECK_CRAN_INCOMING_=false",
## </FIXME>
"_R_CHECK_CONNECTIONS_LEFT_OPEN_=false",
## <FIXME>
## Remove eventually ...
## "_R_CHECK_SRC_MINUS_W_FORMAT_EXCEPTIONS_",
## </FIXME>
"_R_CHECK_THINGS_IN_TEMP_DIR_=false",
## "_R_CHECK_XREFS_MIND_SUSPECT_ANCHORS_=false",
## <FIXME>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ if(endsWith(Sys.getenv("R_MAKEVARS_USER"), "-clang"))

## <FIXME>
## Remove eventually: for experimenting with NCOL(NULL) only.
## Sys.setenv("_R_NCOL_NULL_IS_ZERO_" = "true")
Sys.setenv("_R_NCOL_NULL_IS_ZERO_" = "true")
## </FIXME>

## <FIXME>
Expand Down

0 comments on commit 5742608

Please sign in to comment.