Re: [Rd] [R] I do not want that R CMD build removes temp directory

2022-12-19 Thread Witold E Wolski
M1, linux ARM64, linux x86, Windows 64, and it works everywhere except Parallels Windows 64 on ARM M1. R version 4.2.2 (2022-10-31 ucrt) -- "Innocent and Trusting" Copyright (C) 2022 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 (64-bit) best regards Wite

Re: [Rd] I do not want that R CMD build removes temp directory

2022-12-15 Thread Witold E Wolski
--no-test-load and the non-functional package > will still be installed so you can inspect it. > > Cheers, > Simon > > PS: please don't cross-post > > > > On Dec 16, 2022, at 7:01 AM, Witold E Wolski wrote: > > > > I am getting a package build error, a

[Rd] I do not want that R CMD build removes temp directory

2022-12-15 Thread Witold E Wolski
I am getting a package build error, and can not figure out the problem. The error is " ERROR: lazy loading failed for package 'prolfqua' * removing 'C:/Users/ " However since R CMD build removes the temp directory and does not give any other errors how can I find out what the build problem is? Is

Re: [Rd] * checking CRAN incoming feasibility ... NOTE

2021-11-26 Thread Witold E Wolski
resubmit it to CRAN. I hope that this is OK. I made only cosmetic changes to the documentation, e.g., I created a vignette and removed the warnings and notes. Best regards Witold On Fri, 26 Nov 2021 at 16:00, Dirk Eddelbuettel wrote: > > > On 26 November 2021 at 14:40, Witold E Wolski wrote:

[Rd] * checking CRAN incoming feasibility ... NOTE

2021-11-26 Thread Witold E Wolski
I am submitting a package to CRAN and I am asked to fix 2 NOTE's I am not sure how I should ask the following NOTE? * this is package 'sigora' version '3.0.9' * checking CRAN incoming feasibility ... NOTE Maintainer: 'Witold Wolski ' New submission Package was archived on CRAN License componen

[Rd] R CMD check fails with: During startup - Warning message: Setting LC_CTYPE=en_US.UTF-8 failed

2021-04-13 Thread Witold E Wolski
Hello, I am trying to run a package check on windows 10. But it fails with the following errors: ``` $ R CMD check prolfqua_0.1.5.3.tar.gz During startup - Warning message: Setting LC_CTYPE=en_US.UTF-8 failed * using log directory 'C:/Users/wewol/__checkout/prolfqua.Rcheck' * using R version 4.0.

[Rd] Problem building rmarkdown vignettes with child

2018-11-07 Thread Witold E Wolski
Hello, This is a problem I posted about already some time ago: https://stat.ethz.ch/pipermail/r-devel/2018-September/076786.html Finally, I did had some time to create a minimal package to reproduce the problem that vignettes with child can not be build. https://github.com/wolski/RmarkdownVignett

Re: [Rd] unable to load shared object

2018-10-05 Thread Witold E Wolski
rote: > > Greetings. > Is it possible that Onedrive is causing trouble? Do other packages you build > and install work well from that directory? > > Paul Johnson > University of Kansas > > On Wed, Oct 3, 2018, 3:13 AM Witold E Wolski wrote: >> >> Hello, >&

[Rd] unable to load shared object

2018-10-03 Thread Witold E Wolski
Hello, I am trying to install a package with some src files on windows (linux install works fine). The sources seem to build, there is an *.dll in the src folder but than the installation process fails with: ``` ** testing if installed package can be loaded Error: package or namespace load failed

Re: [Rd] How do I set a compile flag _WIN32_WINNT=0x600 in Makevars.Win

2018-10-03 Thread Witold E Wolski
Hi, Solved, some search for preprocessor helped. PKG_CPPFLAGS=-D_WIN32_WINNT=0x600 Very Sorry for bothering you Thank you On Tue, 2 Oct 2018 at 23:01, Witold E Wolski wrote: > > Sorry for bothering you > > I am trying to build the R grpc package on windows: > https://github.

[Rd] How do I set a compile flag _WIN32_WINNT=0x600 in Makevars.Win

2018-10-02 Thread Witold E Wolski
Sorry for bothering you I am trying to build the R grpc package on windows: https://github.com/nfultz/grpc against an MSYS2 build of grpc. when running devtools::install() I am getting the following error: C:/msys64/mingw64/include/grpc/impl/codegen/port_platform.h:47:2: error: #error "Please c

Re: [Rd] R grpc

2018-10-02 Thread Witold E Wolski
:) Did you missed the "MS-Windows" in my e-mail? On Tue, 2 Oct 2018 at 21:28, Rui Barradas wrote: > > Hello, > > Do you really need a prebuild binary? Wouldn't this do it? > > devtools::install_github("nfultz/grpc") > > > Hope this helps, &

[Rd] R grpc

2018-10-02 Thread Witold E Wolski
Hello, I am looking for a prebuild - binary MS Windows version of the R grpc package https://github.com/nfultz/grpc best regards Witek -- Witold Eryk Wolski __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel

[Rd] Problem building rmarkdown vignettes with child

2018-09-14 Thread Witold E Wolski
Dear Community, I have an Rmarkdown vignette with optional child documents. Since all markdown files in the vingette folder are build when executing R CMD build I did place the child documents in /inst/ParametrizedReportChid/ so they are excluded from the build. I do reference them from the markd

Re: [Rd] RMarkdown Vignettest in R packages with child is failing in package build

2018-07-12 Thread Witold E Wolski
ave a great day, best regards Witek On 10 July 2018 at 19:52, Duncan Murdoch wrote: > On 10/07/2018 11:44 AM, Witold E Wolski wrote: >> >> Dear List, >> >> I am working on moving some Rmarkdown reports into the vignettes >> folder of a package. While I was able to

[Rd] RMarkdown Vignettest in R packages with child is failing in package build

2018-07-10 Thread Witold E Wolski
Dear List, I am working on moving some Rmarkdown reports into the vignettes folder of a package. While I was able to solve to problem of parametrized reports in vignettes folder thanks to your invaluable help (Thank you), I am now struggling with the following problem. One of the reports which I

Re: [Rd] Parametrized Vignettest in R packages

2018-07-09 Thread Witold E Wolski
reat evening. regards Witek On 9 July 2018 at 21:32, Duncan Murdoch wrote: > On 09/07/2018 3:24 PM, Witold E Wolski wrote: >> >> Dear Yihui, >> >> Thank you for the valuable questions. >> >> sample_analysis is a "tibble" while >> configuration i

Re: [Rd] Parametrized Vignettest in R packages

2018-07-09 Thread Witold E Wolski
> contains `params` that uses environment values. Most other types of > values should be fine. > > Regards, > Yihui > -- > https://yihui.name > > > On Mon, Jul 9, 2018 at 10:37 AM, Duncan Murdoch > wrote: >> On 09/07/2018 8:49 AM, Witold E Wolski wrote: >

Re: [Rd] Parametrized Vignettest in R packages

2018-07-09 Thread Witold E Wolski
: !r get(data(sample_analysis)) > data: !r get(data(skylineconfig)) > > but if that doesn't work, a longer version is > > params: > configuration: !r {data(sample_analysis); sample_analysis} > data: !r {data(skylineconfig); skylineconfig} > > Duncan Murdoch > > >

Re: [Rd] Parametrized Vignettest in R packages

2018-07-02 Thread Witold E Wolski
configuration: !r data(sample_analysis) data: !r data(skylineconfig) since data does not return the package just puts them in the env as a side effect. Is there a different base function to achieve it. Thank you Witek On 2 July 2018 at 16:56, Duncan Murdoch wrote: > On 02/07/2018 10:30 AM, Witold E

[Rd] Parametrized Vignettest in R packages

2018-07-02 Thread Witold E Wolski
Hello, I have a package which includes some parameterized r-markdown report which I would also like to build as package vignettes. Is there a way to run the parameterized vignette creation with the package build or package check? Thank you -- Witold Eryk Wolski ___

Re: [Rd] accessing data by packagename::dataname from within package code fails.

2016-12-12 Thread Witold E Wolski
=bibliospec::AminoAcids){ I guess this is an R FEATURE. But then where and how is the best practice to initialize class members with default values? Thank you. On 12 December 2016 at 15:45, Witold E Wolski wrote: > I am wrting a package called bibliospec. > I have a dataset in data/Am

[Rd] Fwd: Error: XYZ is not an exported object

2016-12-10 Thread Witold E Wolski
I am wrting a package. I have a dataset in data/AminoAcids.tsv and would like to be able to access it with bibliospec::AminoAcids from within my package code. R CMD build gives me the error: Error : 'AminoAcids' is not an exported object from 'namespace:bibliospec' I am able to access the data

[Rd] unzip does not like a / at the end of path.

2016-10-07 Thread Witold E Wolski
dir("inst/extdata/") dir("./inst/extdata/") dir("inst/extdata") works all fine, listing the directory content. but: unzip(tmp[1],exdir = "inst/extdata/") Error in unzip(tmp[1], exdir = "inst/extdata/") : 'exdir' does not exist unzip(tmp[1],exdir = "./inst/extdata/") Error in unzip(tmp[1], exdir

[Rd] S3 - how to implement "colnames<-"

2014-05-14 Thread Witold E Wolski
Have a class for which I would like to provide a "colnames<-.myclass" function so that colnames(myintsance) <- c("a","b","c") can be called. Witold -- Witold Eryk Wolski [[alternative HTML version deleted]] __ R-devel@r-project.org mailing

[Rd] ! LaTeX Error: File `zi4.sty' not found.

2014-04-10 Thread Witold E Wolski
R version 3.1.0 beta (2014-03-28 r65330) -- "Spring Dance" When running R CMD check mypackage. the check fails with : ! LaTeX Error: File `zi4.sty' not found. a search for this error forwards to similar errors but with an inconsolata.sty file. -- Witold Eryk Wolski ___