On Thursday, October 02, 2003, at 03:47PM, Barry Treahy, Jr. <[EMAIL PROTECTED]> wrote:

>Craig Berry wrote:
>>IIRC, part of the problem with CPAN may be that external utilities also need 
>>additional tweaking.  For example, you may need a version of gunzip that does 
>>command-line redirection without help from the pipe command.  
>>  
>>
>I could be mistaken, but what I'm observing appears to be a problem with
>CPAN just obtaining the index files and having it bomb when it attempts
>to transfer them to a VMS system which croaks when the unexpected
>periods arrive (ie. .tar.gz).  I'm not sure, I believe it is just
>attempting to get the files, prior to any external unzipping efforts,
>correct?

Correct.  But I'm referring to something downstream from that.  Once you have 
successfully filtered the filenames so that .tar.gz gets mapped to either .tar-gz or 
.tgz, you'll have to unzip the files that you download.  If you have the 
Compress::Zlib extension installed, CPAN will use that, but if you don't it will do 
something like

$ gzip -dc foo > bar

where the unixy command-line redirection won't be available on VMS with that syntax, 
or rather, it's not provided by DCL.  One can modify gzip to do its own redirection 
(like Perl and some other ports do) or one could modify CPAN.pm to add a "pipe" in 
front of the command on VMS.

Reply via email to