Re: [Rd] package installation order

2007-11-14 Thread Seth Falcon
Dirk Eddelbuettel <[EMAIL PROTECTED]> writes: > When trying to package the by-now-gargantuan Rmetrics for Debian (which is > still ongoing), I looked around for some Depends builders. Turns out that > BioC has this. E.g. the following worked for: > > ## > install.packages("Biobase", repo="http://

Re: [Rd] package installation order

2007-11-14 Thread Kuhn, Max
Professor Ripley, > It does say 'URL(s)', hence > > repos = "file:///home/max/tmp/r-2.5.1-pkgs-updated" That works. Thanks for your expertise. Max __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel

Re: [Rd] package installation order

2007-11-14 Thread Prof Brian Ripley
On Wed, 14 Nov 2007, Kuhn, Max wrote: > Professor Ripley, > >> You need the information from available.packages() to do the ordering, > so >> you need a non-NULL repository. This works if you convert your local >> collection into a local repository. You will need a PACKAGES file, but > >> tools::

Re: [Rd] package installation order

2007-11-14 Thread Kuhn, Max
Professor Ripley, > You need the information from available.packages() to do the ordering, so > you need a non-NULL repository. This works if you convert your local > collection into a local repository. You will need a PACKAGES file, but > tools::write_PACKAGES can re-create one for you. > >

Re: [Rd] package installation order

2007-11-14 Thread Kuhn, Max
Dirk, Thanks for the email. > When trying to package the by-now-gargantuan Rmetrics for Debian (which is > still ongoing), I looked around for some Depends builders. Turns out that > BioC has this. E.g. the following worked for: > > ## > install.packages("Biobase", repo="http://www.bioconduct

Re: [Rd] package installation order

2007-11-14 Thread Prof Brian Ripley
On Wed, 14 Nov 2007, Kuhn, Max wrote: > I have roughly 80 or so packages sources. These were obtained by taking > a snapshot of certain CRAN packages a few months ago using > > install.packages( > pkgs = pckNames, > destdir = "/home/max", > repos = "http://cran.r-project.org"; >

Re: [Rd] package installation order

2007-11-14 Thread Dirk Eddelbuettel
Hi Max, On 14 November 2007 at 09:34, Kuhn, Max wrote: | I have roughly 80 or so packages sources. These were obtained by taking | a snapshot of certain CRAN packages a few months ago using | |install.packages( | pkgs = pckNames, | destdir = "/home/max", | repos = "http://

[Rd] package installation order

2007-11-14 Thread Kuhn, Max
I have roughly 80 or so packages sources. These were obtained by taking a snapshot of certain CRAN packages a few months ago using install.packages( pkgs = pckNames, destdir = "/home/max", repos = "http://cran.r-project.org"; dependencies = c("Depends", "Imports", "Sugg