Hi all, I am not able to access cvs via rsync today. Is the service down? Thanks, Marc Schwartz
Marc Schwartz wrote:> I am not able to access cvs via rsync today. Is the service down?Yes. We should have sent email about it to r-devel but it has been a hectic several days. The bad news is that the newly installed cvs.r-project.org machine, which is also rsync.r-project.org, was compromised and we had to take it off the net. The good news is that, thanks to heroic efforts by Martin Maechler and Deepayan Sarkar, the CVS repository has been transformed to Subversion and is available at http://svn.r-project.org/R/ (and at https://svn.r-project.org/R/ but SSL is probably only needed by those doing commits). If you have a Subversion client (see http://subversion.tigris.org - those using Windows may also want to look at http://tortoiseSVN.tigris.org/) you can check out and update the current r-devel from http://svn.r-project.org/R/trunk/ and the current R-patched from http://svn.r-project.org/R/branches/R-1-9-patches/
On Mon, 2004-07-19 at 12:38, Douglas Bates wrote:> Marc Schwartz wrote: > > > I am not able to access cvs via rsync today. Is the service down? > > Yes. We should have sent email about it to r-devel but it has been a > hectic several days. > > The bad news is that the newly installed cvs.r-project.org machine, > which is also rsync.r-project.org, was compromised and we had to take it > off the net. > > The good news is that, thanks to heroic efforts by Martin Maechler and > Deepayan Sarkar, the CVS repository has been transformed to Subversion > and is available at http://svn.r-project.org/R/ (and at > https://svn.r-project.org/R/ but SSL is probably only needed by those > doing commits). If you have a Subversion client (see > http://subversion.tigris.org - those using Windows may also want to look > at http://tortoiseSVN.tigris.org/) you can check out and update the > current r-devel from http://svn.r-project.org/R/trunk/ and the current > R-patched from http://svn.r-project.org/R/branches/R-1-9-patches/ >Doug, Thanks and thanks to Martin and Deepayan! subversion is part of FC2 as is the svn client. Presuming that I am using the proper command: svn co http://svn.r-project.org/R/branches/R-1-9-patches Is the svn server down or is the command incorrect? Thanks again Doug. Best, Marc
Douglas Bates wrote:> Marc Schwartz wrote: > >> I am not able to access cvs via rsync today. Is the service down? > > > Yes. We should have sent email about it to r-devel but it has been a > hectic several days. > > The bad news is that the newly installed cvs.r-project.org machine, > which is also rsync.r-project.org, was compromised and we had to take it > off the net. > > The good news is that, thanks to heroic efforts by Martin Maechler and > Deepayan Sarkar, the CVS repository has been transformed to Subversion > and is available at http://svn.r-project.org/R/ (and at > https://svn.r-project.org/R/ but SSL is probably only needed by those > doing commits). If you have a Subversion client (see > http://subversion.tigris.org - those using Windows may also want to look > at http://tortoiseSVN.tigris.org/) you can check out and update the > current r-devel from http://svn.r-project.org/R/trunk/ and the current > R-patched from http://svn.r-project.org/R/branches/R-1-9-patches/ > > ______________________________________________ > R-devel@stat.math.ethz.ch mailing list > https://www.stat.math.ethz.ch/mailman/listinfo/r-develDuncan, may I suggest to make the following change in .../src/gnuwin32/Makefile: old: rsync-recommended: @(cd ../library; \ rsync -rvCt --delete --exclude=Makefile.in --exclude=.cvsignore \ --include=*.tar.gz --exclude=*.tgz $(CRANREC) . ); \ new: rsync-recommended: @(cd ../library; \ rsync -rvCt --delete --exclude=Makefile.in --exclude=.cvsignore \ --exclude=.svn --include=*.tar.gz --exclude=*.tgz $(CRANREC) . ); \ ^^^^^^^^^^^^^^ Thanks, Uwe