Re: [R-pkg-devel] R CMD check error on Windows

2020-12-17 Thread Akshit Achara
Dear Uwe, Thank you very much for the explanation. Regards, Akshit Achara On Thu, Dec 17, 2020 at 3:32 PM Uwe Ligges wrote: > > > On 17.12.2020 10:39, Akshit Achara wrote: > > Dear Uwe, > > > > Can you please elaborate? > > > > I generated the c

Re: [R-pkg-devel] R CMD check error on Windows

2020-12-17 Thread Akshit Achara
Dear Uwe, Can you please elaborate? I generated the configure script from configure.ac on Linux and copied it's contents to configure.win (changed ~! /bin/sh to #! /bin/bash). Does it cause any quoting issues? Thanks, Akshit Achara On Thu, Dec 17, 2020 at 3:01 PM Uwe Ligges wrote: >

[R-pkg-devel] R CMD check error on Windows

2020-12-17 Thread Akshit Achara
or that can be implemented from my end or should I add anything in the SystemRequirements and resubmit to CRAN. Thanks, Akshit Achara [[alternative HTML version deleted]] __ R-package-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-package-devel

Re: [R-pkg-devel] R CMD check warning on Solaris

2020-12-16 Thread Akshit Achara
Dear Duncan, Thanks for your detailed answer. Adding a test for checking the pandoc version resolves the issues. That was precisely what I needed. I have also added it to the SystemRequirements field, thanks for the suggestion. Thanks, Akshit Achara [[alternative HTML version deleted

[R-pkg-devel] R CMD check warning on Solaris

2020-12-15 Thread Akshit Achara
nditionMessage(e)))}) #> 32: tools:::buildVignettes(dir = "/export/home/XvmX59V/rminizinc.Rcheck/vign_test/rminizinc", ser_elibs = "/export/home/XvmX59V/Rtemp/RtmpFgaaxZ/file66b85b0113ad.rds") #> An irrecoverable exception occurred. R is aborting now ... I think this

Re: [R-pkg-devel] Package Submission to CRAN

2020-11-17 Thread Akshit Achara
Dear Uwe, Thanks for the suggestions, I was able to install my package without the header files or library on the system. Thanks, Akshit Achara On Sat, Nov 14, 2020 at 8:02 PM Uwe Ligges wrote: > Write to c...@r-project.org, explain how to install the third party > software (availa

[R-pkg-devel] Package Submission to CRAN

2020-11-09 Thread Akshit Achara
submit the package to CRAN but the CRAN servers will not have the third party library. Is there any way I can install the package without having the third party library on my system? Thanks, Akshit Achara [[alternative HTML version deleted]] _

[R-pkg-devel] How to set an environment variable during package installation?

2020-10-27 Thread Akshit Achara
Hi everyone, I have created an R package which depends on a third party library. I need to set an environment variable whose value will be the argument provided by the user during the package installation. Is there any way I can set the environment variable using autotools? Thanks, Akshit Achara

Re: [R-pkg-devel] How to retrieve a flag set in configure.ac (filled in Makevars.in) during package installation in an R or C++ script ?

2020-08-17 Thread Akshit Achara
ME/bin. In the > configure script of RcppCWB, I need to detect the compiler used and I do it > using this snippet: > CC_R=`$R_HOME/bin/R CMD config CC` > > More experienced people following R-package-devel than myself may be aware > of a better solution, and I would also be happy to

[R-pkg-devel] How to retrieve a flag set in configure.ac (filled in Makevars.in) during package installation in an R or C++ script ?

2020-08-15 Thread Akshit Achara
Hi everyone, Background: The package rminizinc provides an interface to MiniZinc in R. The package provides various functionalities to parse, solve and manipulate MiniZinc models. This is done by usi