Skip to content

Bump version from 2.2.0 to 2.2.1#21

Open
zzawadz wants to merge 1 commit into
masterfrom
zzawadz-patch-1
Open

Bump version from 2.2.0 to 2.2.1#21
zzawadz wants to merge 1 commit into
masterfrom
zzawadz-patch-1

Conversation

@zzawadz

@zzawadz zzawadz commented Apr 25, 2026

Copy link
Copy Markdown
Owner

No description provided.

@zzawadz

zzawadz commented Apr 25, 2026

Copy link
Copy Markdown
Owner Author

✅ R CMD check: Check passed

Commit: 678252a1
R version: R version 4.5.3 (2026-03-11) -- "Reassured Reassurer"

Result Count
Errors 0
Warnings 0
Notes 1

Duration: 2m 24s

Click to expand full R CMD check output
R version 4.5.3 (2026-03-11) -- "Reassured Reassurer"
Copyright (C) 2026 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

  Natural language support but running in an English locale

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> 
> library(rcmdcheck)
> options(crayon.enabled = FALSE)
> 
> result <- rcmdcheck(
+     path = '.',
+     args = strsplit('--as-cran', ' ')[[1]],
+     build_args = c('--no-manual'),
+     error_on = 'never',
+     check_dir = '/pkg/check'
+ )
── R CMD build ─────────────────────────────────────────────────────────────────
* checking for file ‘.../DESCRIPTION’ ... OK
* preparing ‘DepthProc’:
* checking DESCRIPTION meta-information ... OK
* cleaning src
* checking for LF line-endings in source and make files and shell scripts
* checking for empty or unneeded directories
* looking to see if a ‘data/datalist’ file should be added
* building ‘DepthProc_2.2.1.tar.gz’

── R CMD check ─────────────────────────────────────────────────────────────────
* using log directory ‘/pkg/check/DepthProc.Rcheck’
* using R version 4.5.3 (2026-03-11)
* using platform: x86_64-pc-linux-gnu
* R was compiled by
    gcc (Debian 15.2.0-15) 15.2.0
    GNU Fortran (Debian 15.2.0-15) 15.2.0
* running under: Debian GNU/Linux forky/sid
* using session charset: UTF-8
* using option ‘--as-cran’
* checking for file ‘DepthProc/DESCRIPTION’ ... OK
* this is package ‘DepthProc’ version ‘2.2.1’
* package encoding: UTF-8
* checking CRAN incoming feasibility ... [7s/13s] NOTE
Maintainer: ‘Zygmunt Zawadzki <zygmunt@zstat.pl>’
Found the following (possibly) invalid URLs:
  URL: https://www.sciencedirect.com/science/article/pii/S0047259X99918638
    From: man/binningDepth2D.Rd
    Status: 403
    Message: Forbidden
Please use DOIs for the following publisher URLs:
  https://www.sciencedirect.com/science/article/pii/S0047259X99918638
* checking package namespace information ... OK
* checking package dependencies ... OK
* checking if this is a source package ... OK
* checking if there is a namespace ... OK
* checking for executable files ... OK
* checking for hidden files and directories ... OK
* checking for portable file names ... OK
* checking for sufficient/correct file permissions ... OK
* checking serialization versions ... OK
* checking whether package ‘DepthProc’ can be installed ... [66s/66s] OK
* used C++ compiler: ‘g++ (Debian 15.2.0-15) 15.2.0’
* checking installed package size ... INFO
  installed size is  7.6Mb
  sub-directories of 1Mb or more:
    libs   6.8Mb
* checking package directory ... OK
* checking for future file timestamps ... OK
* checking DESCRIPTION meta-information ... OK
* checking top-level files ... OK
* checking for left-over files ... OK
* checking index information ... OK
* checking package subdirectories ... OK
* checking code files for non-ASCII characters ... OK
* checking R files for syntax errors ... OK
* checking whether the package can be loaded ... OK
* checking whether the package can be loaded with stated dependencies ... OK
* checking whether the package can be unloaded cleanly ... OK
* checking whether the namespace can be loaded with stated dependencies ... OK
* checking whether the namespace can be unloaded cleanly ... OK
* checking loading without being on the library search path ... OK
* checking use of S3 registration ... OK
* checking dependencies in R code ... OK
* checking S3 generic/method consistency ... OK
* checking replacement functions ... OK
* checking foreign function calls ... OK
* checking R code for possible problems ... OK
* checking Rd files ... OK
* checking Rd metadata ... OK
* checking Rd line widths ... OK
* checking Rd cross-references ... OK
* checking for missing documentation entries ... OK
* checking for code/documentation mismatches ... OK
* checking Rd \usage sections ... OK
* checking Rd contents ... OK
* checking for unstated dependencies in examples ... OK
* checking contents of ‘data’ directory ... OK
* checking data for non-ASCII characters ... OK
* checking data for ASCII and uncompressed saves ... OK
* checking line endings in C/C++/Fortran sources/headers ... OK
* checking line endings in Makefiles ... OK
* checking compilation flags in Makevars ... OK
* checking for GNU extensions in Makefiles ... OK
* checking for portable use of $(BLAS_LIBS) and $(LAPACK_LIBS) ... OK
* checking use of PKG_*FLAGS in Makefiles ... OK
* checking use of SHLIB_OPENMP_*FLAGS in Makefiles ... OK
* checking pragmas in C/C++ headers and code ... OK
* checking compilation flags used ... OK
* checking compiled code ... OK
* checking examples ... [16s/15s] OK
* checking for unstated dependencies in ‘tests’ ... OK
* checking tests ...
  Running ‘testthat.R’
 OK
* checking PDF version of manual ... OK
* checking HTML version of manual ... OK
* checking for non-standard things in the check directory ... OK
* checking for detritus in the temp directory ... OK
* DONE

Status: 1 NOTE
See
  ‘/pkg/check/DepthProc.Rcheck/00check.log’
for details.
> 
> # Print summary
> cat('\n')

> cat('==========================================\n')
==========================================
> cat('R CMD CHECK RESULTS\n')
R CMD CHECK RESULTS
> cat('==========================================\n')
==========================================
> cat('\n')

> 
> errors <- length(result$errors)
> warnings <- length(result$warnings)
> notes <- length(result$notes)
> 
> cat(sprintf('Errors: %d\n', errors))
Errors: 0
> cat(sprintf('Warnings: %d\n', warnings))
Warnings: 0
> cat(sprintf('Notes: %d\n', notes))
Notes: 1
> cat('\n')

> 
> if (errors > 0) {
+     cat('--- ERRORS ---\n')
+     for (e in result$errors) {
+         cat(e)
+         cat('\n\n')
+     }
+ }
> 
> if (warnings > 0) {
+     cat('--- WARNINGS ---\n')
+     for (w in result$warnings) {
+         cat(w)
+         cat('\n\n')
+     }
+ }
> 
> if (notes > 0) {
+     cat('--- NOTES ---\n')
+     for (n in result$notes) {
+         cat(n)
+         cat('\n\n')
+     }
+ }
--- NOTES ---
checking CRAN incoming feasibility ... [7s/13s] NOTE
Maintainer: ‘Zygmunt Zawadzki <zygmunt@zstat.pl>’

Found the following (possibly) invalid URLs:
  URL: https://www.sciencedirect.com/science/article/pii/S0047259X99918638
    From: man/binningDepth2D.Rd
    Status: 403
    Message: Forbidden
Please use DOIs for the following publisher URLs:
  https://www.sciencedirect.com/science/article/pii/S0047259X99918638

> 
> # Read R version from file
> r_version <- trimws(readLines('/pkg/r_version.txt', n=1))
> 
> # Write summary to file for parsing
> writeLines(
+     c(
+         sprintf('ERRORS=%d', errors),
+         sprintf('WARNINGS=%d', warnings),
+         sprintf('NOTES=%d', notes),
+         sprintf('STATUS=%s', if (errors > 0) 'FAILURE' else if (warnings > 0) 'WARNING' else 'SUCCESS'),
+         sprintf('R_VERSION=%s', r_version)
+     ),
+     '/pkg/check_summary.txt'
+ )
> 
> # Exit with appropriate code
> if (errors > 0) {
+     quit(status = 1)
+ }
> 
>

Powered by R Check Bot

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant