Re: [R-pkg-devel] Cannot implement test configuration

2025-09-03 Thread Ivan Krylov via R-package-devel
В Wed, 3 Sep 2025 05:50:50 + "Hüsing, Johannes" пишет: > ✔ Setting active project to > "//some-server/UserHome$/jhuesing/project_path So, the goal is for a drive letter path to be in the above output instead of a UNC path? > structure(list(message = "[EPERM] Failed to stat > '//some-server/

Re: [R-pkg-devel] winbuilder status?

2025-09-03 Thread Spencer Graves
Hi, Ben: Thanks for this. I've added "foghorn::winbuilder_queue()" to my routine script ;-) AND I restarted the ones I couldn't find, and they all completed as expected. Spencer On 9/3/25 12:26, Ben Bolker wrote: I don't see it in the queue: > foghorn::winbuilder_queue() |> subset(

Re: [R-pkg-devel] How to fix "Number of redirects hit maximum amount"?

2025-09-03 Thread Spencer Graves
Hello, Simon, Ben, Ivan, Uwe: Thanks for the suggestions. I followed Ivan's suggestion of replacing the problem URL with a call to a copy on archive.org, and it passed all the tests locally and on winbuilder devel, release, and oldrelease. Spencer Graves On 9/2/25 18:43, Simon Urbanek w

Re: [R-pkg-devel] Cannot implement test configuration

2025-09-03 Thread Kevin Ushey
Out of curiosity, what do the following report? file.exists("//some_servername/UserHome$") dir.exists("//some_servername/UserHome$") fs::file_exists("//some_servername/UserHome$") fs::dir_exists(""//some_servername/UserHome$") Looking at the sources, 'usethis' should be checking i

Re: [R-pkg-devel] winbuilder status?

2025-09-03 Thread Ben Bolker
I don't see it in the queue: > foghorn::winbuilder_queue() |> subset(package=="Ecdat") # A tibble: 0 × 5 # ℹ 5 variables: package , version , folder , time , # size but IIRC this only shows packages that are actually in the queue, not those being processed ... cheers Ben On 9/3

Re: [R-pkg-devel] How to fix "Number of redirects hit maximum amount"?

2025-09-03 Thread Ben Bolker
Hmm. Maybe there's something region-specific? From Canada, it works for me from Firefox or Chromium ... On 9/2/25 16:46, Uwe Ligges wrote: On 02.09.2025 22:39, Spencer Graves wrote: Hello, All: TWO QUESTIONS: 1. HOW TO FIX "Number of redirects hit maximum amount"? I guess you need a

Re: [R-pkg-devel] Cannot implement test configuration

2025-09-03 Thread Hüsing , Johannes via R-package-devel
>A common cause of such problems is path normalization. Base R tries not to >introduce UNC paths, e.g. path > normalization of a path including a drive letter tries not to turn that path > into UNC, exactly for this > reason: there are tools around, not just R, that do not fully support UNC >

Re: [R-pkg-devel] How to fix "Number of redirects hit maximum amount"?

2025-09-03 Thread Uwe Ligges
On 02.09.2025 22:39, Spencer Graves wrote: Hello, All: TWO QUESTIONS: 1. HOW TO FIX "Number of redirects hit maximum amount"? I guess you need a different URL. Have you tried in a web browser? Firefox tells me locally "redirection error" (translated from German) and I cannot see any web

Re: [R-pkg-devel] Cannot implement test configuration

2025-09-03 Thread Tomas Kalibera
On 9/2/25 23:44, Ivan Krylov via R-package-devel wrote: On Tue, 2 Sep 2025 06:23:24 + "Hüsing, Johannes via R-package-devel" wrote: Error: [EPERM] Failed to stat '//some_servername/UserHome$': operation not permitted What's the traceback() output immediately after this error happens? If