[R-pkg-devel] fortran integer(kind=)

2023-08-30 Thread Berry Boessenkool
Dear list members, my R package dwdradar uses Fortran code with the input parameter integer(KIND=2): https://github.com/brry/dwdradar/blob/master/src/binary_to_num.f90#L20 https://github.com/brry/dwdradar/blob/master/src/binary_to_num.f90#L55 The CRAN team wrote to change that (line breaks add

Re: [R-pkg-devel] DESCRITION error

2023-08-30 Thread Emanuele Cordano
Dear List, I thank you for the replies. Sorry for cross-posting. I solved the issue. This error occurred because I forgot to specify the item "Version:" in the DESCRIPTION file. "Protocol Error" , all mandatory items (from protocol) should be specified in the DESCRIPTION file. Thank you Best Em

Re: [R-pkg-devel] What to do when a package is archived from CRAN

2023-08-30 Thread SHIMA Tatsuya
I submitted prqlr 0.5.1 yesterday, which is almost identical to prqlr 0.5.0, and prqlr is now available again on CRAN. Thanks to the CRAN reviewers for their quick reaction. Best, Tatsuya On 2023/08/29 19:12, SHIMA Tatsuya wrote: Hi Uwe, thanks for the summary of the background. Let me ask you

Re: [R-pkg-devel] DESCRITION error

2023-08-30 Thread Duncan Murdoch
If you are on Ubuntu, my guess is likely not relevant (unless maybe the server holding your files is running Windows). Duncan Murdoch On 30/08/2023 12:32 p.m., Emanuele Cordano wrote: Thanks . I’m working on Linux Ubuntu 20.04. I’m seeing the url you sent. Il giorno mer 30 ago 2023 alle 18:2

Re: [R-pkg-devel] DESCRITION error

2023-08-30 Thread Emanuele Cordano
Thanks . I’m working on Linux Ubuntu 20.04. I’m seeing the url you sent. Il giorno mer 30 ago 2023 alle 18:23 Duncan Murdoch < murdoch.dun...@gmail.com> ha scritto: > On 30/08/2023 12:03 p.m., Emanuele Cordano wrote: > > Dear list, > > > > I'm creating a package. At a first build, I found out th

Re: [R-pkg-devel] DESCRITION error

2023-08-30 Thread Duncan Murdoch
On 30/08/2023 12:03 p.m., Emanuele Cordano wrote: Dear list, I'm creating a package. At a first build, I found out the following error. I parsed DESCRIPTION file and I did not find any possible causes for this error. I searched on the web , but I found no clear explanation of this error. Have y

[R-pkg-devel] DESCRITION error

2023-08-30 Thread Emanuele Cordano
Dear list, I'm creating a package. At a first build, I found out the following error. I parsed DESCRIPTION file and I did not find any possible causes for this error. I searched on the web , but I found no clear explanation of this error. Have you ever experienced with this? What does this error

Re: [R-pkg-devel] Modernizing legacy Fortran:, REAL(kind=8)

2023-08-30 Thread Ivan Krylov
On Wed, 30 Aug 2023 08:43:04 +0200 Thomas Petzoldt wrote: > a) change REAL(kind=8) back to DOUBLE PRECISION that is again old > style. It seems to be portable and is still widely used. I don't have a reference as good as the Fortran standard, but Steve Lionel said in Dr. Fortran [*] that DOUBLE

Re: [R-pkg-devel] Modernizing legacy Fortran:, REAL(kind=8)

2023-08-30 Thread Avraham Adler
I’ve had no issues using the iso_c_binding schema. Avi Sent from my iPhone > On Aug 30, 2023, at 2:43 AM, Thomas Petzoldt > wrote: > > Hi, > > some package maintainers including me got a reminder from Prof. Brian Ripley > to modernize REAL and INTEGER declarations using the KIND option: