I've been trying to build a bundle with the R-devel snapshot from yesterday. (Yes I know it is unstable and just tell me if I shouldn't be trying to do this yet.) It is failing with the message tar : /dev/rmt/0 : Permission denied It happens after "removing junk files" and just after the message "building dse_2000.9-1.tar.gz" It looks to be coming from the line in the build script system("tar .... but I don't read perl very well. (Using Solaris.) Paul Gilbert -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-devel-request@stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
Paul Gilbert <pgilbert@bank-banque-canada.ca> writes:> I've been trying to build a bundle with the R-devel snapshot from > yesterday. (Yes I know it is unstable and just tell me if I shouldn't be > trying to do this yet.)On the contrary, this kind of info is very useful.> It is failing with the message > tar : /dev/rmt/0 : Permission denied > > It happens after "removing junk files" and just after the message > "building dse_2000.9-1.tar.gz" > > It looks to be coming from the line in the build script > system("tar .... > but I don't read perl very well. > > (Using Solaris.)I think the problem is that older versions of tar wants un-hyphened options i.e. tar chXf $exclude $startdir/$filename $pkgname rather than tar -c -h -X $exclude -f $startdir/$filename $pkgname -- O__ ---- Peter Dalgaard Blegdamsvej 3 c/ /'_ --- Dept. of Biostatistics 2200 Cph. N (*) \(*) -- University of Copenhagen Denmark Ph: (+45) 35327918 ~~~~~~~~~~ - (p.dalgaard@biostat.ku.dk) FAX: (+45) 35327907 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-devel-request@stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
>>>>> "PaulG" == Paul Gilbert <pgilbert@bank-banque-canada.ca> writes:PaulG> I've been trying to build a bundle You are talking about R CMD build .... right? It would help next time if you give these details.. PaulG> with the R-devel snapshot from yesterday. (Yes I know it is PaulG> unstable and just tell me if I shouldn't be trying to do this PaulG> yet.) no, it should be ok, AFAIK PaulG> It is failing with the message PaulG> tar : /dev/rmt/0 : Permission denied this very much looks like tar is trying to really work on a tape {"Tape ARchiving"} instead of a file. PaulG> It happens after "removing junk files" and just after the message PaulG> "building dse_2000.9-1.tar.gz" PaulG> It looks to be coming from the line in the build script PaulG> system("tar .... more exactly, system("tar -c -h -f $startdir/$filename $pkgs"); PaulG> but I don't read perl very well. Can you try to find out if the above command works in your shell, e.g tar -c -h -f /tmp/ex.tar d1 d2 where d1 and d2 must be valid directories ? PaulG> (Using Solaris.) Martin Maechler <maechler@stat.math.ethz.ch> http://stat.ethz.ch/~maechler/ Seminar fuer Statistik, ETH-Zentrum LEO D10 Leonhardstr. 27 ETH (Federal Inst. Technology) 8092 Zurich SWITZERLAND phone: x-41-1-632-3408 fax: ...-1228 <>< -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-devel-request@stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
> To: Paul Gilbert <pgilbert@bank-banque-canada.ca> > From: Peter Dalgaard BSA <p.dalgaard@biostat.ku.dk> > Date: 04 Oct 2000 17:22:48 +0200 > > Paul Gilbert <pgilbert@bank-banque-canada.ca> writes: > > > I've been trying to build a bundle with the R-devel snapshot from > > yesterday. (Yes I know it is unstable and just tell me if I shouldn't be > > trying to do this yet.) > > On the contrary, this kind of info is very useful. > > > It is failing with the message > > tar : /dev/rmt/0 : Permission denied > > > > It happens after "removing junk files" and just after the message > > "building dse_2000.9-1.tar.gz" > > > > It looks to be coming from the line in the build script > > system("tar .... > > but I don't read perl very well. > > > > (Using Solaris.) > > I think the problem is that older versions of tar wants un-hyphened > options i.e. > > tar chXf $exclude $startdir/$filename $pkgname > > rather than > > tar -c -h -X $exclude -f $startdir/$filename $pkgnameUm. Real tar (the AT&T based one such as that on Solaris 2.7) needs chXf. GNU tar is a rather different animal. This is chiefly my fault: I modified this to work on Solaris, but tested it on a machine where tar is GNU tar .... You will note that build is not finished yet: ### !!! Missing: check & rebuild various indices !!! Brian -- Brian D. Ripley, ripley@stats.ox.ac.uk Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford, Tel: +44 1865 272861 (self) 1 South Parks Road, +44 1865 272860 (secr) Oxford OX1 3TG, UK Fax: +44 1865 272595 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-devel-request@stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._