Re: [R-pkg-devel] Problems with devtools::build() in R

2023-05-16 Thread Jarrett Phillips
Actually, no, only locally… but so far all proposed solutions have failed. On Tue, May 16, 2023 at 7:11 PM Dirk Eddelbuettel wrote: > > Hi Jarrett > > On 16 May 2023 at 19:06, Jarrett Phillips wrote: > | I wonder if my problem is related to the question you posed about the > CRAN > | macOS build

Re: [R-pkg-devel] Problems with devtools::build() in R

2023-05-16 Thread Dirk Eddelbuettel
Hi Jarrett On 16 May 2023 at 19:06, Jarrett Phillips wrote: | I wonder if my problem is related to the question you posed about the CRAN | macOS builders being down. If it is, then according to @Simon Urbanek, this | should be resolved in a few hours. | | Can you confirm?  Oh, maybe -- were yo

Re: [R-pkg-devel] Problems with devtools::build() in R

2023-05-16 Thread Jarrett Phillips
Hi Dirk, I wonder if my problem is related to the question you posed about the CRAN macOS builders being down. If it is, then according to @Simon Urbanek, this should be resolved in a few hours. Can you confirm? Thanks. Cheers, Jarrett On Tue, May 16, 2023 at 1:11 PM Dirk Eddelbuettel wrote:

Re: [R-pkg-devel] Are the CRAN macOS builders down?

2023-05-16 Thread Dirk Eddelbuettel
On 17 May 2023 at 10:39, Simon Urbanek wrote: | Dirk, | | thanks, ok, now I get what you meant. This has nothing to do with CRAN uploads (which are handled in Vienna) this was about specific macOS builds. The arm64 Big Sur build machine had apparently issues. I have re-started the arm64 build

Re: [R-pkg-devel] Are the CRAN macOS builders down?

2023-05-16 Thread Simon Urbanek
Dirk, thanks, ok, now I get what you meant. This has nothing to do with CRAN uploads (which are handled in Vienna) this was about specific macOS builds. The arm64 Big Sur build machine had apparently issues. I have re-started the arm64 builds so they should catch up in a few hours. Thanks, Sim

Re: [R-pkg-devel] Are the CRAN macOS builders down?

2023-05-16 Thread Dirk Eddelbuettel
Simon: On 17 May 2023 at 07:57, Simon Urbanek wrote: | builds are immediate, so it is a matter of seconds for most packages. I don't see any issues on the Mac Builder server. | If you have a problem, please be more specific and include the check link returned at submission. I was talking abou

Re: [R-pkg-devel] Are the CRAN macOS builders down?

2023-05-16 Thread Simon Urbanek
Dirk, builds are immediate, so it is a matter of seconds for most packages. I don't see any issues on the Mac Builder server. If you have a problem, please be more specific and include the check link returned at submission. Cheers, Simon > On 17/05/2023, at 4:27 AM, Dirk Eddelbuettel wrote:

Re: [R-pkg-devel] Problems with devtools::build() in R

2023-05-16 Thread Duncan Murdoch
I'm using R 4.3.0, newer than you, so that might affect things. Duncan On 16/05/2023 2:48 p.m., Jarrett Phillips wrote: Strange... the GitHub repo is up to date and that's what I'm trying to bundle up for a CRAN update. So, I'm thinking it's some kind of a system issue (I recently purchased a

Re: [R-pkg-devel] Problems with devtools::build() in R

2023-05-16 Thread Jarrett Phillips
Strange... the GitHub repo is up to date and that's what I'm trying to bundle up for a CRAN update. So, I'm thinking it's some kind of a system issue (I recently purchased a new MacBook Pro).. I'll investigate. Thanks! On Tue, May 16, 2023 at 2:09 PM Duncan Murdoch wrote: > I don't know what t

Re: [R-pkg-devel] Problems with devtools::build() in R

2023-05-16 Thread Duncan Murdoch
I don't know what the issue would be. I just tried remotes::install_github("jphill01/HACSim.R") and it worked fine, but I think that's not the same version that you are working with. Duncan Murdoch On 16/05/2023 2:01 p.m., Jarrett Phillips wrote: On Tue, May 16, 2023 at 2:00 PM Jarrett

Re: [R-pkg-devel] Problems with devtools::build() in R

2023-05-16 Thread Jarrett Phillips
On Tue, May 16, 2023 at 2:00 PM Jarrett Phillips wrote: > Yes, in addition to doing what @DirkEddelbuettel suggests. I keep getting > the same error... > > On Tue, May 16, 2023 at 1:47 PM Duncan Murdoch > wrote: > >> On 16/05/2023 1:14 p.m., Jarrett Phillips wrote: >> > Installing from the URL y

Re: [R-pkg-devel] Problems with devtools::build() in R

2023-05-16 Thread Duncan Murdoch
On 16/05/2023 1:14 p.m., Jarrett Phillips wrote: Installing from the URL you provide, as well as doing R CMD build HACSim as suggested by @JeffNewmiller fails. When trying the latter solution, I get the same error as the one provided in my original post. Any thoughts? Did you try Serguei's

Re: [R-pkg-devel] Problems with devtools::build() in R

2023-05-16 Thread Gábor Csárdi
Seems like you are on R 4.2.x, so you could try this one: https://github.com/R-macos/gcc-darwin-arm64/releases Gabor On Tue, May 16, 2023 at 7:16 PM Jarrett Phillips wrote: > > Installing from the URL you provide, as well as doing R CMD build HACSim as > suggested by @JeffNewmiller fails. > > Wh

Re: [R-pkg-devel] Problems with devtools::build() in R

2023-05-16 Thread Jarrett Phillips
Installing from the URL you provide, as well as doing R CMD build HACSim as suggested by @JeffNewmiller fails. When trying the latter solution, I get the same error as the one provided in my original post. Any thoughts? On Tue, May 16, 2023 at 12:52 PM Jarrett Phillips < phillipsjarre...@gma

Re: [R-pkg-devel] Problems with devtools::build() in R

2023-05-16 Thread Dirk Eddelbuettel
On 16 May 2023 at 18:32, Serguei Sokol wrote: | Try to add in /src/Makevars: | | PKG_LIBS=$(FLIBS) Good catch. For every RcppArmadillo package we recommend (and inject if you use the RcppArmadillo.package.skeleton() helper) (and omit the earlier comment lines) PKG_CXXFLAGS = $(SHLIB_OPENMP_C

Re: [R-pkg-devel] Problems with devtools::build() in R

2023-05-16 Thread Jarrett Phillips
Hi Duncan, I actually installed gfortran from https://github.com/fxcoudert/gfortran-for-macOS/releases but I can instead install from the URL you provide. Hopefully this fixes the problem. I will respond here if there are still issues. Thanks. Cheers, Jarrett On Tue, May 16, 2023 at 12:39

Re: [R-pkg-devel] Problems with devtools::build() in R

2023-05-16 Thread Duncan Murdoch
On 16/05/2023 12:07 p.m., Jarrett Phillips wrote: Hi All, I'm trying to generate a `tar.gz` file on a Mac for R package submission to CRAN but am having issues. I'm using `devtools`, specifically `build()` and `install()`. My package relies on compiled code via `Rcpp/RcppArmadillo`. buil

Re: [R-pkg-devel] Problems with devtools::build() in R

2023-05-16 Thread Serguei Sokol
Le 16/05/2023 à 18:07, Jarrett Phillips a écrit : Hi All, I'm trying to generate a `tar.gz` file on a Mac for R package submission to CRAN but am having issues. I'm using `devtools`, specifically `build()` and `install()`. My package relies on compiled code via `Rcpp/RcppArmadillo`. buil

Re: [R-pkg-devel] Problems with devtools::build() in R

2023-05-16 Thread Ivan Krylov
В Tue, 16 May 2023 12:07:05 -0400 Jarrett Phillips пишет: >ld: warning: directory not found for option > '-L/opt/R/arm64/gfortran/lib/gcc/aarch64-apple-darwin20.6.0/12.0.1' >ld: warning: directory not found for option > '-L/opt/R/arm64/gfortran/lib' >ld: library not found

[R-pkg-devel] Are the CRAN macOS builders down?

2023-05-16 Thread Dirk Eddelbuettel
Simon, As a follow-up to the cmake questions (and me now knowing I have to tell R where cmake is on macOS), I uploaded a new package last Thursday. It has long built everywhere on CRAN, but not on macOS. Ditto for another package update from Sunday (RcppSimdJson) which also has not been touched

Re: [R-pkg-devel] Problems with devtools::build() in R

2023-05-16 Thread Jeff Newmiller
Your mistake is confusing a tool designed for _iterative development_ for a tool designed for _delivery_. Use R CMD build the way WRE says you should. On May 16, 2023 9:07:05 AM PDT, Jarrett Phillips wrote: >Hi All, > >I'm trying to generate a `tar.gz` file on a Mac for R package submission to

[R-pkg-devel] Problems with devtools::build() in R

2023-05-16 Thread Jarrett Phillips
Hi All, I'm trying to generate a `tar.gz` file on a Mac for R package submission to CRAN but am having issues. I'm using `devtools`, specifically `build()` and `install()`. My package relies on compiled code via `Rcpp/RcppArmadillo`. build("HACSim_OO") ── R CMD build ───

Re: [R-pkg-devel] help fixing CRAN package sos

2023-05-16 Thread Uwe Ligges
On 16.05.2023 14:02, Spencer Graves wrote: On 5/16/23 6:06 AM, Uwe Ligges wrote: On 16.05.2023 01:46, Spencer Graves wrote: Hello, All:    The sos package is failing some CRAN checks, complaining:[1] LaTeX errors: ! Missing $ inserted. $ l.303 {\tt pspline_

Re: [R-pkg-devel] help fixing CRAN package sos

2023-05-16 Thread Spencer Graves
On 5/16/23 6:06 AM, Uwe Ligges wrote: On 16.05.2023 01:46, Spencer Graves wrote: Hello, All:    The sos package is failing some CRAN checks, complaining:[1] LaTeX errors: ! Missing $ inserted. $ l.303 {\tt pspline_     checker} in the I can only

Re: [R-pkg-devel] help fixing CRAN package sos

2023-05-16 Thread Uwe Ligges
On 16.05.2023 01:46, Spencer Graves wrote: Hello, All:   The sos package is failing some CRAN checks, complaining:[1] LaTeX errors: ! Missing $ inserted.     $ l.303 {\tt pspline_    checker} in the I can only guess this is part of the response you go