Re: [R-pkg-devel] Best practices for CRAN package using Go

2023-07-14 Thread Dewey Dunnington
Simon, Thanks! I look forward to packaging the next ADBC driver release and submitting. Cheers, -dewey On 2023-07-12 20:01, Simon Urbanek wrote: Dewey, you will definitely need to include all the necessary sources for your package. You may want to have a look at the "Using Rust"[1] docume

Re: [R-pkg-devel] Best practices for CRAN package using Go

2023-07-12 Thread Simon Urbanek
Dewey, you will definitely need to include all the necessary sources for your package. You may want to have a look at the "Using Rust"[1] document linked from the CRAN policy. I think Go is quite similar to Rust in that sense so you should use the same approach, i.e. checking for system and use

Re: [R-pkg-devel] Best practices for CRAN package using Go

2023-07-12 Thread Dewey Dunnington
Thank you! It seems I needed the refresher on CRAN policy regarding downloading sources: it seems like the go.sum/go.mod provide sufficient checksumming to comply with the policy, as you noted (with `go mod vendor` as a backup if this turns out to not be acceptable). Downloading Go is probably

Re: [R-pkg-devel] Best practices for CRAN package using Go

2023-07-10 Thread Ivan Krylov
В Thu, 06 Jul 2023 15:22:26 -0300 Dewey Dunnington пишет: > I've wrapped two of these drivers for R that seem to build and > install on MacOS, Linux, and Windows [3][4]; however, I am not sure > if the pattern I used is suitable for CRAN or whether these packages > will have to be GitHub-only for