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

2023-08-31 Thread Uwe Ligges
To clarify: A packae must be single under a single license or a license and alternative licenes. You cannot have 2 licenses at the same time, hence ou have to relicense anyway. Of course, you have to check whether the licneses allow for it or seek confirmation from all copyright holders. If t

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

2023-08-31 Thread Avraham Adler
Hi, Thomas. Since all the Fortran code must talk to R through SEXP's written in C, wouldn't it make sense to use " C_DOUBLE_COMPLEX" and " C_DOUBLE" to ensure maximum compatibility? Thanks, Avi On Thu, Aug 31, 2023 at 9:42 AM Thomas Petzoldt < thomas.petzo...@tu-dresden.de> wrote: > On 30.08.2

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

2023-08-31 Thread Iñaki Ucar
About licensing, On Sun, 27 Aug 2023 at 17:30, SHIMA Tatsuya wrote: > > Hi Ivan, thanks for taking the time to look at all the details of this. > > > You licensed the package as MIT. Are your dependencies compatible > with MIT? All direct dependencies of your Rust code seem to be licensed > unde

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

2023-08-31 Thread Lluís Revilla
The reasons that CRAN has for this (from: https://cran.r-project.org/src/contrib/PACKAGES.in) are: X-CRAN-History: Archived on 2023-08-19 for policy violation. Downloading on installation from github. Unarchived on 2023-08-30. X-CRAN-Comment: Archived on 2023-08-31 for policy violation. .

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

2023-08-31 Thread Dirk Eddelbuettel
On 31 August 2023 at 07:32, SHIMA Tatsuya wrote: | 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. And it is gone again (per CRANberries). Never a dull moment with C

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

2023-08-31 Thread Thomas Petzoldt
On 30.08.2023 at 11:58 Ivan Krylov wrote: 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 L

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

2023-08-31 Thread Ivan Krylov
On Thu, 31 Aug 2023 06:52:47 + Berry Boessenkool wrote: > 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