Re: [R-pkg-devel] Problem with loading package "devtools" from CRAN.

2024-04-28 Thread Georgi Boshnakov
I also had the problem that devtools didn't install. I used update.packages(ask =FALSE) and that solved the problem. Before that I tried to locate the culprit but it was not one of the direct dependencies of devtools. Georgi Boshnakov Sent from Outlook for Android _

Re: [R-pkg-devel] Problem with loading package "devtools" from CRAN.

2024-04-28 Thread Simon Urbanek
Rolf, what do you mean by "broken"? Since you failed to include any proof nor details it's unlikely that anyone can help you, but chances are pretty high that it was a problem on your end. I just checked with R 4.4.0 on Ubuntu 22.04 and devtools install and load just fine, so it is certainly br

Re: [R-pkg-devel] Problem with loading package "devtools" from CRAN.

2024-04-28 Thread Berwin A Turlach
G'day Rolf, hope all is well. On Mon, 29 Apr 2024 01:19:50 + Rolf Turner wrote: > Executive summary: > > > The devtools package on CRAN appears to be broken. > > Installing devtools from github (using remotes::install_github()) > > seems to give satisfactory results. I somehow have not

[R-pkg-devel] Problem with loading package "devtools" from CRAN.

2024-04-28 Thread Rolf Turner
Executive summary: > The devtools package on CRAN appears to be broken. > Installing devtools from github (using remotes::install_github()) > seems to give satisfactory results. This morning my software up-dater (Ubuntu 22.04.4) prompted me to install updated versions of some software, includin

Re: [R-pkg-devel] Extending proj with proj.line3d methods and overloading the methods

2024-04-28 Thread Ivan Krylov via R-package-devel
В Sun, 28 Apr 2024 15:15:06 + Leo Mada пишет: > This is why I intended to define a new method "proj.line3d" and > overload this method. But it seems that R interprets "line3d.numeric" > as a class - which originates probably from the "data,frame" class. It may help to call the original 'proj

Re: [R-pkg-devel] Extending proj with proj.line3d methods and overloading the methods

2024-04-28 Thread Leo Mada via R-package-devel
Dear Ivan, Thank you very much for the response. Indeed, I was skeptical how R interprets class names and I have supposed it a little bit different. S3 methods are more like overloaded functions; while S4 methods are more like true methods implemented for a class. But this is very approximate