CRAN Package Check Results for Maintainer ‘Dirk Eddelbuettel <edd at debian.org>’

Last updated on 2024-12-22 10:50:20 CET.

Package ERROR WARN NOTE OK
anytime 13
AsioHeaders 6 7
BH 6 7
binb 13
ciw 13
corels 4 9
crc32c 13
dang 13
digest 13
drat 13
dtts 13
gaussfacts 13
gcbd 6 4
gettz 13
gunsales 13
inline 2 11
linl 13
littler 8
nanotime 2 11
pinp 13
pkgKitten 13
prrd 13
qlcal 4 9
random 13
RApiDatetime 1 11
RApiSerialize 13
Rblpapi 2 4 7
Rcpp 8 5
RcppAnnoy 4 9
RcppAPT 11
RcppArmadillo 1 5 7
RcppBDT 13
RcppCCTZ 1 12
RcppClassic 13
RcppClassicExamples 13
RcppCNPy 13
RcppDate 13
RcppDE 13
RcppEigen 6 7
RcppExamples 10 3
RcppFarmHash 13
RcppFastAD 4 9
RcppFastFloat 13
RcppGetconf 2 8
RcppGSL 13
RcppInt64 13
RcppMagicEnum 13
RcppMsgPack 13
RcppNLoptExample 13
RcppQuantuccia 4 9
RcppRedis 13
RcppSimdJson 6 7
RcppSMC 12 1
RcppSpdlog 4 9
RcppStreams 13
RcppTOML 13
RcppXts 13
RcppZiggurat 13
RDieHarder 13
rfoaas 13
RInside 13
rmsfact 13
RProtoBuf 11 2
RPushbullet 13
RQuantLib 1 1 5 5
sanitizers 13
spdl 13
td 13
tidyCpp 13
tint 3 10
tinythemes 3 10
ttdo 3 10
ulid 13
x13binary 2 11

Package anytime

Current CRAN status: OK: 13

Package AsioHeaders

Current CRAN status: NOTE: 6, OK: 7

Version: 1.22.1-2
Check: installed package size
Result: NOTE installed size is 6.4Mb sub-directories of 1Mb or more: include 6.4Mb Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Package BH

Current CRAN status: NOTE: 6, OK: 7

Version: 1.87.0-1
Check: installed package size
Result: NOTE installed size is 164.0Mb sub-directories of 1Mb or more: include 164.0Mb Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Package binb

Current CRAN status: OK: 13

Package ciw

Current CRAN status: OK: 13

Package corels

Current CRAN status: NOTE: 4, OK: 9

Version: 0.0.5
Check: installed package size
Result: NOTE installed size is 5.6Mb sub-directories of 1Mb or more: libs 2.8Mb sample_data 2.6Mb Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64

Package crc32c

Current CRAN status: OK: 13

Package dang

Current CRAN status: OK: 13

Package digest

Current CRAN status: OK: 13

Package drat

Current CRAN status: OK: 13

Package dtts

Current CRAN status: OK: 13

Package gaussfacts

Current CRAN status: OK: 13

Package gcbd

Current CRAN status: NOTE: 6, OK: 4

Version: 0.2.7
Flags: --no-vignettes
Check: package dependencies
Result: NOTE Package suggested but not available for checking: ‘gputools’ Flavors: r-patched-linux-x86_64, r-release-linux-x86_64

Version: 0.2.7
Check: package dependencies
Result: NOTE Package suggested but not available for checking: ‘gputools’ Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64

Package gettz

Current CRAN status: OK: 13

Package gunsales

Current CRAN status: OK: 13

Package inline

Current CRAN status: ERROR: 2, OK: 11

Version: 0.3.20
Check: examples
Result: ERROR Running examples in ‘inline-Ex.R’ failed The error most likely occurred in: > base::assign(".ptime", proc.time(), pos = "CheckExEnv") > ### Name: cfunction > ### Title: Inline C, C++, Fortran function calls from R > ### Aliases: cfunction setCMethod > ### Keywords: file > > ### ** Examples > > > x <- as.numeric(1:10) > n <- as.integer(10) > > ## Not run: > ##D ## A simple Fortran example - n and x: assumed-size vector > ##D code <- " > ##D integer i > ##D do 1 i=1, n(1) > ##D 1 x(i) = x(i)**3 > ##D " > ##D cubefn <- cfunction(signature(n="integer", x="numeric"), code, convention=".Fortran") > ##D print(cubefn) > ##D > ##D cubefn(n, x)$x > ##D > ##D ## Same Fortran example - now n is one number > ##D code2 <- " > ##D integer i > ##D do 1 i=1, n > ##D 1 x(i) = x(i)**3 > ##D " > ##D cubefn2 <- cfunction(signature(n="integer", x="numeric"), implicit = "none", > ##D dim = c("", "(*)"), code2, convention=".Fortran") > ##D > ##D cubefn2(n, x)$x > ##D > ##D ## Same in F95, now x is fixed-size vector (length = n) > ##D code3 <- "x = x*x*x" > ##D cubefn3 <- cfunction(sig = signature(n="integer", x="numeric"), implicit = "none", > ##D dim = c("", "(n)"), code3, language="F95") > ##D cubefn3(20, 1:20) > ##D print(cubefn3) > ##D > ##D ## Same example in C > ##D code4 <- " > ##D int i; > ##D for (i = 0; i < *n; i++) > ##D x[i] = x[i]*x[i]*x[i]; > ##D " > ##D cubefn4 <- cfunction(signature(n="integer", x="numeric"), code4, language = "C", convention = ".C") > ##D cubefn4(20, 1:20) > ##D > ##D ## Give the function in the source code a name > ##D cubefn5 <- cfunction(signature(n="integer", x="numeric"), code4, language = "C", convention = ".C", > ##D name = "cubefn") > ##D code(cubefn5) > ## End(Not run) > > ## use of a module in F95 > modct <- "module modcts + double precision, parameter :: pi = 3.14159265358979 + double precision, parameter :: e = 2.71828182845905 + end" > > getconstants <- "x(1) = pi + x(2) = e" > > cgetcts <- cfunction(getconstants, module = "modcts", implicit = "none", + includes = modct, sig = c(x = "double"), dim = c("(2)"), language = "F95") > > cgetcts(x = 1:2) $x [1] 3.141593 2.718282 > print(cgetcts) An object of class 'CFunc' function (x) .Primitive(".Fortran")(<pointer: 0x7f06d6d48100>, x = as.double(x)) <environment: 0x564231f491f8> code: 1: module modcts 2: double precision, parameter :: pi = 3.14159265358979 3: double precision, parameter :: e = 2.71828182845905 4: end 5: SUBROUTINE file22b9751e5eec40 ( x ) 6: USE modcts 7: IMPLICIT none 8: DOUBLE PRECISION x(2) 9: x(1) = pi 10: x(2) = e 11: RETURN 12: END 13: > > ## Use of .C convention with C code > ## Defining two functions, one of which calls the other > sigSq <- signature(n="integer", x="numeric") > codeSq <- " + for (int i=0; i < *n; i++) { + x[i] = x[i]*x[i]; + }" > sigQd <- signature(n="integer", x="numeric") > codeQd <- " + squarefn(n, x); + squarefn(n, x); + " > > fns <- cfunction( list(squarefn=sigSq, quadfn=sigQd), + list(codeSq, codeQd), + convention=".C") > > squarefn <- fns[["squarefn"]] > quadfn <- fns[["quadfn"]] > > squarefn(n, x)$x [1] 1 4 9 16 25 36 49 64 81 100 > quadfn(n, x)$x [1] 1 16 81 256 625 1296 2401 4096 6561 10000 > > ## Alternative declaration using 'setCMethod' > setCMethod(c("squarefn", "quadfn"), list(sigSq, sigQd), + list(codeSq, codeQd), convention=".C") > > squarefn(n, x)$x [1] 1 4 9 16 25 36 49 64 81 100 > quadfn(n, x)$x [1] 1 16 81 256 625 1296 2401 4096 6561 10000 > > ## Use of .Call convention with C code > ## Multyplying each image in a stack with a 2D Gaussian at a given position > code <- " + SEXP res; + int nprotect = 0, nx, ny, nz, x, y; + PROTECT(res = Rf_duplicate(a)); nprotect++; + nx = INTEGER(GET_DIM(a))[0]; + ny = INTEGER(GET_DIM(a))[1]; + nz = INTEGER(GET_DIM(a))[2]; + double sigma2 = REAL(s)[0] * REAL(s)[0], d2 ; + double cx = REAL(centre)[0], cy = REAL(centre)[1], *data, *rdata; + for (int im = 0; im < nz; im++) { + data = &(REAL(a)[im*nx*ny]); rdata = &(REAL(res)[im*nx*ny]); + for (x = 0; x < nx; x++) + for (y = 0; y < ny; y++) { + d2 = (x-cx)*(x-cx) + (y-cy)*(y-cy); + rdata[x + y*nx] = data[x + y*nx] * exp(-d2/sigma2); + } + } + UNPROTECT(nprotect); + return res; + " > funx <- cfunction(signature(a="array", s="numeric", centre="numeric"), code) ERROR(s) during compilation: source code errors or compiler configuration errors! make cmd is make -f '/home/hornik/tmp/R.check/r-patched-gcc/Work/build/etc/Makeconf' -f '/home/hornik/tmp/R.check/r-patched-gcc/Work/build/share/make/shlib.mk' -f '/home/hornik/.R/Makevars-gcc' SHLIB_LDFLAGS='$(SHLIB_CXXLDFLAGS)' SHLIB_LD='$(SHLIB_CXXLD)' SHLIB='file22b9752e0d99da.so' CXX_DEFS=-DR_NO_REMAP OBJECTS='file22b9752e0d99da.o' make would use make[1]: Entering directory '/home/hornik/tmp/scratch/RtmpZ4r1jj' g++-14 -std=gnu++17 -I"/home/hornik/tmp/R.check/r-patched-gcc/Work/build/include" -DNDEBUG -I/usr/local/include -D_FORTIFY_SOURCE=3 -fpic -g -O2 -Wall -pedantic -mtune=native -DR_NO_REMAP -c file22b9752e0d99da.cpp -o file22b9752e0d99da.o if test "zfile22b9752e0d99da.o" != "z"; then \ echo g++-14 -std=gnu++17 -shared -L"/home/hornik/tmp/R.check/r-patched-gcc/Work/build/lib" -Wl,-O1 -o file22b9752e0d99da.so file22b9752e0d99da.o -L"/home/hornik/tmp/R.check/r-patched-gcc/Work/build/lib" -lR; \ g++-14 -std=gnu++17 -shared -L"/home/hornik/tmp/R.check/r-patched-gcc/Work/build/lib" -Wl,-O1 -o file22b9752e0d99da.so file22b9752e0d99da.o -L"/home/hornik/tmp/R.check/r-patched-gcc/Work/build/lib" -lR; \ fi make[1]: Leaving directory '/home/hornik/tmp/scratch/RtmpZ4r1jj' Program source: 1: #include <R.h> 2: #include <Rdefines.h> 3: #include <R_ext/Error.h> 4: 5: 6: extern "C" { 7: SEXP file22b9752e0d99da ( SEXP a, SEXP s, SEXP centre ); 8: } 9: 10: SEXP file22b9752e0d99da ( SEXP a, SEXP s, SEXP centre ) { 11: 12: SEXP res; 13: int nprotect = 0, nx, ny, nz, x, y; 14: PROTECT(res = Rf_duplicate(a)); nprotect++; 15: nx = INTEGER(GET_DIM(a))[0]; 16: ny = INTEGER(GET_DIM(a))[1]; 17: nz = INTEGER(GET_DIM(a))[2]; 18: double sigma2 = REAL(s)[0] * REAL(s)[0], d2 ; 19: double cx = REAL(centre)[0], cy = REAL(centre)[1], *data, *rdata; 20: for (int im = 0; im < nz; im++) { 21: data = &(REAL(a)[im*nx*ny]); rdata = &(REAL(res)[im*nx*ny]); 22: for (x = 0; x < nx; x++) 23: for (y = 0; y < ny; y++) { 24: d2 = (x-cx)*(x-cx) + (y-cy)*(y-cy); 25: rdata[x + y*nx] = data[x + y*nx] * exp(-d2/sigma2); 26: } 27: } 28: UNPROTECT(nprotect); 29: return res; 30: 31: warning("your C program does not return anything!"); 32: return R_NilValue; 33: } Compilation ERROR, function(s)/method(s) not created! Error in compileCode(f, code, language, verbose) : using C++ compiler: ‘g++-14 (Debian 14.2.0-8) 14.2.0’ file22b9752e0d99da.cpp: In function ‘SEXPREC* file22b9752e0d99da(SEXP, SEXP, SEXP)’: file22b9752e0d99da.cpp:31:3: error: ‘warning’ was not declared in this scope; did you mean ‘Rf_warning’? 31 | warning("your C program does not return anything!"); | ^~~~~~~ | Rf_warning make[1]: *** [/home/hornik/tmp/R.check/r-patched-gcc/Work/build/etc/Makeconf:202: file22b9752e0d99da.o] Error 1 Calls: cfunction -> compileCode Execution halted Flavor: r-patched-linux-x86_64

Version: 0.3.20
Check: examples
Result: ERROR Running examples in ‘inline-Ex.R’ failed The error most likely occurred in: > base::assign(".ptime", proc.time(), pos = "CheckExEnv") > ### Name: cfunction > ### Title: Inline C, C++, Fortran function calls from R > ### Aliases: cfunction setCMethod > ### Keywords: file > > ### ** Examples > > > x <- as.numeric(1:10) > n <- as.integer(10) > > ## Not run: > ##D ## A simple Fortran example - n and x: assumed-size vector > ##D code <- " > ##D integer i > ##D do 1 i=1, n(1) > ##D 1 x(i) = x(i)**3 > ##D " > ##D cubefn <- cfunction(signature(n="integer", x="numeric"), code, convention=".Fortran") > ##D print(cubefn) > ##D > ##D cubefn(n, x)$x > ##D > ##D ## Same Fortran example - now n is one number > ##D code2 <- " > ##D integer i > ##D do 1 i=1, n > ##D 1 x(i) = x(i)**3 > ##D " > ##D cubefn2 <- cfunction(signature(n="integer", x="numeric"), implicit = "none", > ##D dim = c("", "(*)"), code2, convention=".Fortran") > ##D > ##D cubefn2(n, x)$x > ##D > ##D ## Same in F95, now x is fixed-size vector (length = n) > ##D code3 <- "x = x*x*x" > ##D cubefn3 <- cfunction(sig = signature(n="integer", x="numeric"), implicit = "none", > ##D dim = c("", "(n)"), code3, language="F95") > ##D cubefn3(20, 1:20) > ##D print(cubefn3) > ##D > ##D ## Same example in C > ##D code4 <- " > ##D int i; > ##D for (i = 0; i < *n; i++) > ##D x[i] = x[i]*x[i]*x[i]; > ##D " > ##D cubefn4 <- cfunction(signature(n="integer", x="numeric"), code4, language = "C", convention = ".C") > ##D cubefn4(20, 1:20) > ##D > ##D ## Give the function in the source code a name > ##D cubefn5 <- cfunction(signature(n="integer", x="numeric"), code4, language = "C", convention = ".C", > ##D name = "cubefn") > ##D code(cubefn5) > ## End(Not run) > > ## use of a module in F95 > modct <- "module modcts + double precision, parameter :: pi = 3.14159265358979 + double precision, parameter :: e = 2.71828182845905 + end" > > getconstants <- "x(1) = pi + x(2) = e" > > cgetcts <- cfunction(getconstants, module = "modcts", implicit = "none", + includes = modct, sig = c(x = "double"), dim = c("(2)"), language = "F95") > > cgetcts(x = 1:2) $x [1] 3.141593 2.718282 > print(cgetcts) An object of class 'CFunc' function (x) .Primitive(".Fortran")(<pointer: 0x7f7f61145100>, x = as.double(x)) <environment: 0x55d895bc75b0> code: 1: module modcts 2: double precision, parameter :: pi = 3.14159265358979 3: double precision, parameter :: e = 2.71828182845905 4: end 5: SUBROUTINE file1df94a32722840 ( x ) 6: USE modcts 7: IMPLICIT none 8: DOUBLE PRECISION x(2) 9: x(1) = pi 10: x(2) = e 11: RETURN 12: END 13: > > ## Use of .C convention with C code > ## Defining two functions, one of which calls the other > sigSq <- signature(n="integer", x="numeric") > codeSq <- " + for (int i=0; i < *n; i++) { + x[i] = x[i]*x[i]; + }" > sigQd <- signature(n="integer", x="numeric") > codeQd <- " + squarefn(n, x); + squarefn(n, x); + " > > fns <- cfunction( list(squarefn=sigSq, quadfn=sigQd), + list(codeSq, codeQd), + convention=".C") > > squarefn <- fns[["squarefn"]] > quadfn <- fns[["quadfn"]] > > squarefn(n, x)$x [1] 1 4 9 16 25 36 49 64 81 100 > quadfn(n, x)$x [1] 1 16 81 256 625 1296 2401 4096 6561 10000 > > ## Alternative declaration using 'setCMethod' > setCMethod(c("squarefn", "quadfn"), list(sigSq, sigQd), + list(codeSq, codeQd), convention=".C") > > squarefn(n, x)$x [1] 1 4 9 16 25 36 49 64 81 100 > quadfn(n, x)$x [1] 1 16 81 256 625 1296 2401 4096 6561 10000 > > ## Use of .Call convention with C code > ## Multyplying each image in a stack with a 2D Gaussian at a given position > code <- " + SEXP res; + int nprotect = 0, nx, ny, nz, x, y; + PROTECT(res = Rf_duplicate(a)); nprotect++; + nx = INTEGER(GET_DIM(a))[0]; + ny = INTEGER(GET_DIM(a))[1]; + nz = INTEGER(GET_DIM(a))[2]; + double sigma2 = REAL(s)[0] * REAL(s)[0], d2 ; + double cx = REAL(centre)[0], cy = REAL(centre)[1], *data, *rdata; + for (int im = 0; im < nz; im++) { + data = &(REAL(a)[im*nx*ny]); rdata = &(REAL(res)[im*nx*ny]); + for (x = 0; x < nx; x++) + for (y = 0; y < ny; y++) { + d2 = (x-cx)*(x-cx) + (y-cy)*(y-cy); + rdata[x + y*nx] = data[x + y*nx] * exp(-d2/sigma2); + } + } + UNPROTECT(nprotect); + return res; + " > funx <- cfunction(signature(a="array", s="numeric", centre="numeric"), code) ERROR(s) during compilation: source code errors or compiler configuration errors! make cmd is make -f '/home/hornik/tmp/R.check/r-release-gcc/Work/build/etc/Makeconf' -f '/home/hornik/tmp/R.check/r-release-gcc/Work/build/share/make/shlib.mk' -f '/home/hornik/.R/Makevars-gcc' SHLIB_LDFLAGS='$(SHLIB_CXXLDFLAGS)' SHLIB_LD='$(SHLIB_CXXLD)' SHLIB='file1df94a1db4f949.so' CXX_DEFS=-DR_NO_REMAP OBJECTS='file1df94a1db4f949.o' make would use make[1]: Entering directory '/home/hornik/tmp/scratch/RtmpAVBfRj' g++-14 -std=gnu++17 -I"/home/hornik/tmp/R.check/r-release-gcc/Work/build/include" -DNDEBUG -I/usr/local/include -D_FORTIFY_SOURCE=3 -fpic -g -O2 -Wall -pedantic -mtune=native -DR_NO_REMAP -c file1df94a1db4f949.cpp -o file1df94a1db4f949.o if test "zfile1df94a1db4f949.o" != "z"; then \ echo g++-14 -std=gnu++17 -shared -L"/home/hornik/tmp/R.check/r-release-gcc/Work/build/lib" -Wl,-O1 -o file1df94a1db4f949.so file1df94a1db4f949.o -L"/home/hornik/tmp/R.check/r-release-gcc/Work/build/lib" -lR; \ g++-14 -std=gnu++17 -shared -L"/home/hornik/tmp/R.check/r-release-gcc/Work/build/lib" -Wl,-O1 -o file1df94a1db4f949.so file1df94a1db4f949.o -L"/home/hornik/tmp/R.check/r-release-gcc/Work/build/lib" -lR; \ fi make[1]: Leaving directory '/home/hornik/tmp/scratch/RtmpAVBfRj' Program source: 1: #include <R.h> 2: #include <Rdefines.h> 3: #include <R_ext/Error.h> 4: 5: 6: extern "C" { 7: SEXP file1df94a1db4f949 ( SEXP a, SEXP s, SEXP centre ); 8: } 9: 10: SEXP file1df94a1db4f949 ( SEXP a, SEXP s, SEXP centre ) { 11: 12: SEXP res; 13: int nprotect = 0, nx, ny, nz, x, y; 14: PROTECT(res = Rf_duplicate(a)); nprotect++; 15: nx = INTEGER(GET_DIM(a))[0]; 16: ny = INTEGER(GET_DIM(a))[1]; 17: nz = INTEGER(GET_DIM(a))[2]; 18: double sigma2 = REAL(s)[0] * REAL(s)[0], d2 ; 19: double cx = REAL(centre)[0], cy = REAL(centre)[1], *data, *rdata; 20: for (int im = 0; im < nz; im++) { 21: data = &(REAL(a)[im*nx*ny]); rdata = &(REAL(res)[im*nx*ny]); 22: for (x = 0; x < nx; x++) 23: for (y = 0; y < ny; y++) { 24: d2 = (x-cx)*(x-cx) + (y-cy)*(y-cy); 25: rdata[x + y*nx] = data[x + y*nx] * exp(-d2/sigma2); 26: } 27: } 28: UNPROTECT(nprotect); 29: return res; 30: 31: warning("your C program does not return anything!"); 32: return R_NilValue; 33: } Compilation ERROR, function(s)/method(s) not created! Error in compileCode(f, code, language, verbose) : using C++ compiler: ‘g++-14 (Debian 14.2.0-8) 14.2.0’ file1df94a1db4f949.cpp: In function ‘SEXPREC* file1df94a1db4f949(SEXP, SEXP, SEXP)’: file1df94a1db4f949.cpp:31:3: error: ‘warning’ was not declared in this scope; did you mean ‘Rf_warning’? 31 | warning("your C program does not return anything!"); | ^~~~~~~ | Rf_warning make[1]: *** [/home/hornik/tmp/R.check/r-release-gcc/Work/build/etc/Makeconf:202: file1df94a1db4f949.o] Error 1 Calls: cfunction -> compileCode Execution halted Flavor: r-release-linux-x86_64

Package linl

Current CRAN status: OK: 13

Package littler

Current CRAN status: OK: 8

Package nanotime

Current CRAN status: NOTE: 2, OK: 11

Version: 0.3.10
Check: installed package size
Result: NOTE installed size is 5.2Mb sub-directories of 1Mb or more: libs 4.2Mb Flavors: r-release-macos-arm64, r-oldrel-macos-arm64

Package pinp

Current CRAN status: OK: 13

Package pkgKitten

Current CRAN status: OK: 13

Package prrd

Current CRAN status: OK: 13

Package qlcal

Current CRAN status: NOTE: 4, OK: 9

Version: 0.0.13
Check: installed package size
Result: NOTE installed size is 7.7Mb sub-directories of 1Mb or more: libs 7.5Mb Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64

Package random

Current CRAN status: OK: 13

Package RApiDatetime

Current CRAN status: NOTE: 1, OK: 11

Version: 0.0.8
Check: Rd contents
Result: NOTE Auto-generated content requiring editing in Rd file 'RApiDatetime-package.Rd': \references: 'This optional section can contain literature or other refere...' \seealso: 'Optional links to other man pages' \examples: '# Optional simple examples of the most important functions' Flavor: r-release-windows-x86_64

Package RApiSerialize

Current CRAN status: OK: 13

Package Rblpapi

Current CRAN status: ERROR: 2, NOTE: 4, OK: 7

Version: 0.3.15
Check: installed package size
Result: NOTE installed size is 27.2Mb sub-directories of 1Mb or more: blp 20.1Mb libs 5.9Mb Flavors: r-release-macos-arm64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-windows-x86_64

Version: 0.3.15
Check: whether package can be installed
Result: ERROR Installation failed. Flavors: r-release-macos-x86_64, r-oldrel-macos-x86_64

Package Rcpp

Current CRAN status: NOTE: 8, OK: 5

Version: 1.0.13-1
Check: foreign function calls
Result: NOTE Registration problem: symbol ‘symbol’ in the local frame: .Call(symbol) See chapter ‘System and foreign language interfaces’ in the ‘Writing R Extensions’ manual. Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc

Version: 1.0.13-1
Check: installed package size
Result: NOTE installed size is 14.5Mb sub-directories of 1Mb or more: doc 1.1Mb include 6.3Mb libs 5.2Mb Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Package RcppAnnoy

Current CRAN status: NOTE: 4, OK: 9

Version: 0.0.22
Check: installed package size
Result: NOTE installed size is 6.5Mb sub-directories of 1Mb or more: libs 6.2Mb Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64

Package RcppAPT

Current CRAN status: OK: 11

Package RcppArmadillo

Current CRAN status: ERROR: 1, NOTE: 5, OK: 7

Version: 14.2.2-1
Check: installed package size
Result: NOTE installed size is 9.6Mb sub-directories of 1Mb or more: include 6.6Mb libs 2.2Mb Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Version: 14.2.2-1
Check: tests
Result: ERROR Running 'tinytest.R' [21s] Running the tests in 'tests/tinytest.R' failed. Complete output: > > if (requireNamespace("tinytest", quietly=TRUE)) { + tinytest::test_package("RcppArmadillo") + } test_Rlapack.R................ 0 tests test_Rlapack.R................ 0 tests using C++ compiler: 'g++.exe (GCC) 12.3.0' make[1]: Entering directory '/d/temp/2024_12_20_01_50_00_19051/RtmpCyVhvb/sourceCpp-x86_64-w64-mingw32-1.0.13.1/sourcecpp_193e02ea4141c' g++ -std=gnu++17 -I"D:/RCompile/recent/R-4.3.3/include" -DNDEBUG -I../inst/include -fopenmp -I"D:/RCompile/CRANpkg/lib/4.3/Rcpp/include" -I"D:/RCompile/CRANpkg/lib/4.3/RcppArmadillo/include" -I"D:/RCompile/CRANpkg/lib/4.3/RcppArmadillo/tinytest/cpp" -I"d:/rtools43/x86_64-w64-mingw32.static.posix/include" -pedantic -O2 -Wall -mfpmath=sse -msse2 -mstackrealign -c Rlapack.cpp -o Rlapack.o g++ -std=gnu++17 -shared -s -static-libgcc -o sourceCpp_2.dll tmp.def Rlapack.o -fopenmp -LD:/RCompile/recent/R-4.3.3/bin/x64 -lRlapack -LD:/RCompile/recent/R-4.3.3/bin/x64 -lRblas -lgfortran -lm -lquadmath -Ld:/rtools43/x86_64-w64-mingw32.static.posix/lib/x64 -Ld:/rtools43/x86_64-w64-mingw32.static.posix/lib -LD:/RCompile/recent/R-4.3.3/bin/x64 -lR D:\rtools43\x86_64-w64-mingw32.static.posix\bin/ld.exe: Rlapack.o:Rlapack.cpp:(.text$_ZN4arma6auxlib15solve_sym_rcondINS_3MatISt7complexIdEEEEEbRNS2_IS3_INT_8pod_typeEEEERS7_SA_RKNS_4BaseIS8_S6_EE[_ZN4arma6auxlib15solve_sym_rcondINS_3MatISt7complexIdEEEEEbRNS2_IS3_INT_8pod_typeEEEERS7_SA_RKNS_4BaseIS8_S6_EE]+0x238): undefined reference to `zhetrf_' D:\rtools43\x86_64-w64-mingw32.static.posix\bin/ld.exe: Rlapack.o:Rlapack.cpp:(.text$_ZN4arma6auxlib15solve_sym_rcondINS_3MatISt7complexIdEEEEEbRNS2_IS3_INT_8pod_typeEEEERS7_SA_RKNS_4BaseIS8_S6_EE[_ZN4arma6auxlib15solve_sym_rcondINS_3MatISt7complexIdEEEEEbRNS2_IS3_INT_8pod_typeEEEERS7_SA_RKNS_4BaseIS8_S6_EE]+0x28b): undefined reference to `zhetrs_' D:\rtools43\x86_64-w64-mingw32.static.posix\bin/ld.exe: Rlapack.o:Rlapack.cpp:(.text$_ZN4arma6auxlib15solve_sym_rcondINS_3MatISt7complexIdEEEEEbRNS2_IS3_INT_8pod_typeEEEERS7_SA_RKNS_4BaseIS8_S6_EE[_ZN4arma6auxlib15solve_sym_rcondINS_3MatISt7complexIdEEEEEbRNS2_IS3_INT_8pod_typeEEEERS7_SA_RKNS_4BaseIS8_S6_EE]+0x2e5): undefined reference to `zhecon_' D:\rtools43\x86_64-w64-mingw32.static.posix\bin/ld.exe: Rlapack.o:Rlapack.cpp:(.text$_ZN4arma6auxlib15solve_sym_rcondINS_3MatISt7complexIdEEEEEbRNS2_IS3_INT_8pod_typeEEEERS7_SA_RKNS_4BaseIS8_S6_EE[_ZN4arma6auxlib15solve_sym_rcondINS_3MatISt7complexIdEEEEEbRNS2_IS3_INT_8pod_typeEEEERS7_SA_RKNS_4BaseIS8_S6_EE]+0x3d0): undefined reference to `zhetrf_' collect2.exe: error: ld returned 1 exit status make[1]: Leaving directory '/d/temp/2024_12_20_01_50_00_19051/RtmpCyVhvb/sourceCpp-x86_64-w64-mingw32-1.0.13.1/sourcecpp_193e02ea4141c' make[1]: Entering directory '/d/temp/2024_12_20_01_50_00_19051/RtmpCyVhvb/sourceCpp-x86_64-w64-mingw32-1.0.13.1/sourcecpp_193e02ea4141c' make[1]: Leaving directory '/d/temp/2024_12_20_01_50_00_19051/RtmpCyVhvb/sourceCpp-x86_64-w64-mingw32-1.0.13.1/sourcecpp_193e02ea4141c' Error in Rcpp::sourceCpp("cpp/Rlapack.cpp") : Error occurred building shared library. Calls: <Anonymous> ... run_test_dir -> lapply -> FUN -> eval -> eval -> <Anonymous> Execution halted Flavor: r-oldrel-windows-x86_64

Package RcppBDT

Current CRAN status: NOTE: 13

Version: 0.2.6
Check: C++ specification
Result: NOTE Specified C++11: please drop specification unless essential Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-x86_64, r-patched-linux-x86_64, r-release-linux-x86_64, r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Version: 0.2.6
Check: Rd cross-references
Result: NOTE Found the following Rd file(s) with Rd \link{} targets missing package anchors: cToPOSIXct.Rd: Rcpp Please provide package anchors for all Rd \link{} targets not in the package itself and the base packages. Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-windows-x86_64

Version: 0.2.6
Check: compiled code
Result: NOTE File ‘RcppBDT/libs/RcppBDT.so’: Found non-API call to R: ‘SET_TYPEOF’ Compiled code should not call non-API entry points in R. See ‘Writing portable packages’ in the ‘Writing R Extensions’ manual, and section ‘Moving into C API compliance’ for issues with the use of non-API entry points. Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc

Version: 0.2.6
Check: compiled code
Result: NOTE File 'RcppBDT/libs/x64/RcppBDT.dll': Found non-API call to R: 'SET_TYPEOF' Compiled code should not call non-API entry points in R. See 'Writing portable packages' in the 'Writing R Extensions' manual, and section 'Moving into C API compliance' for issues with the use of non-API entry points. Flavor: r-devel-windows-x86_64

Version: 0.2.6
Check: installed package size
Result: NOTE installed size is 8.6Mb sub-directories of 1Mb or more: libs 8.4Mb Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64

Package RcppCCTZ

Current CRAN status: NOTE: 1, OK: 12

Version: 0.2.12
Check: C++ specification
Result: NOTE Specified C++11: please drop specification unless essential Flavor: r-release-windows-x86_64

Package RcppClassic

Current CRAN status: OK: 13

Package RcppClassicExamples

Current CRAN status: OK: 13

Package RcppCNPy

Current CRAN status: OK: 13

Package RcppDate

Current CRAN status: OK: 13

Package RcppDE

Current CRAN status: NOTE: 13

Version: 0.1.7
Check: C++ specification
Result: NOTE Specified C++11: please drop specification unless essential Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-x86_64, r-patched-linux-x86_64, r-release-linux-x86_64, r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Package RcppEigen

Current CRAN status: NOTE: 6, OK: 7

Version: 0.3.4.0.2
Check: installed package size
Result: NOTE installed size is 34.0Mb sub-directories of 1Mb or more: include 9.5Mb libs 24.1Mb Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Package RcppExamples

Current CRAN status: NOTE: 10, OK: 3

Version: 0.1.9
Check: C++ specification
Result: NOTE Specified C++11: please drop specification unless essential Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-patched-linux-x86_64, r-release-linux-x86_64, r-release-macos-arm64, r-release-macos-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64

Package RcppFarmHash

Current CRAN status: OK: 13

Package RcppFastAD

Current CRAN status: NOTE: 4, OK: 9

Version: 0.0.4
Check: installed package size
Result: NOTE installed size is 8.5Mb sub-directories of 1Mb or more: libs 8.1Mb Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64

Package RcppFastFloat

Current CRAN status: NOTE: 13

Version: 0.0.4
Check: C++ specification
Result: NOTE Specified C++11: please drop specification unless essential Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-x86_64, r-patched-linux-x86_64, r-release-linux-x86_64, r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Package RcppGetconf

Current CRAN status: NOTE: 2, OK: 8

Version: 0.0.3
Check: top-level files
Result: NOTE ‘configure’: /bin/bash is not portable Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc

Package RcppGSL

Current CRAN status: OK: 13

Package RcppInt64

Current CRAN status: OK: 13

Package RcppMagicEnum

Current CRAN status: OK: 13

Package RcppMsgPack

Current CRAN status: NOTE: 13

Version: 0.2.3
Check: C++ specification
Result: NOTE Specified C++11: please drop specification unless essential Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-x86_64, r-patched-linux-x86_64, r-release-linux-x86_64, r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Version: 0.2.3
Check: installed package size
Result: NOTE installed size is 9.7Mb sub-directories of 1Mb or more: include 6.7Mb libs 2.6Mb Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Package RcppNLoptExample

Current CRAN status: OK: 13

Package RcppQuantuccia

Current CRAN status: NOTE: 4, OK: 9

Version: 0.1.2
Check: installed package size
Result: NOTE installed size is 8.4Mb sub-directories of 1Mb or more: libs 8.3Mb Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64

Package RcppRedis

Current CRAN status: OK: 13

Package RcppSimdJson

Current CRAN status: NOTE: 6, OK: 7

Version: 0.1.12
Check: installed package size
Result: NOTE installed size is 23.0Mb sub-directories of 1Mb or more: include 7.2Mb jsonexamples 3.8Mb libs 11.8Mb Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Package RcppSMC

Current CRAN status: NOTE: 12, OK: 1

Version: 0.2.7
Check: Rd files
Result: NOTE checkRd: (-1) cSMCexamples.Rd:78-80: Lost braces in \itemize; \value handles \item{}{} directly checkRd: (-1) cSMCexamples.Rd:81-83: Lost braces in \itemize; \value handles \item{}{} directly checkRd: (-1) cSMCexamples.Rd:89: Lost braces in \itemize; \value handles \item{}{} directly checkRd: (-1) cSMCexamples.Rd:90: Lost braces in \itemize; \value handles \item{}{} directly Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-x86_64, r-patched-linux-x86_64, r-release-linux-x86_64, r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64

Version: 0.2.7
Check: installed package size
Result: NOTE installed size is 7.0Mb sub-directories of 1Mb or more: libs 6.6Mb Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64

Package RcppSpdlog

Current CRAN status: NOTE: 4, OK: 9

Version: 0.0.19
Check: installed package size
Result: NOTE installed size is 7.0Mb sub-directories of 1Mb or more: include 1.2Mb libs 5.6Mb Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64

Package RcppStreams

Current CRAN status: NOTE: 13

Version: 0.1.3
Check: C++ specification
Result: NOTE Specified C++11: please drop specification unless essential Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-x86_64, r-patched-linux-x86_64, r-release-linux-x86_64, r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Version: 0.1.3
Check: installed package size
Result: NOTE installed size is 5.4Mb sub-directories of 1Mb or more: libs 4.6Mb Flavor: r-oldrel-macos-arm64

Package RcppTOML

Current CRAN status: OK: 13

Package RcppXts

Current CRAN status: OK: 13

Package RcppZiggurat

Current CRAN status: OK: 13

Package RDieHarder

Current CRAN status: OK: 13

Package rfoaas

Current CRAN status: OK: 13

Package RInside

Current CRAN status: NOTE: 13

Version: 0.2.18
Check: compiled code
Result: NOTE File ‘RInside/libs/RInside.so’: Found ‘srand’, possibly from ‘srand’ (C) Object: ‘RInside.o’ File ‘RInside/libs/RInside.so’: Found non-API calls to R: ‘R_CStackLimit’, ‘R_CleanTempDir’, ‘R_DefParams’, ‘R_ReplDLLinit’, ‘R_RunExitFinalizers’, ‘R_SetParams’, ‘R_SignalHandlers’, ‘R_TempDir’, ‘Rf_endEmbeddedR’, ‘Rf_initEmbeddedR’, ‘SET_TYPEOF’, ‘run_Rmainloop’ Compiled code should not call entry points which might terminate R nor write to stdout/stderr instead of to the console, nor use Fortran I/O nor system RNGs nor [v]sprintf. Compiled code should not call non-API entry points in R. See ‘Writing portable packages’ in the ‘Writing R Extensions’ manual, and section ‘Moving into C API compliance’ for issues with the use of non-API entry points. Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc

Version: 0.2.18
Check: compiled code
Result: NOTE File 'RInside/libs/x64/RInside.dll': Found 'srand', possibly from 'srand' (C) Object: 'RInside.o' File 'RInside/libs/x64/libRInside.dll': Found 'srand', possibly from 'srand' (C) Object: 'RInside.o' File 'RInside/libs/x64/RInside.dll': Found non-API calls to R: 'R_CleanTempDir', 'R_DefParams', 'R_ReplDLLinit', 'R_RunExitFinalizers', 'R_SetParams', 'R_TempDir', 'Rf_endEmbeddedR', 'Rf_initEmbeddedR', 'SET_TYPEOF', 'getRUser', 'get_R_HOME', 'run_Rmainloop' File 'RInside/libs/x64/libRInside.dll': Found non-API calls to R: 'R_CleanTempDir', 'R_DefParams', 'R_ReplDLLinit', 'R_RunExitFinalizers', 'R_SetParams', 'R_TempDir', 'Rf_endEmbeddedR', 'Rf_initEmbeddedR', 'SET_TYPEOF', 'getRUser', 'get_R_HOME', 'run_Rmainloop' Compiled code should not call entry points which might terminate R nor write to stdout/stderr instead of to the console, nor use Fortran I/O nor system RNGs nor [v]sprintf. Compiled code should not call non-API entry points in R. See 'Writing portable packages' in the 'Writing R Extensions' manual, and section 'Moving into C API compliance' for issues with the use of non-API entry points. Flavor: r-devel-windows-x86_64

Version: 0.2.18
Check: compiled code
Result: NOTE File ‘RInside/libs/RInside.so’: Found ‘srand’, possibly from ‘srand’ (C) Object: ‘RInside.o’ File ‘RInside/libs/RInside.so’: Found non-API calls to R: ‘R_CStackLimit’, ‘R_CleanTempDir’, ‘R_DefParams’, ‘R_ReplDLLinit’, ‘R_RunExitFinalizers’, ‘R_SetParams’, ‘R_SignalHandlers’, ‘R_TempDir’, ‘Rf_endEmbeddedR’, ‘Rf_initEmbeddedR’, ‘run_Rmainloop’ Compiled code should not call entry points which might terminate R nor write to stdout/stderr instead of to the console, nor use Fortran I/O nor system RNGs nor [v]sprintf. Compiled code should not call non-API entry points in R. See ‘Writing portable packages’ in the ‘Writing R Extensions’ manual. Flavors: r-patched-linux-x86_64, r-release-linux-x86_64

Version: 0.2.18
Check: compiled code
Result: NOTE File ‘RInside/libs/RInside.so’: Found ‘_srand’, possibly from ‘srand’ (C) Object: ‘RInside.o’ File ‘RInside/libs/RInside.so’: Found non-API calls to R: ‘R_CStackLimit’, ‘R_CleanTempDir’, ‘R_DefParams’, ‘R_ReplDLLinit’, ‘R_RunExitFinalizers’, ‘R_SetParams’, ‘R_SignalHandlers’, ‘R_TempDir’, ‘Rf_endEmbeddedR’, ‘Rf_initEmbeddedR’, ‘run_Rmainloop’ Compiled code should not call entry points which might terminate R nor write to stdout/stderr instead of to the console, nor use Fortran I/O nor system RNGs nor [v]sprintf. Compiled code should not call non-API entry points in R. See ‘Writing portable packages’ in the ‘Writing R Extensions’ manual. Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64

Version: 0.2.18
Check: installed package size
Result: NOTE installed size is 7.4Mb sub-directories of 1Mb or more: lib 3.1Mb libs 3.8Mb Flavors: r-release-windows-x86_64, r-oldrel-windows-x86_64

Version: 0.2.18
Check: compiled code
Result: NOTE File 'RInside/libs/x64/RInside.dll': Found 'srand', possibly from 'srand' (C) Object: 'RInside.o' File 'RInside/libs/x64/libRInside.dll': Found 'srand', possibly from 'srand' (C) Object: 'RInside.o' File 'RInside/libs/x64/RInside.dll': Found non-API calls to R: 'R_CleanTempDir', 'R_DefParams', 'R_ReplDLLinit', 'R_RunExitFinalizers', 'R_SetParams', 'R_TempDir', 'Rf_endEmbeddedR', 'Rf_initEmbeddedR', 'getRUser', 'get_R_HOME', 'run_Rmainloop' File 'RInside/libs/x64/libRInside.dll': Found non-API calls to R: 'R_CleanTempDir', 'R_DefParams', 'R_ReplDLLinit', 'R_RunExitFinalizers', 'R_SetParams', 'R_TempDir', 'Rf_endEmbeddedR', 'Rf_initEmbeddedR', 'getRUser', 'get_R_HOME', 'run_Rmainloop' Compiled code should not call entry points which might terminate R nor write to stdout/stderr instead of to the console, nor use Fortran I/O nor system RNGs nor [v]sprintf. Compiled code should not call non-API entry points in R. See 'Writing portable packages' in the 'Writing R Extensions' manual. Flavors: r-release-windows-x86_64, r-oldrel-windows-x86_64

Package rmsfact

Current CRAN status: OK: 13

Package RProtoBuf

Current CRAN status: NOTE: 11, OK: 2

Version: 0.4.22
Check: compiled code
Result: NOTE File ‘RProtoBuf/libs/RProtoBuf.so’: Found non-API call to R: ‘SET_TYPEOF’ Compiled code should not call non-API entry points in R. See ‘Writing portable packages’ in the ‘Writing R Extensions’ manual, and section ‘Moving into C API compliance’ for issues with the use of non-API entry points. Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc

Version: 0.4.22
Check: compiled code
Result: NOTE File 'RProtoBuf/libs/x64/RProtoBuf.dll': Found non-API call to R: 'SET_TYPEOF' Compiled code should not call non-API entry points in R. See 'Writing portable packages' in the 'Writing R Extensions' manual, and section 'Moving into C API compliance' for issues with the use of non-API entry points. Flavor: r-devel-windows-x86_64

Version: 0.4.22
Check: installed package size
Result: NOTE installed size is 33.3Mb sub-directories of 1Mb or more: libs 32.0Mb Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Package RPushbullet

Current CRAN status: OK: 13

Package RQuantLib

Current CRAN status: ERROR: 1, WARN: 1, NOTE: 5, OK: 5

Version: 0.4.24
Check: whether package can be installed
Result: ERROR Installation failed. Flavor: r-devel-linux-x86_64-debian-clang

Version: 0.4.24
Check: whether package can be installed
Result: WARN Found the following significant warnings: /opt/R/arm64/include/boost/math/tools/config.hpp:23:6: warning: "The minimum language standard to use Boost.Math will be C++14 starting in July 2023 (Boost 1.82 release)" [-W#warnings] # warning "The minimum language standard to use Boost.Math will be C++14 starting in July 2023 (Boost 1.82 release)" See ‘/Volumes/Builds/packages/big-sur-arm64/results/4.4/RQuantLib.Rcheck/00install.out’ for details. * used C++ compiler: ‘Apple clang version 14.0.0 (clang-1400.0.29.202)’ * used SDK: ‘MacOSX11.3.sdk’ Flavor: r-release-macos-arm64

Version: 0.4.24
Check: installed package size
Result: NOTE installed size is 104.2Mb sub-directories of 1Mb or more: libs 103.6Mb Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Package sanitizers

Current CRAN status: OK: 13

Package spdl

Current CRAN status: OK: 13

Package td

Current CRAN status: OK: 13

Package tidyCpp

Current CRAN status: OK: 13

Package tint

Current CRAN status: NOTE: 3, OK: 10

Version: 0.1.4
Check: Rd cross-references
Result: NOTE Found the following Rd file(s) with Rd \link{} targets missing package anchors: tintHtml.Rd: pdf_document, html_document Please provide package anchors for all Rd \link{} targets not in the package itself and the base packages. Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-windows-x86_64

Package tinythemes

Current CRAN status: NOTE: 3, OK: 10

Version: 0.0.2
Check: Rd cross-references
Result: NOTE Found the following Rd file(s) with Rd \link{} targets missing package anchors: theme_ipsum_rc.Rd: ggplot2 Please provide package anchors for all Rd \link{} targets not in the package itself and the base packages. Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-windows-x86_64

Package ttdo

Current CRAN status: NOTE: 3, OK: 10

Version: 0.0.9
Check: Rd cross-references
Result: NOTE Found the following Rd file(s) with Rd \link{} targets missing package anchors: expect_equal_with_diff.Rd: tinytest expect_equal_xl.Rd: tinytest ttdo_boolean_and_message_tests.Rd: tinytest Please provide package anchors for all Rd \link{} targets not in the package itself and the base packages. Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-windows-x86_64

Package ulid

Current CRAN status: OK: 13

Package x13binary

Current CRAN status: NOTE: 2, OK: 11

Version: 1.1.61
Check: installed package size
Result: NOTE installed size is 5.6Mb sub-directories of 1Mb or more: bin 5.5Mb Flavors: r-release-windows-x86_64, r-oldrel-windows-x86_64