Back to the "Multiple platform build/check report" A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S [T] U  V  W  X  Y  Z 

Package 238/251HostnameOS / ArchBUILDCHECKBUILD BIN
tkWidgets 1.17.0
J. Zhang
Snapshot Date: 2007-12-11 00:09:07 -0800 (Tue, 11 Dec 2007)
URL: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/tkWidgets
Last Changed Rev: 27716 / Revision: 29143
Last Changed Date: 2007-10-02 18:16:39 -0700 (Tue, 02 Oct 2007)
lamb1 Linux (SUSE 10.1) / x86_64  OK  ERROR 
wilson2 Linux (openSUSE 10.3) / x86_64  OK  ERROR 
wellington Linux (openSUSE 10.3) / i686  OK [ ERROR ]
liverpool Windows Server 2003 R2 (32-bit) / x64  OK  ERROR  OK 
lemming Windows Server 2003 (32-bit) / x64  OK  ERROR  OK 
Package: tkWidgets
Version: 1.17.0
Command: /home/biocbuild/bbs-2.2-bioc/R/bin/R CMD check tkWidgets_1.17.0.tar.gz
StartedAt: 2007-12-11 08:48:41 -0800 (Tue, 11 Dec 2007)
EndedAt: 2007-12-11 08:50:25 -0800 (Tue, 11 Dec 2007)
EllapsedTime: 103.6 seconds
RetCode: 1
Status: ERROR
CheckDir: tkWidgets.Rcheck
Warnings: NA

Command output

* checking for working latex ... OK
* using log directory '/loc/home/biocbuild/bbs-2.2-bioc/meat/tkWidgets.Rcheck'
* using R version 2.7.0 Under development (unstable) (2007-12-09 r43632)
* checking for file 'tkWidgets/DESCRIPTION' ... OK
* this is package 'tkWidgets' version '1.17.0'
* checking package name space information ... OK
* checking package dependencies ... OK
* checking if this is a source package ... OK
* checking whether package 'tkWidgets' can be installed ... OK
* checking package directory ... OK
* checking for portable file names ... OK
* checking for sufficient/correct file permissions ... OK
* checking DESCRIPTION meta-information ... OK
* checking top-level 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
* checking whether the package can be loaded ... OK
* checking whether the package can be loaded with stated dependencies ... OK
* checking whether the name space can be loaded with stated dependencies ... OK
* checking for unstated 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 cross-references ... OK
* checking for missing documentation entries ... OK
* checking for code/documentation mismatches ... OK
* checking Rd \usage sections ... OK
* creating tkWidgets-Ex.R ... OK
* checking examples ... ERROR
Running examples in 'tkWidgets-Ex.R' failed.
The error most likely occurred in:

> ### * WName
> 
> flush(stderr()); flush(stdout())
> 
> ### Name: WName
> ### Title: Accessors for Primitive Widget Objects
> ### Aliases: WName WValue WValue<- WtoText WfromText WcanEdit WbuttonText
> ###   WbuttonFun WwList WwList<- "WwList<-" WLValue WLValue<- WRButtons
> ###   WpreFun WpostFun WEnd "WValue<-"
> ### Keywords: manip
> 
> ### ** Examples
> 
> # Create the list of lists
> pW1 <- list(Name="AAA", Value="bbb",
+             toText = function(x) paste(x,collapse = ","),
+             fromText = NULL, canEdit = TRUE,
+             buttonFun = ls, buttonText = "Browse")
> 
> widget1 <- list(wList = list(a = pW1),
+                 preFun = function() "Hi",
+                 postFun = function() "Bye")
> 
> # Call the functions
> WName(pW1)
[1] "AAA"
> WValue(pW1)
[1] "bbb"
> WValue(pW1) <- "lll"
> WtoText(pW1)
function (x) 
paste(x, collapse = ",")
> WfromText(pW1)
NULL
> WcanEdit(pW1)
[1] TRUE
> WbuttonText(pW1)
[1] "Browse"
> WbuttonFun(pW1)
function (name, pos = -1, envir = as.environment(pos), all.names = FALSE, 
    pattern) 
{
    if (!missing(name)) {
        nameValue <- try(name)
        if (identical(class(nameValue), "try-error")) {
            name <- substitute(name)
            if (!is.character(name)) 
                name <- deparse(name)
            pos <- name
        }
        else pos <- nameValue
    }
    all.names <- .Internal(ls(envir, all.names))
    if (!missing(pattern)) {
        if ((ll <- length(grep("[", pattern, fixed = TRUE))) > 
            0 && ll != length(grep("]", pattern, fixed = TRUE))) {
            if (pattern == "[") {
                pattern <- "\\["
                warning("replaced regular expression pattern '[' by  '\\\\['")
            }
            else if (length(grep("[^\\\\]\\[<-", pattern) > 0)) {
                pattern <- sub("\\[<-", "\\\\\\[<-", pattern)
                warning("replaced '[<-' by '\\\\[<-' in regular expression pattern")
            }
        }
        grep(pattern, all.names, value = TRUE)
    }
    else all.names
}
<environment: namespace:base>
> WwList(widget1)
$a
$a$Name
[1] "AAA"

$a$Value
[1] "bbb"

$a$toText
function (x) 
paste(x, collapse = ",")

$a$fromText
NULL

$a$canEdit
[1] TRUE

$a$buttonFun
function (name, pos = -1, envir = as.environment(pos), all.names = FALSE, 
    pattern) 
{
    if (!missing(name)) {
        nameValue <- try(name)
        if (identical(class(nameValue), "try-error")) {
            name <- substitute(name)
            if (!is.character(name)) 
                name <- deparse(name)
            pos <- name
        }
        else pos <- nameValue
    }
    all.names <- .Internal(ls(envir, all.names))
    if (!missing(pattern)) {
        if ((ll <- length(grep("[", pattern, fixed = TRUE))) > 
            0 && ll != length(grep("]", pattern, fixed = TRUE))) {
            if (pattern == "[") {
                pattern <- "\\["
                warning("replaced regular expression pattern '[' by  '\\\\['")
            }
            else if (length(grep("[^\\\\]\\[<-", pattern) > 0)) {
                pattern <- sub("\\[<-", "\\\\\\[<-", pattern)
                warning("replaced '[<-' by '\\\\[<-' in regular expression pattern")
            }
        }
        grep(pattern, all.names, value = TRUE)
    }
    else all.names
}
<environment: namespace:base>

$a$buttonText
[1] "Browse"


> WwList(widget1) <- list(Name = "New list", Value = "New value")
> WLValue(widget1, 1)
Error in x$Value : $ operator is invalid for atomic vectors
Calls: WLValue -> WValue
Execution halted

tkWidgets.Rcheck/00install.out:

/loc/home/biocbuild/bbs-2.2-bioc/meat/tkWidgets.Rcheck
* Installing *source* package 'tkWidgets' ...
** R
** inst
** preparing package for lazy loading
Loading required package: widgetTools
Loading required package: tcltk
Loading Tcl/Tk interface ... done
Loading required package: DynDoc
Loading required package: tools
** help
 >>> Building/Updating help pages for package 'tkWidgets'
     Formats: text html latex example 
  DPExplorer                        text    html    latex   example
  WName                             text    html    latex   example
  appendSepDir                      text    html    latex   example
  args2XML                          text    html    latex   example
  argsWidget                        text    html    latex   example
  colInfo-class                     text    html    latex   example
  dataViewer                        text    html    latex   example
  dbArgsWidget                      text    html    latex   example
  eExplorer                         text    html    latex   example
  fileBrowser                       text    html    latex   example
  fileWizard                        text    html    latex   example
  getLightTW                        text    html    latex   example
  getWvalues                        text    html    latex   example
  guess.sep                         text    html    latex   example
  hasChar                           text    html    latex   example
  importPhenoData                   text    html    latex   example
  importWizard                      text    html    latex   example
  listSelect                        text    html    latex   example
  objNameToList                     text    html    latex   example
  objViewer                         text    html    latex   example
  objectBrowser                     text    html    latex   example
  pExplorer                         text    html    latex   example
  pickFiles                         text    html    latex   example
  pickItems                         text    html    latex   example
  pickObjs                          text    html    latex   example
  setArgsList                       text    html    latex   example
  stdType                           text    html    latex   example
  tkMIAME                           text    html    latex
  tkSampleNames                     text    html    latex
  tkphenoData                       text    html    latex
  vExplorer                         text    html    latex   example
  values.Widget                     text    html    latex   example
  widgetRender                      text    html    latex   example
** building package indices ...
* DONE (tkWidgets)