Re: [R-pkg-devel] warning: type of ‘zhpevx_’ does not match original declaration [-Wlto-type-mismatch]

2020-12-15 Thread Tomas Kalibera
Dear Pierre, your code checks fine on my Ubuntu 20.04 (gcc/gfortran 9.3), but I can reproduce what you are seeing on Debian 10 with gcc 8.3. There seem to be two problems. The first one is that the hidden character length arguments are signed, they are of type "long int" (not "size_t"). This i

Re: [R-pkg-devel] Used package not updated - needs java < V 11

2020-12-15 Thread Duncan Murdoch
On 15/12/2020 8:02 a.m., Knut Krueger wrote: I am using in my Package XlConnect. If the Computer is using Java < 11 all is working. But if not, the package can not be used. inside teh functions tehre is an ' @importFrom XLConnect createSheet writeWorksheet saveWorkbook but only used for additi

Re: [R-pkg-devel] Used package not updated - needs java < V 11

2020-12-15 Thread Spencer Graves
I suggest NOT using "XLConnect". "sos" now uses WriteXLS. "Ecfun" now uses "openxlsx". Also, I received an email from CRAN maintainers months ago saying that "gdata" was being obsoleted. It's still on CRAN with a date of 2017-06-06 and a huge number of reverse dependencies. The CRAN

[R-pkg-devel] Used package not updated - needs java < V 11

2020-12-15 Thread Knut Krueger
I am using in my Package XlConnect. If the Computer is using Java < 11 all is working. But if not, the package can not be used. inside teh functions tehre is an ' @importFrom XLConnect createSheet writeWorksheet saveWorkbook but only used for additional comfort to use excel sheets The packa

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

2020-12-15 Thread Akshit Achara
Hey everyone, I have created a package rminizinc which is available on CRAN. I had issues in my configure script as it was only supporting Linux, OSX and Windows and not other Unix like OS. I was able to resolve that issue. I tested my package on R-h

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

2020-12-15 Thread Duncan Murdoch
On 15/12/2020 4:37 p.m., Akshit Achara wrote: Hey everyone, I have created a package rminizinc which is available on CRAN. I had issues in my configure script as it was only supporting Linux, OSX and Windows and not other Unix like OS. I was able to