- using R Under development (unstable) (2026-02-10 r89394)
- using platform: aarch64-apple-darwin23
- R was compiled by
Apple clang version 17.0.0 (clang-1700.3.19.1)
GNU Fortran (GCC) 14.2.0
- running under: macOS Sequoia 15.7.1
- using session charset: UTF-8
* current time: 2026-02-12 02:19:31 UTC
- checking for file ‘grImport/DESCRIPTION’ ... OK
- this is package ‘grImport’ version ‘0.9-7’
- 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 whether package ‘grImport’ can be installed ... [1s/1s] OK
See the install log for details.
- checking installed package size ... OK
- checking package directory ... OK
- checking ‘build’ 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 code files for non-ASCII characters ... OK
- checking R files for syntax errors ... OK
- checking whether the package can be loaded ... [0s/0s] OK
- checking whether the package can be loaded with stated dependencies ... [0s/0s] OK
- checking whether the package can be unloaded cleanly ... [0s/0s] OK
- checking whether the namespace can be loaded with stated dependencies ... [0s/0s] OK
- checking whether the namespace can be unloaded cleanly ... [0s/0s] OK
- checking loading without being on the library search path ... [0s/0s] 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 ... [1s/1s] OK
- checking Rd files ... [0s/0s] 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 sizes of PDF files under ‘inst/doc’ ... OK
- checking installed files from ‘inst/doc’ ... OK
- checking files in ‘vignettes’ ... OK
- checking examples ... NONE
- checking for unstated dependencies in ‘tests’ ... OK
- checking tests ... [0s/0s] ERROR
Running ‘testpage.R’ [0s/0s]
Running the tests in ‘tests/testpage.R’ failed.
Complete output:
> #######################################
> # Produce testpage.ps from R
> #######################################
>
> require(grid)
Loading required package: grid
>
> # A star polygon which is filled differently
> # by non-zero winding rule and even-odd fill
> star <- function(lab, gp=gpar(fill="black", lwd=1)) {
+ grid.text(lab, y=unit(1, "npc"), just="bottom")
+ pushViewport(viewport(xscale=c(-1, 1),
+ yscale=c(-1, 1)))
+ t <- seq(0, 2*pi, length=6)[-6]
+ x <- cos(t)
+ y <- sin(t)
+ grid.polygon(x[c(1, 4, 2, 5, 3)],
+ y[c(1, 4, 2, 5, 3)],
+ default="native",
+ gp=gp)
+ popViewport()
+ }
>
> postscript("testpage.ps", horiz=FALSE)
> # grid.newpage()
> pushViewport(viewport(layout=grid.layout(6, 5,
+ heights=unit(c(1, 1), c("lines", "null")),
+ respect=TRUE)))
> pushViewport(viewport(layout.pos.row=2,
+ layout.pos.col=1))
> star("eofill")
> popViewport()
> pushViewport(viewport(layout.pos.row=2,
+ layout.pos.col=2))
> star("fill")
> popViewport()
> pushViewport(viewport(layout.pos.row=2,
+ layout.pos.col=3))
> star("stroke", gp=gpar(fill=NA))
> popViewport()
> pushViewport(viewport(layout.pos.row=2,
+ layout.pos.col=4))
> star("colour", gp=gpar(fill="light blue"))
> popViewport()
> pushViewport(viewport(layout.pos.row=2,
+ layout.pos.col=5))
> star("lwd", gp=gpar(lwd=3))
> dev.off()
null device
1
>
>
> # Modify the PostScript file to insert eofill def and
> # change one of the fills to eofill
> testpageps <- readLines("testpage.ps")
> p3line <- grep("^/p3", testpageps)
> testpageps[p3line] <-
+ paste(testpageps[p3line],
+ "\n/p4 { gsave bg eofill grestore stroke } def")
> fillline <- grep(" p3$", testpageps)
> testpageps[fillline[1]] <- gsub(" p3$", " p4", testpageps[fillline[1]])
> writeLines(testpageps, "testpage.ps")
>
>
>
> #######################################
> # Now import testpage.ps and draw it in various ways
> #######################################
>
> require(grImport)
Loading required package: grImport
Loading required package: XML
>
> PostScriptTrace("testpage.ps", "testpage.xml")
sh: gs: command not found
Error in PostScriptTrace("testpage.ps", "testpage.xml") :
sorry, 'gs' cannot be found
In addition: Warning message:
In system(paste(shQuote(gsexe), "-help > /dev/null")) :
error in running command
Execution halted
- checking for unstated dependencies in vignettes ... OK
- checking package vignettes ... OK
- checking re-building of vignette outputs ... [4s/4s] ERROR
Error(s) in re-building vignettes:
--- re-building ‘import.Rnw’ using Sweave
Loading required package: XML
sh: gs: command not found
Warning in system(paste(shQuote(gsexe), "-help > /dev/null")) :
error in running command
Error: processing vignette 'import.Rnw' failed with diagnostics:
chunk 5 (label = chesspiece)
Error in PostScriptTrace("chess_game_01.fromInkscape.eps") :
sorry, 'gs' cannot be found
--- failed re-building 'import.Rnw'
--- re-building ‘importText.Rnw’ using Sweave
Loading required package: XML
sh: gs: command not found
Warning in system(paste(shQuote(gsexe), "-help > /dev/null")) :
error in running command
Error: processing vignette 'importText.Rnw' failed with diagnostics:
chunk 4 (label = simpleimport)
Error in PostScriptTrace("hello.ps", "hello.xml") :
sorry, 'gs' cannot be found
--- failed re-building 'importText.Rnw'
SUMMARY: processing the following files failed:
‘import.Rnw’ ‘importText.Rnw’
Error: Vignette re-building failed.
Execution halted
- checking PDF version of manual ... [2s/2s] OK
- DONE
Status: 2 ERRORs
- using check arguments '--no-clean-on-error '