RE: [Rd] NEWS, WISHLIST, THANKS
Things not required to be there needs to be placed in inst/, so they will make it into the binary package. This is where I had to put the NEWS file for my package, as I learned here a while ago. Andy From: Gabor Grothendieck I have NEWS, WISHLIST and THANKS files in the 'dyn' package in the same directory as the DESCRIPTION file but I noticed that they did not survive the move to CRAN, at least on Windows. How do I incorporate them so that they are not omitted? __ R-devel@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-devel __ R-devel@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-devel
Re: [Rd] NEWS, WISHLIST, THANKS
On 6/9/2005 3:41 PM, Gabor Grothendieck wrote: I have NEWS, WISHLIST and THANKS files in the 'dyn' package in the same directory as the DESCRIPTION file but I noticed that they did not survive the move to CRAN, at least on Windows. How do I incorporate them so that they are not omitted? The R extensions manuals tells you the filenames that mean something to R. (See the Package Structure section.) All else is omitted unless it's in the inst directory, in which case it should be copied up a level upon installation. Duncan Murdoch __ R-devel@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-devel
Re: [Rd] NEWS, WISHLIST, THANKS
On Thu, 9 Jun 2005 15:41:32 -0400 Gabor Grothendieck wrote: I have NEWS, WISHLIST and THANKS files in the 'dyn' package in the same directory as the DESCRIPTION file but I noticed that they did not survive the move to CRAN, at least on Windows. Moving to CRAN per se has nothing to do with this. If the files have been in the source package you submitted (they have been, including a safety copy DESCRIPTION~ which you might want to eliminate in future versions), they are also in the source package on CRAN. The point is that they are not installed and hence not included in binary packages. How do I incorporate them so that they are not omitted? Put them into the inst/ subdirectory, then they will also be installed. Z __ R-devel@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-devel