* using log directory 'd:/Rcompile/CRANpkg/local/3.3new/RSVGTipsDevice.Rcheck' * using R version 3.3.0 beta (2016-04-13 r70476) * using platform: x86_64-w64-mingw32 (64-bit) * using session charset: ISO8859-1 * checking for file 'RSVGTipsDevice/DESCRIPTION' ... OK * this is package 'RSVGTipsDevice' version '1.0-4' * 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 hidden files and directories ... OK * checking for portable file names ... OK * checking whether package 'RSVGTipsDevice' can be installed ... OK * checking installed package size ... OK * checking package directory ... 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 R files for non-ASCII characters ... OK * checking R files for syntax errors ... OK * loading checks for arch 'i386' ** 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 * loading checks for arch 'x64' ** 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 ... NOTE getSVGToolTipMode: no visible global function definition for 'dev.cur' setSVGShapeContents: no visible global function definition for 'dev.cur' setSVGShapeToolTip: no visible global function definition for 'dev.cur' setSVGShapeURL: no visible global function definition for 'dev.cur' Undefined global functions or variables: dev.cur Consider adding importFrom("grDevices", "dev.cur") to your NAMESPACE file. * checking Rd files ... OK * checking Rd metadata ... 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 line endings in C/C++/Fortran sources/headers ... OK * checking compiled code ... OK * checking examples ... ** running examples for arch 'i386' ... [0s] OK ** running examples for arch 'x64' ... ERROR Running examples in 'RSVGTipsDevice-Ex.R' failed The error most likely occurred in: > ### Name: RSVGTipsDevice > ### Title: A SVG Graphics Driver with dynamic tips > ### Aliases: RSVGTipsDevice > ### Keywords: device package > > ### ** Examples > > library("RSVGTipsDevice") > sessionInfo() R version 3.3.0 beta (2016-04-13 r70476) Platform: x86_64-w64-mingw32/x64 (64-bit) Running under: Windows Server 2008 x64 (build 6002) Service Pack 2 locale: [1] LC_COLLATE=C LC_CTYPE=German_Germany.1252 [3] LC_MONETARY=C LC_NUMERIC=C [5] LC_TIME=C attached base packages: [1] stats graphics grDevices utils datasets methods base other attached packages: [1] RSVGTipsDevice_1.0-4 > devSVGTips("svgplot1.svg", toolTipMode=1, + title="SVG example plot 1: shapes and points, tooltips are title + 1 line") > plot(c(0,10),c(0,10), type="n", xlab="x", ylab="y", + main="Example SVG plot with title + 1 line tips (mode=1)") > setSVGShapeToolTip(title="A rectangle", desc="that is yellow") > rect(1,1,4,6, col='yellow') > setSVGShapeToolTip(title="1st circle with title only") > points(5.5,7.5,cex=20,pch=19,col='red') > setSVGShapeToolTip(title="A triangle", desc="big and green") > polygon(c(3,6,8), c(3,6,3), col='green') > # no tooltips on these points > points(2:8, 8:2, cex=3, pch=19, col='black') > # tooltips on each these points > invisible(sapply(1:7, function(x) + {setSVGShapeToolTip(title=paste("point", x)) + points(x+1, 8-x, cex=3, pch=1, col='black')})) > setSVGShapeToolTip(title="Text", desc="can have a tool tip too!") > text(x=4, y=9, lab="Poke me!", col="blue") > dev.off() * checking PDF version of manual ... OK * DONE Status: 1 ERROR, 1 NOTE